/web-php/ |
H A D | download-logos.php | 22 function random_bgcolor($min, $max): void argument 25 …sprintf('%02x%02x%02x', mt_rand($min, $max) * 51, mt_rand($min, $max) * 51, mt_rand($min, $max) * …
|
H A D | index.php | 35 $timestamp = max($timestamps);
|
/web-php/styles/ |
H A D | php8.css | 21 max-width: 100%; 50 max-width: 100%; 58 max-width: 90%; 71 @media (max-width: 480px) { 88 @media (max-width: 480px) { 140 @media (max-width: 640px) { 186 @media (max-width: 1000px) { 195 @media (max-width: 640px) { 229 @media (max-width: 810px) { 266 max-width: 820px; [all …]
|
H A D | supported-versions.css | 16 @media (max-width: 767px) { 31 max-width: 100%;
|
H A D | home.css | 21 max-width: 240px; 177 @media (min-width: 768px) and (max-width: 784px) {
|
H A D | theme-base.css | 99 max-width: none; 166 max-width: 100% !important; 208 @media (max-width: 480px) { 211 @media (min-width: 768px) and (max-width: 979px) { 226 @media (max-width: 767px) { 242 @media (max-width: 979px) { 989 @media (max-width: 465px) { 1366 @media (min-width: 768px) and (max-width: 979px) { 1404 @media (max-width:767px) { 1434 max-height: 50rem; [all …]
|
H A D | theme-medium.css | 281 max-width: 300px; 392 @media (max-width: 992px) { 404 max-width: 100%; 684 max-width: 560px; 728 max-width: 540px; 1060 max-height: 5rem; 1088 max-height: 100%;
|
/web-php/releases/ |
H A D | feed.php | 68 $updated = date(DATE_ATOM, max($maxtime)); 83 $FEED_UPDATED = max($maxtime, $FEED_UPDATED); 88 $FEED_UPDATED = date(DATE_ATOM, max($FEED_UPDATED));
|
H A D | index.php | 24 $max = (int) ($_GET['max'] ?? 1); variable 25 if ($max == -1) { 26 $max = PHP_INT_MAX; variable 31 if ($max <= $count) { 90 $latest = max($active_majors);
|
H A D | NEWS_5_4_0_beta2.txt | 138 . Added process.max to control the number of process FPM can fork. FR #55166. 1107 . Fixed bug #46587 (mt_rand() does not check that max is greater than min).
|
H A D | NEWS_5_4_0_RC1.txt | 181 . Added process.max to control the number of process FPM can fork. FR #55166. 1152 . Fixed bug #46587 (mt_rand() does not check that max is greater than min).
|
H A D | NEWS_5_4_0_beta1.txt | 87 . Added process.max to control the number of process FPM can fork. FR #55166. 1056 . Fixed bug #46587 (mt_rand() does not check that max is greater than min).
|
/web-php/js/ext/ |
H A D | jquery.scrollTo.min.js | 7 …max=$scrollTo.max(elem,axis);if(toff){attr[key]=toff[pos]+(win?0:prev-$elem.offset()[pos]);if(sett… function
|
H A D | mousetrap.min.js | 7 d,e){var f=g(a,d,e),h;d={};var k=0,l=!1;for(h=0;h<f.length;++h)f[h].seq&&(k=Math.max(k,f[h].level))…
|
H A D | FuzzySearch.min.js | 10 …max(F[h]+k,E[h]+j),G=Math.max(G+k,E[h-1]+j),C=p?b[g-1]!==c[h-1]?-(1/0):A+i+(2>g||q.indexOf(b[g-2])…
|
H A D | jquery-3.6.0.min.js | 2 …max(0,r[2]-(n||0))+(r[3]||"px"):t}function Qe(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r…
|
/web-php/include/ |
H A D | errors.inc | 151 'max-execution-time' => 'info.configuration.php#ini.max-execution-time', 152 'max-input-time' => 'info.configuration.php#ini.max-input-time', 153 'max-input-vars' => 'info.configuration.php#ini.max-input-vars', 183 'post-max-size' => 'ini.core.php#ini.post-max-size', 203 'upload-max-filesize' => 'ini.core.php#ini.upload-max-filesize', 233 'odbc.max-persistent' => 'odbc.configuration.php#ini.uodbc.max-persistent', 234 'odbc.max-links' => 'odbc.configuration.php#ini.uodbc.max-links', 240 'mysql.max-links' => 'mysql.configuration.php#ini.mysql.max-links', 249 'mysqli.max-links' => 'mysqli.configuration.php#ini.mysqli.max-links', 257 'oci8.max-persistent' => 'oci8.configuration.php#ini.oci8.max-persistent', [all …]
|
H A D | layout.inc | 349 function print_news($news, $dog, $max = 5, $onlyyear = null, $return = false) { 365 if ($count > $max) {
|
H A D | shared-manual.inc | 307 $lastmod = max($timestamps);
|
/web-php/src/UserNotes/ |
H A D | Sorter.php | 91 $this->maxVote = max($this->maxVote, ($note->upvotes - $note->downvotes)); 93 $this->maxAge = max($this->maxAge, $note->ts);
|
/web-php/js/ |
H A D | search-index.php | 39 $time = max(filemtime($indexfile), filemtime($descfile));
|
H A D | common.js | 660 … var multiplier = (this.range.max - this.range.min) / (this.domain.max - this.domain.min); 662 value = Math.max(value, this.domain.min);
|
H A D | search.js | 445 selectedIndex = Math.max(selectedIndex - 1, -1);
|
/web-php/releases/8.3/ |
H A D | release.inc | 389 // Returns a random float between $min and $max, both including. 390 function getFloat(float $min, float $max) { 396 return $offset * ($max - $min) + $min;
|