Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for 23e1 (0.09 sec)

  1. src/encoding/json/decode_test.go

    	tests := []struct {
    		CaseName
    		in       string
    		i        int64
    		intErr   string
    		f        float64
    		floatErr string
    	}{
    		{CaseName: Name(""), in: "-1.23e1", intErr: "strconv.ParseInt: parsing \"-1.23e1\": invalid syntax", f: -1.23e1},
    		{CaseName: Name(""), in: "-12", i: -12, f: -12.0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. src/math/big/float_test.go

    		}
    	}
    }
    
    func TestFloatIsInt(t *testing.T) {
    	for _, test := range []string{
    		"0 int",
    		"-0 int",
    		"1 int",
    		"-1 int",
    		"0.5",
    		"1.23",
    		"1.23e1",
    		"1.23e2 int",
    		"0.000000001e+8",
    		"0.000000001e+9 int",
    		"1.2345e200 int",
    		"Inf",
    		"+Inf",
    		"-Inf",
    	} {
    		s := strings.TrimSuffix(test, " int")
    		want := s != test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker_test.go

    					{Version: "3.5.10", Endpoint: "localhost:2391"}},
    					expectedResult: false}},
    		},
    		{
    			testName: "Disabled - disables if called with all client doesn't support it",
    			rounds: []testCase{
    				{endpointsVersion: []mockEndpointVersion{
    					{Version: "3.5.9", Endpoint: "localhost:2390"},
    					{Version: "3.5.10", Endpoint: "localhost:2391"}},
    					expectedResult: false}},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS___CBRT_H                        = 0x8FA // 2298
    	SYS___COPYSIGNF_H                   = 0x8FB // 2299
    	SYS___COPYSIGNL_H                   = 0x8FC // 2300
    	SYS___COS_H                         = 0x8FD // 2301
    	SYS___COSF_H                        = 0x8FE // 2302
    	SYS___COSL_H                        = 0x8FF // 2303
    	SYS___COSHF_H                       = 0x900 // 2304
    	SYS___COSHL_H                       = 0x901 // 2305
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_ppc64_linker_funcs.txt

    # Tests that the linker implements the PPC64 ELFv2 ABI
    # register save and restore functions as defined in
    # section 2.3.3.1 of the PPC64 ELFv2 ABI when linking
    # external objects most likely compiled with gcc's
    # -Os option.
    #
    # Verifies golang.org/issue/52366 for linux/ppc64le
    [!GOOS:linux] skip
    [!compiler:gc] skip
    [!cgo] skip
    [!GOARCH:ppc64le] skip
    
    go build -ldflags='-linkmode=internal'
    exec ./abitest
    stdout success
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/etcd/local_test.go

          httpGet:
            host: 127.0.0.1
            path: /livez
            port: 2381
            scheme: HTTP
          initialDelaySeconds: 10
          periodSeconds: 10
          timeoutSeconds: 15
        name: etcd
        readinessProbe:
          failureThreshold: 3
          httpGet:
            host: 127.0.0.1
            path: /readyz
            port: 2381
            scheme: HTTP
          periodSeconds: 1
          timeoutSeconds: 15
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. cluster/images/etcd/migrate/options.go

    			"If unset default to 18629 or 18631 depending on <data-dir>.")
    	flags.Uint64Var(&opts.peerPort, "peer-port", 0,
    		"etcd peer port to use during migration operations. If unset defaults to 2380 or 2381 depending on <data-dir>.")
    	flags.StringVar(&opts.peerListenUrls, "listen-peer-urls", "",
    		"etcd --listen-peer-urls flag. If unset, fallbacks to LISTEN_PEER_URLS env and if unset defaults to http://localhost:<peer-port>.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

        testRotate(new double[] {1, 2, 3}, 2, new double[] {2, 3, 1});
        testRotate(new double[] {1, 2, 3}, 3, new double[] {1, 2, 3});
        testRotate(new double[] {1, 2, 3}, 4, new double[] {3, 1, 2});
        testRotate(new double[] {1, 2, 3}, 5, new double[] {2, 3, 1});
    
        testRotate(new double[] {1, 2, 3, 4}, -9, new double[] {2, 3, 4, 1});
        testRotate(new double[] {1, 2, 3, 4}, -5, new double[] {2, 3, 4, 1});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/ShortsTest.java

        testRotate(new short[] {1, 2, 3}, 2, new short[] {2, 3, 1});
        testRotate(new short[] {1, 2, 3}, 3, new short[] {1, 2, 3});
        testRotate(new short[] {1, 2, 3}, 4, new short[] {3, 1, 2});
        testRotate(new short[] {1, 2, 3}, 5, new short[] {2, 3, 1});
    
        testRotate(new short[] {1, 2, 3, 4}, -9, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, -5, new short[] {2, 3, 4, 1});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/ShortsTest.java

        testRotate(new short[] {1, 2, 3}, 2, new short[] {2, 3, 1});
        testRotate(new short[] {1, 2, 3}, 3, new short[] {1, 2, 3});
        testRotate(new short[] {1, 2, 3}, 4, new short[] {3, 1, 2});
        testRotate(new short[] {1, 2, 3}, 5, new short[] {2, 3, 1});
    
        testRotate(new short[] {1, 2, 3, 4}, -9, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, -5, new short[] {2, 3, 4, 1});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top