Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,513 for integers (0.26 sec)

  1. src/fmt/fmt_test.go

    	{"%.1x", "日本語", "e6"},
    	{"%.1X", []byte("日本語"), "E6"},
    	{"%10.1q", "日本語日本語", `       "日"`},
    	{"%10.1q", []byte("日本語日本語"), `       "日"`},
    	{"%10v", nil, "     <nil>"},
    	{"%-10v", nil, "<nil>     "},
    
    	// integers
    	{"%d", uint(12345), "12345"},
    	{"%d", int(-12345), "-12345"},
    	{"%d", ^uint8(0), "255"},
    	{"%d", ^uint16(0), "65535"},
    	{"%d", ^uint32(0), "4294967295"},
    	{"%d", ^uint64(0), "18446744073709551615"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   GetCapturedStderr() - stops capturing stderr and returns the captured
    //                         string.
    //
    // Integer types:
    //   TypeWithSize   - maps an integer to a int type.
    //   Int32, UInt32, Int64, UInt64, TimeInMillis
    //                  - integers of known sizes.
    //   BiggestInt     - the biggest signed integer type.
    //
    // Command-line utilities:
    //   GTEST_FLAG()       - references a flag.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    	"F27",
    	"F28",
    	"F29",
    	"F30",
    	"F31",
    
    	// If you add registers, update asyncPreempt in runtime.
    
    	// pseudo-registers
    	"SB",
    }
    
    func init() {
    	// Make map from reg names to reg integers.
    	if len(regNamesARM64) > 64 {
    		panic("too many registers")
    	}
    	num := map[string]int{}
    	for i, name := range regNamesARM64 {
    		num[name] = i
    	}
    	buildReg := func(s string) regMask {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. src/html/template/exec_test.go

    	{"ge `xy` `xyz`", "false", true},
    	{"ge `xyz` `xy`", "true", true},
    	{"ge .Uthree .Uthree", "true", true},
    	{"ge .Uthree .Ufour", "false", true},
    	{"ge .Ufour .Uthree", "true", true},
    	// Mixing signed and unsigned integers.
    	{"eq .Uthree .Three", "true", true},
    	{"eq .Three .Uthree", "true", true},
    	{"le .Uthree .Three", "true", true},
    	{"le .Three .Uthree", "true", true},
    	{"ge .Uthree .Three", "true", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. src/text/template/exec_test.go

    	{"ge `xy` `xyz`", "false", true},
    	{"ge `xyz` `xy`", "true", true},
    	{"ge .Uthree .Uthree", "true", true},
    	{"ge .Uthree .Ufour", "false", true},
    	{"ge .Ufour .Uthree", "true", true},
    	// Mixing signed and unsigned integers.
    	{"eq .Uthree .Three", "true", true},
    	{"eq .Three .Uthree", "true", true},
    	{"le .Uthree .Three", "true", true},
    	{"le .Three .Uthree", "true", true},
    	{"ge .Uthree .Three", "true", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "format": "int64",
                "type": "integer"
              },
              "successfulJobsHistoryLimit": {
                "description": "The number of successful finished jobs to retain. Value must be non-negative integer. Defaults to 3.",
                "format": "int32",
                "type": "integer"
              },
              "suspend": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/IsolatableSerializerRegistryTest.groovy

            newIsolatables[1].isolate() == short2
        }
    
        def "can serialize/deserialize isolated Integer values"() {
            int integer1 = 32768
            int integer2 = 32769
            Isolatable<?>[] isolatables = [isolatableFactory.isolate(integer1), isolatableFactory.isolate(integer2)]
    
            when:
            serialize(isolatables)
    
            and:
            Isolatable<?>[] newIsolatables = deserialize()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    							Description: "x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:\n\n1) anyOf:\n   - type: integer\n   - type: string\n2) allOf:\n   - anyOf:\n     - type: integer\n     - type: string\n   - ... zero or more",
    							Type:        []string{"boolean"},
    							Format:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

              },
              "maxItems": {
                "format": "int64",
                "type": "integer"
              },
              "maxLength": {
                "format": "int64",
                "type": "integer"
              },
              "maxProperties": {
                "format": "int64",
                "type": "integer"
              },
              "maximum": {
                "format": "double",
                "type": "number"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

            "description": "NamedResourcesIntSlice contains a slice of 64-bit integers.",
            "properties": {
              "ints": {
                "description": "Ints is the slice of 64-bit integers.",
                "items": {
                  "default": 0,
                  "format": "int64",
                  "type": "integer"
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
Back to top