Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 61 for 9876 (0.04 sec)

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

    			name:               "duplicate field",
    			mode:               "iptables",
    			bindAddress:        "9.8.7.6",
    			clusterCIDR:        "1.2.3.0/24",
    			healthzBindAddress: "1.2.3.4:12345",
    			metricsBindAddress: "2.3.4.5:23456",
    			extraConfig:        "bindAddress: 9.8.7.6",
    		},
    	}
    
    	for _, tc := range testCases {
    		expBindAddr := tc.bindAddress
    		if tc.bindAddress[0] == '"' {
    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. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

            declareChecksum("org:foo:1.0", "sha256", "bcd")
            declareChecksum("org:foo:1.1", "md5", "1234")
            declareChecksum("org:bar:1.2", "sha512", "123def")
            declareChecksum("org:bar:1.2", "sha1", "9876")
    
            when:
            serialize()
    
            then:
            contents == """<?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata>
       <configuration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/testx.go

    //export issue5548FromC
    func issue5548FromC(s string, i int) int {
    	if len(s) == 4 && s == "test" && i == 42 {
    		return 12345
    	}
    	println("got", len(s), i)
    	return 9876
    }
    
    func test5548(t *testing.T) {
    	if x := C.issue5548_in_c(); x != 12345 {
    		t.Errorf("issue5548_in_c = %d, want %d", x, 12345)
    	}
    }
    
    // issue 6833
    
    //export GoIssue6833Func
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. istioctl/pkg/admin/istiodconfig.go

    	}
    	opts.AttachControlPlaneFlags(logCmd)
    	logCmd.PersistentFlags().BoolVar(&istiodReset, "reset", istiodReset, "Reset levels to default value. (info)")
    	logCmd.PersistentFlags().IntVar(&controlzPort, "ctrlz_port", 9876, "ControlZ port")
    	logCmd.PersistentFlags().StringVar(&outputLogLevel, "level", outputLogLevel,
    		"Comma-separated list of output logging level for scopes in the format of <scope>:<level>[,<scope>:<level>,...]. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. pkg/proxy/util/utils_test.go

    	}{
    		{
    			name:   "IPv4 all-zeros bind address has port",
    			addr:   "0.0.0.0:12345",
    			port:   23456,
    			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",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/array_grad_test.cc

    }
    
    TEST_F(ArrayGradTest, GatherV2Grad_LastAxis2) {
      TensorShape shape({2, 3, 7, 10});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
      auto y = GatherV2(scope_, x, {9, 8, 7, 6}, /*axis=*/3);
      TensorShape y_shape({2, 3, 7, 4});
      RunTest(x, shape, y, y_shape);
    }
    
    TEST_F(ArrayGradTest, GatherV2Grad_BatchDim) {
      TensorShape shape({2, 100, 3});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  7. istioctl/pkg/dashboard/dashboard.go

    	dashboardCmd.AddCommand(proxy)
    
    	controlz := controlZDashCmd(cliContext)
    	controlz.PersistentFlags().IntVar(&controlZport, "ctrlz_port", 9876, "ControlZ port")
    	controlz.PersistentFlags().StringVarP(&labelSelector, "selector", "l", "", "Label selector")
    	dashboardCmd.AddCommand(controlz)
    
    	istioDebug := istioDebugDashCmd(cliContext)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/dump/dump_test.go

    		{uint16(93), "(uint16) 93\n"},
    		{uint32(93), "(uint32) 93\n"},
    		{uint64(93), "(uint64) 93\n"},
    		{uintptr(93), "(uintptr) 0x5d\n"},
    		{ptrint(93), "(*int)(93)\n"},
    		{float32(93.76), "(float32) 93.76\n"},
    		{float64(93.76), "(float64) 93.76\n"},
    		{complex64(93i), "(complex64) (0+93i)\n"},
    		{complex128(93i), "(complex128) (0+93i)\n"},
    		{bool(true), "(bool) true\n"},
    		{bool(false), "(bool) false\n"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. operator/pkg/object/testdata/well-formed.yaml

        image: nginx
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: myservice
      namespace: default
    spec:
      selector:
        app: MyApp
      ports:
      - protocol: TCP
        port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 305 bytes
    - Viewed (0)
  10. test/fixedbugs/issue10066.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 10066: constants are printed in the original form
    // in export data. This is the opposite of issue 9076.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 05 03:40:42 UTC 2015
    - 306 bytes
    - Viewed (0)
Back to top