Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,722 for refined (0.21 sec)

  1. guava/src/com/google/common/collect/Multiset.java

         * defined as:
         *
         * <pre>{@code
         * ((element == null) ? 0 : element.hashCode()) ^ count
         * }</pre>
         */
        @Override
        int hashCode();
    
        /**
         * Returns the canonical string representation of this entry, defined as follows. If the count
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  2. src/math/big/natdiv.go

    result: compare the top n digits of u against v and fill in either a 0 or a 1.
    
    
    Refining Guesses
    
    Before we check whether u < q̂·v, we can adjust our guess to change it from
    q̂ = ⌊uₙuₙ₋₁ / vₙ₋₁⌋ into the refined guess ⌊uₙuₙ₋₁uₙ₋₂ / vₙ₋₁vₙ₋₂⌋.
    Although not mentioned above, the Good Guess Guarantee also promises that this
    3-by-2-digit division guess is more precise and at most one away from the real
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

      }
    
      // Tests where tf.Const's value needs to be refined.
    
      func.func @const_refine() -> tensor<*xi32> {
        %0 = "tf.Const"() {value = dense<[3, 2]> : tensor<2xi32>} : () -> tensor<*xi32>
        // CHECK: "tf.Const"
        // CHECK-SAME: -> tensor<2xi32>
        func.return %0 : tensor<*xi32>
      }
    
      // Tests the case where an op's shape function returns non-fully-defined shapes.
    
      // CHECK-LABEL: func @op_non_fully_defined_shape_fn
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      // CHECK-SAME: tensor<*xi32>
      func.return %1 : tensor<*xi32>
    }
    
    // If multiple types are used across reads and writes, check that the read uses
    // the most refined type. The first ReadVariable should refine the type from
    // *xi32 to ?xi32 and the assign should refine it further to 4xi32.
    // CHECK-LABEL: func @type_refinement_use_refined_type
    func.func @type_refinement_use_refined_type() -> tensor<4xi32> {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            ]
        }
    
        def "ignores badly formed define directives"() {
            when:
            sourceFile << """
    #define
    #define  // white space
    #define ()
    #define ( _
    #define ( _ )
    #define X(
    #define X(abc
    #define X( ,
    #define X( abc,
    #define X( abc, ,
    # define @(Y) Z
    """
    
            then:
            macros.empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      parser.emitError(parser.getNameLoc()) << "unknown TFL type: " << data_type;
      return nullptr;
    }
    
    void TFLDialect::initialize() {
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.cc.inc"
          >();
      addAttributes<
    #define GET_ATTRDEF_LIST
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_attrdefs.cc.inc"
          >();
      addInterfaces<TensorFlowLiteInlinerInterface,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. cni/pkg/install/testdata/istio-cni-prefixed.conf

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 215 bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/mcs-serviceimport-crd.yaml

                            follows standard Kubernetes label syntax. Un-prefixed names
                            are reserved for IANA standard service names (as per RFC-6335
                            and http://www.iana.org/assignments/service-names). Non-standard
                            protocols should use prefixed names such as mycompany.com/my-custom-protocol.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 7K bytes
    - Viewed (0)
  9. src/flag/flag.go

    		var msg string
    		if f.name == "" {
    			msg = f.sprintf("flag redefined: %s", name)
    		} else {
    			msg = f.sprintf("%s flag redefined: %s", f.name, name)
    		}
    		panic(msg) // Happens only if flags are declared with identical names
    	}
    	if pos := f.undef[name]; pos != "" {
    		panic(fmt.Sprintf("flag %s set at %s before being defined", name, pos))
    	}
    	if f.formal == nil {
    		f.formal = make(map[string]*Flag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	//		 subdomains like `myauthorizer.example.domain`
    	// Required, with no default
    	Name string `json:"name"`
    
    	// Webhook defines the configuration for a Webhook authorizer
    	// Must be defined when Type=Webhook
    	// Must not be defined when Type!=Webhook
    	Webhook *WebhookConfiguration `json:"webhook,omitempty"`
    }
    
    type WebhookConfiguration struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top