Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,261 for multiplier (0.18 sec)

  1. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

        // This class can make no hard guarantees.  The methods in this class are inherently flaky, but
        // we try hard to make them robust in practice.  We could additionally try to add in a system
        // load timeout multiplier.  Or we could try to use a CPU time bound instead of wall clock time
        // bound.  But these ideas are harder to implement.  We do not try to detect or handle a
        // user-specified -XX:+DisableExplicitGC.
        //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    				Generic: schema.Generic{
    					Type: "string",
    				},
    				ValueValidation: &schema.ValueValidation{
    					MaxLength: maxPtr(20),
    				},
    			},
    			// manually set by MaxLength, but we expect a 4x multiplier compared to the original input
    			// since OpenAPIv3 maxLength uses code points, but DeclType works with bytes
    			ExpectedMaxElements: 80,
    		},
    		{
    			Name: "mapWithLength",
    			InputSchema: &schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/openapi/schemas_test.go

    			InputSchema: &spec.Schema{
    				SchemaProps: spec.SchemaProps{
    					Type:      []string{"string"},
    					MaxLength: maxPtr(20),
    				}},
    			// manually set by MaxLength, but we expect a 4x multiplier compared to the original input
    			// since OpenAPIv3 maxLength uses code points, but DeclType works with bytes
    			ExpectedMaxElements: 80,
    		},
    		{
    			Name: "mapWithLength",
    			InputSchema: &spec.Schema{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 17:18:27 UTC 2022
    - 13K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/GcFinalization.java

        // This class can make no hard guarantees.  The methods in this class are inherently flaky, but
        // we try hard to make them robust in practice.  We could additionally try to add in a system
        // load timeout multiplier.  Or we could try to use a CPU time bound instead of wall clock time
        // bound.  But these ideas are harder to implement.  We do not try to detect or handle a
        // user-specified -XX:+DisableExplicitGC.
        //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        int64_t in_channels = input_shape[3];
        // If in_channels is 1, there is no need to restore weight shape.
        if (in_channels == 1) return failure();
        int64_t multiplier = weight_shape[3] / in_channels;
    
        TensorType new_shape = RankedTensorType::get(
            {weight_shape[0], weight_shape[1], in_channels, multiplier},
            weight_type.getElementType());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/CharMatcher.java

        static final int MULTIPLIER = 1682554634;
        static final int SHIFT = Integer.numberOfLeadingZeros(TABLE.length() - 1);
    
        static final CharMatcher INSTANCE = new Whitespace();
    
        Whitespace() {
          super("CharMatcher.whitespace()");
        }
    
        @Override
        public boolean matches(char c) {
          return TABLE.charAt((MULTIPLIER * c) >>> SHIFT) == c;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/CharMatcher.java

        static final int MULTIPLIER = 1682554634;
        static final int SHIFT = Integer.numberOfLeadingZeros(TABLE.length() - 1);
    
        static final CharMatcher INSTANCE = new Whitespace();
    
        Whitespace() {
          super("CharMatcher.whitespace()");
        }
    
        @Override
        public boolean matches(char c) {
          return TABLE.charAt((MULTIPLIER * c) >>> SHIFT) == c;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/strings/replace.go

    // we call Count, for each replacement from toReplace.
    // For strings, with a lower ratio we use simple loop, because of Count overhead.
    // countCutOff is an empirically determined overhead multiplier.
    // TODO(tocarip) revisit once we have register-based abi/mid-stack inlining.
    const countCutOff = 8
    
    func (r *byteStringReplacer) Replace(s string) string {
    	newSize := len(s)
    	anyChanges := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/types.go

    	PreemptVerb string
    	// Verb for the prioritize call, empty if not supported. This verb is appended to the URLPrefix when issuing the prioritize call to extender.
    	PrioritizeVerb string
    	// The numeric multiplier for the node scores that the prioritize call generates.
    	// The weight should be a positive integer
    	Weight int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. src/image/png/writer.go

    					} else {
    						// This code does the same as color.NRGBAModel.Convert(
    						// rgba.At(x, y)).(color.NRGBA) but with no extra memory
    						// allocations or interface/function call overhead.
    						//
    						// The multiplier m combines 0x101 (which converts
    						// 8-bit color to 16-bit color) and 0xffff (which, when
    						// combined with the division-by-a, converts from
    						// alpha-premultiplied to non-alpha-premultiplied).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top