Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for A12345 (0.13 sec)

  1. tests/integration/pilot/common/routing.go

    			fmt.Sprintf("%s:12345", cfg.ClusterLocalFQDN()),
    			fmt.Sprintf("%s.%s.svc", cfg.Service, cfg.Namespace.Name()),
    			fmt.Sprintf("%s.%s.svc:%d", cfg.Service, cfg.Namespace.Name(), port),
    			fmt.Sprintf("%s.%s.svc:12345", cfg.Service, cfg.Namespace.Name()),
    			cfg.Service,
    			fmt.Sprintf("%s:%d", cfg.Service, port),
    			fmt.Sprintf("%s:12345", cfg.Service),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    				{Type: asn1.ObjectIdentifier([]int{1, 2, 3, 4, 5}), Value: "golang.org"}},
    		}, "1.2.3.4.5=#130a676f6c616e672e6f7267,L=Gophertown"},
    		// If there are no ExtraNames, the Names are printed instead.
    		{pkix.Name{
    			Locality: []string{"Gophertown"},
    			Names: []pkix.AttributeTypeAndValue{
    				{Type: asn1.ObjectIdentifier([]int{1, 2, 3, 4, 5}), Value: "golang.org"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. pkg/apis/apps/validation/validation_test.go

    				Containers: []api.Container{{
    					Name:            "abc",
    					Image:           "image",
    					ImagePullPolicy: "IfNotPresent",
    					Ports: []api.ContainerPort{{
    						ContainerPort: 12345,
    						Protocol:      api.ProtocolTCP,
    					}},
    				}},
    			},
    		},
    	}
    
    	invalidLabels := map[string]string{"NoUppercaseOrSpecialCharsLike=Equals": "b"}
    	invalidPodTemplate := api.PodTemplate{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    			nodeIP:    "",
    			criPodIPs: []string{"10.0.0.1", "fd01::1234"},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    				{IP: "fd01::1234"},
    			},
    		},
    		{
    			name:      "Dual-stack with explicit node IP",
    			nodeIP:    "192.168.1.1",
    			criPodIPs: []string{"10.0.0.1", "fd01::1234"},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    				{IP: "fd01::1234"},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. pkg/apis/batch/validation/validation_test.go

    		spec.Spec.SecurityContext = &api.PodSecurityContext{
    			HostNetwork: true,
    		}
    		spec.Spec.Containers[0].Ports = []api.ContainerPort{{
    			ContainerPort: 12345,
    			Protocol:      api.ProtocolTCP,
    		}}
    		return spec
    	}()
    
    	successCases := map[string]struct {
    		opts JobValidationOptions
    		job  batch.Job
    	}{
    		"valid success policy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            def repo2 = new MavenFileRepository(testDirectory.file("repo2"))
            def m1 = repo1.module("test", "test", "1.3").publish()
            m1.artifactFile.text = "1234"
            def m2 = repo2.module("test", "test", "1.3").publish()
            m2.artifactFile.text = "12345"
    
            given:
            createDirs("a", "b")
            settingsFile << """
                include "a"
                include "b"
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    </pre>
    
    <p>
    Examples:
    </p>
    
    <pre>
    var a = [...]int{0, 1, 2, 3, 4, 5, 6, 7}
    var s = make([]int, 6)
    var b = make([]byte, 5)
    n1 := copy(s, a[0:])            // n1 == 6, s == []int{0, 1, 2, 3, 4, 5}
    n2 := copy(s, s[2:])            // n2 == 4, s == []int{2, 3, 4, 5, 4, 5}
    n3 := copy(b, "Hello, World!")  // n3 == 5, b == []byte("Hello")
    </pre>
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/helpers_test.go

    		hasError bool
    		value    float32
    	}{
    		"blah": {
    			hasError: true,
    		},
    		"25.5%": {
    			value: 0.255,
    		},
    		"foo%": {
    			hasError: true,
    		},
    		"12%345": {
    			hasError: true,
    		},
    	}
    	for input, expected := range testCases {
    		value, err := parsePercentage(input)
    		if (err != nil) != expected.hasError {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

          %3 = "tf.C"() : () -> tensor<?x2xi32>
          %4 = "tf.D"(%3) {_xla_outside_compilation = "auto1"} : (tensor<?x2xi32>) -> tensor<3x!tf_type.string>
          %5 = "tf.E"() : () -> tensor<?x3xi32>
          tf_device.return %1, %2, %3, %4, %5 : tensor<?xi32>, tensor<?x!tf_type.string>, tensor<?x2xi32>, tensor<3x!tf_type.string>, tensor<?x3xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			},
    			errors: map[string]string{
    				"self.array[100] == 0": "index out of bounds: 100",
    			},
    		},
    		{name: "listSet access",
    			obj: map[string]interface{}{
    				"set": []interface{}{1, 2, 3, 4, 5},
    			},
    			schema: objectTypePtr(map[string]schema.Structural{
    				"set": listType(&integerType),
    			}),
    			valid: []string{
    				"3 in self.set",
    				"self.set.all(e, e > 0)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top