Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for flavor (0.46 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

    //===----------------------------------------------------------------------===//
    // Div op patterns.
    //===----------------------------------------------------------------------===//
    
    /// Favor Mul over Div.
    def DivWithSqrtDivisor : Pat<
      (TF_DivOp:$src $arg0, (TF_SqrtOp $arg1)),
      (TF_MulOp:$dest1 $arg0, (TF_RsqrtOp:$dest2 $arg1)), [],
      [(CopyAttrs $src, $dest1), (CopyAttrs $src, $dest2)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. pkg/proxy/endpointslicecache.go

    			ready, serving, terminating, zoneHints)
    
    		// This logic ensures we're deduplicating potential overlapping endpoints
    		// isLocal should not vary between matching endpoints, but if it does, we
    		// favor a true value here if it exists.
    		if _, exists := endpointSet[endpointInfo.String()]; !exists || isLocal {
    			endpointSet[endpointInfo.String()] = cache.makeEndpointInfo(endpointInfo, svcPortName)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. internal/auth/credentials.go

    	Name         string                 `xml:"-" json:"name,omitempty"`
    	Description  string                 `xml:"-" json:"description,omitempty"`
    
    	// Deprecated: In favor of Description - when reading credentials from
    	// storage the value of this field is placed in the Description field above
    	// if the existing Description from storage is empty.
    	Comment string `xml:"-" json:"comment,omitempty"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. pkg/scheduler/util/assumecache/assume_cache.go

    //
    // Storing an object with the same version is supported
    // by the assume cache, but suffers from a race: if an
    // update is received via the informer while such an
    // object is assumed, it gets dropped in favor of the
    // newer object from the apiserver.
    //
    // Only assuming objects that were returned by an apiserver
    // operation (Update, Patch) is safe.
    func (c *AssumeCache) Assume(obj interface{}) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    // unrecognized groups will be returned in the version they are encoded as (no conversion). This decoder performs
    // defaulting.
    //
    // TODO: the decoder will eventually be removed in favor of dealing with objects in their versioned form
    // TODO: only accept a group versioner
    func (f CodecFactory) UniversalDecoder(versions ...schema.GroupVersion) runtime.Decoder {
    	var versioner runtime.GroupVersioner
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                                            + ") from repository " + repository.getId() + " (" + repository.getUrl()
                                            + ") in favor of local copy");
                        }
                    } else {
                        update = updateCheckManager.isUpdateRequired(metadata, repository, file);
                    }
    
                    if (update) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/nilcheck.go

    				if f.fe.Debug_checknil() && v.Pos.Line() > 1 {
    					f.Warnl(v.Pos, "removed nil check")
    				}
    				// For bug 33724, policy is that we might choose to bump an existing position
    				// off the faulting load/store in favor of the one from the nil check.
    
    				// Iteration order means that first nilcheck in the chain wins, others
    				// are bumped into the ordinary statement preservation algorithm.
    				u := b.Values[unnecessary.get(v.Args[0].ID)]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublication.java

            getComponent().finalizeValue();
            artifactsOverridden = false;
    
            updateModuleDescriptorArtifact();
        }
    
        // TODO: This method should be removed in favor of lazily adding artifacts to the publication state.
        // This is currently blocked by Signing eagerly realizing the publication artifacts.
        private void populateFromComponent() {
            if (populated) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    func (m *kubeGenericRuntimeManager) generatePodSandboxConfig(pod *v1.Pod, attempt uint32) (*runtimeapi.PodSandboxConfig, error) {
    	// TODO: deprecating podsandbox resource requirements in favor of the pod level cgroup
    	// Refer https://github.com/kubernetes/kubernetes/issues/29871
    	podUID := string(pod.UID)
    	podSandboxConfig := &runtimeapi.PodSandboxConfig{
    		Metadata: &runtimeapi.PodSandboxMetadata{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublication.java

            getComponent().finalizeValue();
            artifactsOverridden = false;
    
            updateModuleDescriptorArtifact();
        }
    
        // TODO: This method should be removed in favor of lazily adding artifacts to the publication state.
        // This is currently blocked by Signing eagerly realizing the publication artifacts.
        private void populateFromComponent() {
            if (populated) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top