Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 139 for findMin (0.11 sec)

  1. src/cmd/vendor/golang.org/x/text/language/match.go

    // func (t *Tag) setTagsFrom(id Tag) {
    // 	t.LangID = id.LangID
    // 	t.ScriptID = id.ScriptID
    // 	t.RegionID = id.RegionID
    // }
    
    // Tag Matching
    // CLDR defines an algorithm for finding the best match between two sets of language
    // tags. The basic algorithm defines how to score a possible match and then find
    // the match with the best score
    // (see https://www.unicode.org/reports/tr35/#LanguageMatching).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pcln.go

    // function's line table.
    func walkFilenames(ctxt *Link, funcs []loader.Sym, f func(*sym.CompilationUnit, goobj.CUFileIndex)) {
    	ldr := ctxt.loader
    
    	// Loop through all functions, finding the filenames we need.
    	for _, s := range funcs {
    		fi := ldr.FuncInfo(s)
    		if !fi.Valid() {
    			continue
    		}
    		fi.Preload()
    
    		cu := ldr.SymUnit(s)
    		for i, nf := 0, int(fi.NumFile()); i < nf; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  3. pkg/api/pod/util_test.go

    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPodSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. src/runtime/mpallocbits.go

    		if start == notSetYet {
    			start = cur
    		}
    		most = max(most, cur)
    		// Final region that might span to next uint64
    		cur = l
    	}
    	if start == notSetYet {
    		// Made it all the way through without finding a single 1 bit.
    		const n = uint(64 * len(b))
    		return packPallocSum(n, n, n)
    	}
    	most = max(most, cur)
    
    	if most >= 64-2 {
    		// There is no way an internal run of zeros could beat max.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

                mlir::dyn_cast_or_null<StringAttr>(attribute.getValue());
            string_attr != nullptr &&
            string_attr.getValue() == kNullAttributeValue) {
          continue;
        }
    
        if (std::find_if(
                attr_to_op_map.begin(), attr_to_op_map.end(), [&](auto attr_op) {
                  return std::get<0>(attr_op).getName() == attribute.getName();
                }) == attr_to_op_map.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. cmd/import-boss/main.go

    		// a distinct Package.
    		return nil
    	}
    
    	restrictionFiles, err := recursiveRead(filepath.Join(pkgDir, rulesFileName))
    	if err != nil {
    		return []error{fmt.Errorf("error finding rules file: %w", err)}
    	}
    	if len(restrictionFiles) == 0 {
    		return nil
    	}
    
    	klog.V(2).Infof("verifying pkg %q (%s)", pkg.PkgPath, pkgDir)
    	var errs []error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller.go

    		volume, err := ctrl.volumes.findBestMatchForClaim(claim, delayBinding)
    		if err != nil {
    			logger.V(2).Info("Synchronizing unbound PersistentVolumeClaim, Error finding PV for claim", "PVC", klog.KObj(claim), "err", err)
    			return fmt.Errorf("error finding PV for claim %q: %w", claimToClaimKey(claim), err)
    		}
    		if volume == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  8. pilot/pkg/config/file/store.go

    type unknownSchemaError struct {
    	group   string
    	version string
    	kind    string
    }
    
    func (e unknownSchemaError) Error() string {
    	return fmt.Sprintf("failed finding schema for group/version/kind: %s/%s/%s", e.group, e.version, e.kind)
    }
    
    func (s *KubeSource) parseChunk(r *collection.Schemas, name string, lineNum int, yamlChunk []byte) ([]kubeResource, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_distributed_test.cc

                             std::vector<std::string>* control_ret_node_names,
                             bool* control_rets_updated) override {
        // Inject failure to function instantiation if finding a node that contains
        // the given node name (error_node_) and requested device (error_device_).
        for (const auto node : graph->get()->nodes()) {
          if (node->name().find(error_node_) != string::npos &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. src/internal/fuzz/fuzz.go

    	// be disabled.
    	MinimizeTimeout time.Duration
    
    	// MinimizeLimit is the maximum number of calls to the fuzz function to be
    	// made while minimizing after finding a crash. If zero, there will be no
    	// limit. Calls to the fuzz function made when minimizing also count toward
    	// Limit. If MinimizeTimeout and MinimizeLimit are both zero, then
    	// minimization will be disabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top