Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for 1001Gi (0.11 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{decQuantity(1024*1024*1024, 0, BinarySI), "1Gi", "1024Mi"},
    		{decQuantity(300*1024*1024, 0, BinarySI), "300Mi", "307200Ki"},
    		{decQuantity(6*1024, 0, BinarySI), "6Ki", ""},
    		{decQuantity(1001*1024*1024*1024, 0, BinarySI), "1001Gi", "1025024Mi"},
    		{decQuantity(1024*1024*1024*1024, 0, BinarySI), "1Ti", "1024Gi"},
    		{decQuantity(5, 0, BinarySI), "5", "5000m"},
    		{decQuantity(500, -3, BinarySI), "500m", "0.5"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. tests/testdata/networking/sidecar-ns-scope/configs.yaml

      addresses:
      - 2.1.1.1
      ports:
      - number: 8080
        name: http
        protocol: HTTP2
      location: MESH_INTERNAL
      resolution: STATIC
      endpoints:
      - address: 100.1.1.1
        labels:
          version: v1
        ports:
          http: 8080
      - address: 100.1.2.1
        labels:
          version: v2
        ports:
          http: 8080
    ---
    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
    - 3.5K bytes
    - Viewed (0)
  3. pkg/kubelet/cloudresource/cloud_request_manager_test.go

    		{
    			name:      "subsequent sync loop succeeds",
    			addrs:     createNodeInternalIPAddress("10.0.1.12"),
    			wantAddrs: createNodeInternalIPAddress("10.0.1.12"),
    		},
    		{
    			name:      "subsequent sync loop encounters an error, last addresses returned",
    			err:       errors.New("bad"),
    			wantAddrs: createNodeInternalIPAddress("10.0.1.12"),
    		},
    		{
    			name:      "subsequent sync loop succeeds changing addresses",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/poset_test.go

    		{Ordered_Fail, 123, 124},
    
    		// Dag #0: 100<101
    		{Checkpoint, 0, 0},
    		{SetOrder, 100, 101},
    		{Ordered, 100, 101},
    		{Ordered_Fail, 101, 100},
    		{SetOrder_Fail, 101, 100},
    		{SetOrder, 100, 101}, // repeat
    		{NonEqual, 100, 101},
    		{NonEqual, 101, 100},
    		{SetEqual_Fail, 100, 101},
    
    		// Dag #1: 4<=7<12
    		{Checkpoint, 0, 0},
    		{SetOrderOrEqual, 4, 7},
    		{OrderedOrEqual, 4, 7},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 26 07:52:35 UTC 2019
    - 18.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGeneratorTest.java

            }
            assertImageSize(outputFile, 100, 100);
    
            imagePath = "thumbnail/400x400.gif";
            try (ImageInputStream input = ImageIO.createImageInputStream(classLoader.getResourceAsStream(imagePath))) {
                generator.saveImage(input, outputFile);
            }
            assertImageSize(outputFile, 100, 100);
    
            imagePath = "thumbnail/400x400.jpg";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/memorymanager/policy_static_test.go

    	requirementsGuaranteed = &v1.ResourceRequirements{
    		Limits: v1.ResourceList{
    			v1.ResourceCPU:    resource.MustParse("1000Mi"),
    			v1.ResourceMemory: resource.MustParse("1Gi"),
    			hugepages1Gi:      resource.MustParse("1Gi"),
    		},
    		Requests: v1.ResourceList{
    			v1.ResourceCPU:    resource.MustParse("1000Mi"),
    			v1.ResourceMemory: resource.MustParse("1Gi"),
    			hugepages1Gi:      resource.MustParse("1Gi"),
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  7. cmd/metrics-v3-system-cpu.go

    	if found {
    		if cpuIdleMetric, ok := cpuResourceMetrics[getResourceKey(cpuIdle, nil)]; ok {
    			avgVal := math.Round(cpuIdleMetric.Avg*100) / 100
    			m.Set(sysCPUAvgIdle, avgVal)
    		}
    		if cpuIOWaitMetric, ok := cpuResourceMetrics[getResourceKey(cpuIOWait, nil)]; ok {
    			avgVal := math.Round(cpuIOWaitMetric.Avg*100) / 100
    			m.Set(sysCPUAvgIOWait, avgVal)
    		}
    	}
    	return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 23 23:56:12 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. api/maven-api-plugin/src/main/mdo/plugin.mdo

            <field>
              <name>instantiationStrategy</name>
              <version>1.0.0/1.1.0</version>
              <type>String</type>
              <defaultValue>per-lookup</defaultValue>
              <description>Specify the instantiation strategy.</description>
            </field>
            <field>
              <name>executionStrategy</name>
              <version>1.0.0/1.1.0</version>
              <type>String</type>
              <description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/io/FileBackedOutputStreamTest.java

        testThreshold(0, 100, true, false);
        testThreshold(10, 100, true, false);
        testThreshold(100, 100, true, false);
        testThreshold(1000, 100, true, false);
        testThreshold(0, 100, false, false);
        testThreshold(10, 100, false, false);
        testThreshold(100, 100, false, false);
        testThreshold(1000, 100, false, false);
      }
    
      private void testThreshold(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/FileBackedOutputStreamTest.java

        testThreshold(0, 100, true, false);
        testThreshold(10, 100, true, false);
        testThreshold(100, 100, true, false);
        testThreshold(1000, 100, true, false);
        testThreshold(0, 100, false, false);
        testThreshold(10, 100, false, false);
        testThreshold(100, 100, false, false);
        testThreshold(1000, 100, false, false);
      }
    
      private void testThreshold(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top