Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 128 for 1001Gi (0.11 sec)

  1. pkg/kubelet/eviction/helpers_test.go

    				evictionapi.SignalMemoryAvailable: signalObservation{
    					available: quantityMustParse("100Mi"),
    					capacity:  quantityMustParse("1000Mi"),
    				},
    				evictionapi.SignalNodeFsAvailable: signalObservation{
    					available: quantityMustParse("100Gi"),
    					capacity:  quantityMustParse("1000Gi"),
    				},
    			},
    			result: specificThresholds,
    		},
    		"NoneMet": {
    			enforceMinRelaim: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  2. tests/testdata/networking/envoyfilter-without-service/configs.yaml

        - http1.ns1.svc.cluster.local
      addresses:
        - 2.1.1.1
      ports:
        - number: 8081
          name: http
          protocol: HTTP2
      location: MESH_INTERNAL
      resolution: STATIC
      endpoints:
        - address: 100.1.1.1
          labels:
            version: v1
          ports:
            http: 8080
    ---
    # The sidecar for the consumer only application
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-lua
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. tests/testdata/networking/sidecar-without-service/configs.yaml

      hosts:
      - http1.ns1.svc.cluster.local
      addresses:
      - 2.1.1.1
      ports:
      - number: 8081
        name: http
        protocol: HTTP2
      location: MESH_INTERNAL
      resolution: STATIC
      endpoints:
      - address: 100.1.1.1
        labels:
          version: v1
        ports:
          http: 8080
    ---
    # Services and configs in ns1 namespace
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: http2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/cache/internal/HeapProportionalCacheSizerTest.groovy

            given:
            def heapProportionalCacheSizer = new HeapProportionalCacheSizer(1)
            when:
            def scaled = heapProportionalCacheSizer.scaleCacheSize(100, 100)
            then:
            scaled >= 100
        }
    
        def "cache cap sizer adjusts caps based on maximum heap size"() {
            given:
            def heapProportionalCacheSizer = new HeapProportionalCacheSizer(maxHeapMB)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 14 07:38:37 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http/HttpStatusCodes.kt

    //
    // From https://github.com/apache/httpcomponents-core/blob/master/httpcore5/src/main/java/org/apache/hc/core5/http/HttpStatus.java
    
    /** `100 Continue` (HTTP/1.1 - RFC 7231)  */
    const val HTTP_CONTINUE = 100
    
    /** `102 Processing` (WebDAV - RFC 2518)  */
    const val HTTP_PROCESSING = 102
    
    /** `103 Early Hints (Early Hints - RFC 8297)` */
    const val HTTP_EARLY_HINTS = 103
    
    /** `307 Temporary Redirect` (HTTP/1.1 - RFC 7231)  */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. src/runtime/internal/math/math_test.go

    	{0, 0, false},
    	{1000, 1000, false},
    	{MaxUintptr, 0, false},
    	{MaxUintptr, 1, false},
    	{MaxUintptr / 2, 2, false},
    	{MaxUintptr / 2, 3, true},
    	{MaxUintptr, 10, true},
    	{MaxUintptr, 100, true},
    	{MaxUintptr / 100, 100, false},
    	{MaxUintptr / 1000, 1001, true},
    	{1<<(UintptrSize/2) - 1, 1<<(UintptrSize/2) - 1, false},
    	{1 << (UintptrSize / 2), 1 << (UintptrSize / 2), true},
    	{MaxUintptr >> 32, MaxUintptr >> 32, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 15 19:04:09 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  7. src/math/big/gcd_test.go

    func BenchmarkGCD10x10000(b *testing.B)      { runGCD(b, 10, 10000) }
    func BenchmarkGCD10x100000(b *testing.B)     { runGCD(b, 10, 100000) }
    func BenchmarkGCD100x100(b *testing.B)       { runGCD(b, 100, 100) }
    func BenchmarkGCD100x1000(b *testing.B)      { runGCD(b, 100, 1000) }
    func BenchmarkGCD100x10000(b *testing.B)     { runGCD(b, 100, 10000) }
    func BenchmarkGCD100x100000(b *testing.B)    { runGCD(b, 100, 100000) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 19:11:43 UTC 2016
    - 2.2K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/bug_report.yml

          placeholder: |
            $ istioctl version
            client version: 1.0.0
            control plane version: 1.0.0
            data plane version: 1.0.0 (100 proxies)
            $ kubectl version
            Client Version: v1.0.0
            Kustomize Version: v1.0.0
            Server Version: v1.0.0
          render: Text
        validations:
          required: true
      - type: textarea
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 15:17:29 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/orig/view/searchOptions.jsp

    			<la:option value="10">10</la:option>
    			<la:option value="20">20</la:option>
    			<la:option value="30">30</la:option>
    			<la:option value="40">40</la:option>
    			<la:option value="50">50</la:option>
    			<la:option value="100">100</la:option>
    		</la:select>
    	</fieldset>
    	<fieldset class="form-group">
    		<legend><la:message key="labels.index_sort" /></legend>
    		<label for="contentSort"><la:message key="labels.index_sort" /></label>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Jul 17 08:19:53 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/searchOptions.jsp

    			<la:option value="10">10</la:option>
    			<la:option value="20">20</la:option>
    			<la:option value="30">30</la:option>
    			<la:option value="40">40</la:option>
    			<la:option value="50">50</la:option>
    			<la:option value="100">100</la:option>
    		</la:select>
    	</fieldset>
    	<fieldset class="form-group">
    		<legend><la:message key="labels.index_sort" /></legend>
    		<label for="contentSort"><la:message key="labels.index_sort" /></label>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Jul 17 08:19:53 UTC 2019
    - 3.7K bytes
    - Viewed (0)
Back to top