Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for 300T (0.11 sec)

  1. pkg/kubelet/metrics/testdata/image_pull_duration_metric

    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="180"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="240"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="300"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="360"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="480"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. pkg/controller/endpointslicemirroring/reconciler_test.go

    				Hostname: "pod-2",
    				NodeName: pointer.String("node-2"),
    			}},
    		}, {
    			Ports: []corev1.EndpointPort{{
    				Name:     "http",
    				Port:     3000,
    				Protocol: corev1.ProtocolTCP,
    			}, {
    				Name:     "https",
    				Port:     3001,
    				Protocol: corev1.ProtocolUDP,
    			}},
    			Addresses: []corev1.EndpointAddress{{
    				IP:       "10.0.1.1",
    				Hostname: "pod-11",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  3. pkg/proxy/winkernel/proxier_test.go

    		t.Error()
    	}
    
    	svcIP1 := "10.20.30.41"
    	svcPort1 := 80
    	svcNodePort1 := 3001
    	svcPortName1 := proxy.ServicePortName{
    		NamespacedName: makeNSN("ns1", "svc1"),
    		Port:           "p80",
    		Protocol:       v1.ProtocolTCP,
    	}
    
    	svcIP2 := "10.20.30.42"
    	svcPort2 := 80
    	svcNodePort2 := 3002
    	svcPortName2 := proxy.ServicePortName{
    		NamespacedName: makeNSN("ns1", "svc2"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. helm-releases/minio-3.0.0.tgz

    minio-3.0.0.tar minio/Chart.yaml apiVersion: v1 appVersion: RELEASE.2021-08-31T05-46-54Z description: Multi-Cloud Object Storage home: https://min.io icon: https://min.io/resources/img/logo/MINIO_wordmark.png keywords: - minio - storage - object-storage - s3 - cluster maintainers: - email: ******@****.*** name: MinIO, Inc name: minio sources: - https://github.com/minio/minio version: 3.0.0 minio/values.yaml ## Provide a name in place of minio for `app:` labels ## nameOverride: "" ## Provide a name...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 02 01:47:43 UTC 2021
    - 13.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    				st.MakePod().Node("node1").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    				st.MakePod().Node("node1").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    				st.MakePod().Node("node2").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    				st.MakePod().Node("node2").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "5000"}).Obj(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    				st.MakePod().Node("node1").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    				st.MakePod().Node("node1").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    				st.MakePod().Node("node2").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    				st.MakePod().Node("node2").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "5000"}).Obj(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  7. pilot/pkg/model/context_test.go

    	if port := model.ParsePort("localhost:3000"); port != 3000 {
    		t.Errorf("ParsePort(localhost:3000) => Got %d, want 3000", port)
    	}
    	if port := model.ParsePort("localhost"); port != 0 {
    		t.Errorf("ParsePort(localhost) => Got %d, want 0", port)
    	}
    	if port := model.ParsePort("127.0.0.1:3000"); port != 3000 {
    		t.Errorf("ParsePort(127.0.0.1:3000) => Got %d, want 3000", port)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

            server.setPassword("abc123");
            Xpp3Dom configuration = new Xpp3Dom("configuration");
            Xpp3Dom connectTimeoutConfiguration = new Xpp3Dom("connectTimeout");
            connectTimeoutConfiguration.setValue("3000");
            configuration.addChild(connectTimeoutConfiguration);
    
            server.setConfiguration(configuration);
    
            MavenExecutionRequest request = new DefaultMavenExecutionRequest();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/helpers_test.go

    	add element ip testing service-ips { 1.2.3.4 . tcp . 80 : goto external-42NFTM6N-ns2/svc2/tcp/p80 }
    	add element ip testing service-nodeports { tcp . 3001 : goto external-42NFTM6N-ns2/svc2/tcp/p80 }
    
    	add element ip testing no-endpoint-nodeports { tcp . 3001 comment "ns2/svc2:p80" : drop }
    	add element ip testing no-endpoint-services { 1.2.3.4 . tcp . 80 comment "ns2/svc2:p80" : drop }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  10. src/encoding/asn1/marshal_test.go

    	{nestedStruct{intStruct{127}}, "3005300302017f"},
    	{[]byte{1, 2, 3}, "0403010203"},
    	{implicitTagTest{64}, "3003850140"},
    	{explicitTagTest{64}, "3005a503020140"},
    	{flagTest{true}, "30028000"},
    	{flagTest{false}, "3000"},
    	{time.Unix(0, 0).UTC(), "170d3730303130313030303030305a"},
    	{time.Unix(1258325776, 0).UTC(), "170d3039313131353232353631365a"},
    	{time.Unix(1258325776, 0).In(PST), "17113039313131353134353631362d30383030"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 10K bytes
    - Viewed (0)
Back to top