Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for 1__2345 (0.36 sec)

  1. cmd/kube-proxy/app/server_test.go

    			healthzBindAddress: "fd00:1::5",
    			healthzPort:        12345,
    			metricsBindAddress: "fd00:1::6",
    			metricsPort:        23456,
    			expHealthz:         "[fd00:1::5]:12345",
    			expMetrics:         "[fd00:1::6]:23456",
    		},
    		{
    			name:               "IPv6 bind address has port",
    			healthzBindAddress: "[fd00:1::5]:12345",
    			healthzPort:        56789,
    			metricsBindAddress: "[fd00:1::6]:56789",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. doc/README.md

    For example, if the directory `6-stdlib/99-minor` is present,
    then an `api/next` file with the line
    
        pkg net/http, function F #12345
    
    should have a corresponding file named `doc/next/6-stdlib/99-minor/net/http/12345.md`.
    At a minimum, that file should contain either a full sentence or a TODO,
    ideally referring to a person with the responsibility to complete the note.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/testing/benchmark_test.go

    	res := testing.Benchmark(func(b *testing.B) {
    		b.ReportMetric(12345, "ns/op")
    		b.ReportMetric(0.2, "frobs/op")
    	})
    	// Test built-in overriding.
    	if res.NsPerOp() != 12345 {
    		t.Errorf("NsPerOp: expected %v, actual %v", 12345, res.NsPerOp())
    	}
    	// Test stringing.
    	res.N = 1 // Make the output stable
    	want := "       1\t     12345 ns/op\t         0.2000 frobs/op"
    	if want != res.String() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    			},
    		},
    	}
    
    	sidecarOutboundIn := []*listener.Listener{
    		{
    			Name: "12345",
    			Address: &core.Address{
    				Address: &core.Address_SocketAddress{
    					SocketAddress: &core.SocketAddress{
    						PortSpecifier: &core.SocketAddress_PortValue{
    							PortValue: 12345,
    						},
    					},
    				},
    			},
    			FilterChains: []*listener.FilterChain{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  5. pkg/proxy/servicechangetracker_test.go

    					Ports: []v1.ServicePort{
    						{
    							Name:     "testPort",
    							Port:     int32(12345),
    							Protocol: v1.ProtocolTCP,
    						},
    					},
    				},
    			},
    			expected: map[ServicePortName]*BaseServicePortInfo{
    				makeServicePortName("test", "extra-space", "testPort", v1.ProtocolTCP): makeTestServiceInfo(testClusterIPv4, 12345, "TCP", 0, func(bsvcPortInfo *BaseServicePortInfo) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  6. src/slices/iter_test.go

    		},
    		{
    			name:   "even",
    			s:      []int{1, 2, 3, 4},
    			n:      2,
    			chunks: [][]int{{1, 2}, {3, 4}},
    		},
    		{
    			name:   "odd",
    			s:      []int{1, 2, 3, 4, 5},
    			n:      2,
    			chunks: [][]int{{1, 2}, {3, 4}, {5}},
    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			var chunks [][]int
    			for c := range Chunk(tc.s, tc.n) {
    				chunks = append(chunks, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. pkg/proxy/util/utils_test.go

    			expect: "0.0.0.0:12345",
    		},
    		{
    			name:   "non-zeros IPv4 config",
    			addr:   "9.8.7.6",
    			port:   12345,
    			expect: "9.8.7.6:12345",
    		},
    		{
    			name:   "IPv6 \"[::]\" bind address has port",
    			addr:   "[::]:12345",
    			port:   23456,
    			expect: "[::]:12345",
    		},
    		{
    			name:   "IPv6 config",
    			addr:   "fd00:1::5",
    			port:   23456,
    			expect: "[fd00:1::5]:23456",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            "int"                                 | "123"                                                 | "-45"                                                        | null
            "Integer"                             | "123"                                                 | "-45"                                                        | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/integration_test/tensorflow_to_stablehlo_test.py

    
    def build_savedmodel(tempdir) -> str:
    
      class AddOneModel(tf.keras.Model):
    
        def call(self, x):
          return x + 1
    
      model = AddOneModel()
    
      x_train = tf.constant([1, 2, 3, 4, 5], dtype=tf.float32)
      y_train = tf.constant([2, 3, 4, 5, 6], dtype=tf.float32)
    
      model.compile(optimizer='sgd', loss='mse')
      model.fit(x_train, y_train, epochs=1)
    
      path = tempdir + '/add_one_model'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            def target = tmpDir.file('versionDir')
            repoSpec.url = 'ssh://******@****.***d:12345/TestGradleLibrary.git'
    
            when:
            gitVcs.populate(target, repoHead, repoSpec)
    
            then:
            GradleException e = thrown()
            e.message.contains('Could not clone from ssh://******@****.***d:12345/TestGradleLibrary.git in')
            e.cause != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top