Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for negligible (0.15 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    int64_t L2NormalizationOp::GetArithmeticCount(Operation* op) {
      int64_t count;
      // Computing the squared L2 norm is N multiply-adds so 2N ops,
      // then the single inverse-sqrt is negligible, then we multiply each
      // value by the resulting multiplier, so an extra N ops. count 3N ops.
      if (ArithmeticCountUtilHelper::GetFirstOutputCount(op, &count)) {
        return 3 * count;
      }
    
      return -1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                            _INVOKEVIRTUAL(generatedType, "getConventionMapping", RETURN_CONVENTION_MAPPING);
                            // GENERATE convention.ineligible(__property.getName()__)
                            _LDC(property.getName());
                            _INVOKEINTERFACE(CONVENTION_MAPPING_TYPE, "ineligible", RETURN_VOID_FROM_STRING);
                        }
                    }
                    _RETURN();
                }});
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    		UserAgent:    r.UserAgent(),
    		Host:         handlers.GetSourceIP(r),
    	})
    
    	if !remoteCallRequired && !globalTierConfigMgr.Empty() {
    		// Schedule object for immediate transition if eligible.
    		objInfo.ETag = origETag
    		enqueueTransitionImmediate(objInfo, lcEventSrc_s3CopyObject)
    		// Remove the transitioned object whose object version is being overwritten.
    		os.Sweep()
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    	queueReplicationHeal(ctx, bucket, oi, replicationConfig{
    		Config:  rcfg,
    		remotes: tgts,
    	}, retryCount)
    }
    
    // queueReplicationHeal enqueues objects that failed replication OR eligible for resyncing through
    // an ongoing resync operation or via existing objects replication configuration setting.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    		Memory:           kl.containerManager,
    		DynamicResources: kl.containerManager,
    	}
    
    	server.ListenAndServePodResources(endpoint, providers)
    }
    
    // Delete the eligible dead container instances in a pod. Depending on the configuration, the latest dead containers may be kept around.
    func (kl *Kubelet) cleanUpContainersInPod(podID types.UID, exitedContainerID string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    configVolumes: [] serviceAccount: # Annotations to add to the service account annotations: {} ### Advanced options ########## env: {} nodeSelector: {} tolerations: [] # Specify the pod anti-affinity that allows you to constrain which nodes # your pod is eligible to be scheduled based on labels on pods that are # already running on the node rather than based on labels on nodes. # There are currently two types of anti-affinity: # "requiredDuringSchedu" # "preferredDuringSched" # which denote "hard" vs. "soft"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top