Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for integers (0.15 sec)

  1. doc/go1.17_spec.html

    %    remainder              integers
    
    &    bitwise AND            integers
    |    bitwise OR             integers
    ^    bitwise XOR            integers
    &^   bit clear (AND NOT)    integers
    
    <<   left shift             integer << integer >= 0
    >>   right shift            integer >> integer >= 0
    </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)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"type(self.val7) == double",
    				"self.val7 == 1.0",
    			},
    		},
    		{name: "numeric comparisons",
    			obj: objs(
    				int64(5),      // val1, integer type, integer value
    				int64(10),     // val2, integer type, integer value
    				int64(15),     // val3, integer type, integer value
    				float64(10.0), // val4, number type, parsed from decimal literal
    				float64(10.0), // val5, float type, parsed from decimal literal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&infintie;":                        "\u29dd",
    	"&inodot;":                          "\u0131",
    	"&int;":                             "\u222b",
    	"&intcal;":                          "\u22ba",
    	"&integers;":                        "\u2124",
    	"&intercal;":                        "\u22ba",
    	"&intlarhk;":                        "\u2a17",
    	"&intprod;":                         "\u2a3c",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    of the coordinate system; thus translating or reflections of the coordinate
    system result in the same boxes being selected by the algorithm.
    The output of this operation is a set of integers indexing into the input
    collection of bounding boxes representing the selected boxes.  The bounding
    box coordinates corresponding to the selected indices can then be obtained
    using the `tf.gather operation`.  For example:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    	"X13",
    	"X14",
    	"X15", // constant 0 in ABIInternal
    
    	// If you add registers, update asyncPreempt in runtime
    
    	// pseudo-registers
    	"SB",
    }
    
    func init() {
    	// Make map from reg names to reg integers.
    	if len(regNamesAMD64) > 64 {
    		panic("too many registers")
    	}
    	num := map[string]int{}
    	for i, name := range regNamesAMD64 {
    		num[name] = i
    	}
    	buildReg := func(s string) regMask {
    		m := regMask(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  6. 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)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    }
    
    // These are test cases for StrategicMergePatch that cannot be generated using
    // CreateTwoWayMergePatch because it may be one of the following cases:
    // - not use the replace directive.
    // - generate duplicate integers for a merging list patch.
    // - generate empty merging lists.
    // - use patch format from an old client.
    var customStrategicMergePatchTestCaseData = []byte(`
    testCases:
      - description: unique scalars when merging lists
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/generic.rules

    				)
    				(Const64 <typ.UInt64> [64-sdivisible64(c).k])
    			)
    			(Const64 <typ.UInt64> [int64(sdivisible64(c).max)])
    		)
    
    // Divisibility check for signed integers for power of two constant are simple mask.
    // However, we must match against the rewritten n%c == 0 -> n - c*(n/c) == 0 -> n == c*(n/c)
    // where n/c contains fixup code to handle signed n.
    ((Eq8|Neq8) n (Lsh8x64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        Function<Integer, Integer> adder =
            new Function<Integer, Integer>() {
              @Override
              public Integer apply(Integer from) {
                return from + holder.value;
              }
            };
    
        // Since holder.value is 2, applying 4 should yield 6.
        assertEquals(6, adder.apply(4).intValue());
    
        ListenableFuture<Integer> immediateFuture = immediateFuture(4);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        Function<Integer, Integer> adder =
            new Function<Integer, Integer>() {
              @Override
              public Integer apply(Integer from) {
                return from + holder.value;
              }
            };
    
        // Since holder.value is 2, applying 4 should yield 6.
        assertEquals(6, adder.apply(4).intValue());
    
        ListenableFuture<Integer> immediateFuture = immediateFuture(4);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top