Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for 1536px (0.15 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/JavaTestProjectGenerator.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/base.css

            right: 0;
            top: 65px;
            width: 260px;
            z-index: 1;
            overflow: auto;
            border-radius: 0 0 5px 0;
            max-height: calc(100% - 123px);
            margin-right: 15px;
        }
    
        .appendix .toctitle,
        .book .home .toctitle,
        .chapter .toctitle {
            margin-top: 1.3em;
        }
    
        .appendix .toc > dl,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    // - The exponent (or suffix) is as large as possible.
    //
    // The sign will be omitted unless the number is negative.
    //
    // Examples:
    //
    // - 1.5 will be serialized as "1500m"
    // - 1.5Gi will be serialized as "1536Mi"
    //
    // Note that the quantity will NEVER be internally represented by a
    // floating point number. That is the whole point of this exercise.
    //
    // Non-canonical values will still parse as long as they are well formed,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/hash/crc32/crc32_table_ppc64le.s

    DATA ·IEEEConst+1656(SB)/8,$0x000000011071aea0
    
    	/* x^154688 mod p(x), x^154624 mod p(x) */
    DATA ·IEEEConst+1664(SB)/8,$0x0000000040bbf7fc
    DATA ·IEEEConst+1672(SB)/8,$0x000000012e19080a
    
    	/* x^153664 mod p(x), x^153600 mod p(x) */
    DATA ·IEEEConst+1680(SB)/8,$0x000000016ac3a5b2
    DATA ·IEEEConst+1688(SB)/8,$0x0000000100ecf826
    
    	/* x^152640 mod p(x), x^152576 mod p(x) */
    DATA ·IEEEConst+1696(SB)/8,$0x00000000abf16230
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    45:"45deg",90:"90deg",180:"180deg"},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2"},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5"},screens:{sm:"640px",md:"768px",lg:"1024px",xl:"1280px","2xl":"1536px"},scrollMargin:({theme:i})=>({...i("spacing")}),scrollPadding:({theme:i})=>i("spacing"),sepia:{0:"0",DEFAULT:"100%"},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg"},space:({theme:i})=>({...i("spacing")}),spacing:{px:"1px",0:"0px",....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    // - The exponent (or suffix) is as large as possible.
    //
    // The sign will be omitted unless the number is negative.
    //
    // Examples:
    //
    // - 1.5 will be serialized as "1500m"
    // - 1.5Gi will be serialized as "1536Mi"
    //
    // Note that the quantity will NEVER be internally represented by a
    // floating point number. That is the whole point of this exercise.
    //
    // Non-canonical values will still parse as long as they are well formed,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/main/resources/header.html

                <div class="site-header__navigation-header">
                    <a target="_top" class="logo" href="https://docs.gradle.org" title="Gradle Docs">
                        <svg width="139px" height="43px" viewBox="0 0 278 86" version="1.1" xmlns="http://www.w3.org/2000/svg">
                            <title>Gradle</title>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    	.ui-logos .ui-logo {
    		box-shadow: 0 6px 15px 1px rgba(0, 0, 0, 0.56);
    	}
    }
    
    /* User Manual Home */
    .technology-logos,
    .ui-logos {
    	display: flex;
    	flex-direction: row;
    	flex-wrap: wrap;
    	justify-content: space-around;
    }
    
    .technology-logo,
    .ui-logo {
    	flex: 0 1 auto;
    }
    
    .ui-logo {
    	width: 224px;
    	height: 135px;
    	margin: 12px;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. src/net/http/clientserver_test.go

    	sync.Mutex
    	bytes.Buffer
    }
    
    func (b *lockedBytesBuffer) Write(p []byte) (int, error) {
    	b.Lock()
    	defer b.Unlock()
    	return b.Buffer.Write(p)
    }
    
    // Issue 15366
    func TestH12_AutoGzipWithDumpResponse(t *testing.T) {
    	h12Compare{
    		Handler: func(w ResponseWriter, r *Request) {
    			h := w.Header()
    			h.Set("Content-Encoding", "gzip")
    			h.Set("Content-Length", "23")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/eviction_manager_test.go

    				Value: evictionapi.ThresholdValue{
    					Quantity: quantityMustParse("2Gi"),
    				},
    			},
    			evictionMessage: "The node was low on resource: ephemeral-storage. Threshold quantity: 2Gi, available: 1536Mi. Container above-requests was using 700Mi, request is 100Mi, has larger consumption of ephemeral-storage. ",
    			podToMakes: []podToMake{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top