Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 85 for findMin (0.34 sec)

  1. security/pkg/nodeagent/cache/secretcache.go

    	// avoid processing duplicate events for the same file.
    	sc.certMutex.Lock()
    	defer sc.certMutex.Unlock()
    	file, err := filepath.Abs(file)
    	if err != nil {
    		cacheLog.Errorf("%v: error finding absolute path of %s, retrying watches: %v", resourceName, file, err)
    		return err
    	}
    	key := FileCert{
    		ResourceName: resourceName,
    		Filename:     file,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    First, it needs to *resolve* the plugin, and then it needs to *apply* the plugin to the target, usually a link:{groovyDslPath}/org.gradle.api.Project.html[`Project`].
    
    1. *Resolving* a plugin means finding the correct version of the JAR that contains a given plugin and adding it to the script classpath.
    Once a plugin is resolved, its API can be used in a build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/internal/trace/gc.go

    			// something else being emitted beforehand.
    			continue
    		}
    
    		switch ev.Kind() {
    		case EventRangeActive:
    			if seenSync {
    				// If we've seen a sync, then we can be sure we're not finding out about
    				// something late; we have complete information after that point, and these
    				// active events will just be redundant.
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/cache.go

    		// m@master as m@pseudo-version.
    		clean := *info
    		info = &clean
    		o := *info.Origin
    		info.Origin = &o
    
    		// Tags never matter if you are starting with a semver version,
    		// as we would be when finding this cache entry.
    		o.TagSum = ""
    		o.TagPrefix = ""
    		// Ref doesn't matter if you have a pseudoversion.
    		if module.IsPseudoVersion(info.Version) {
    			o.Ref = ""
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/import.go

    	}
    
    	// Look up module containing the package, for addition to the build list.
    	// Goal is to determine the module, download it to dir,
    	// and return m, dir, ImportMissingError.
    	fmt.Fprintf(os.Stderr, "go: finding module for package %s\n", path)
    
    	mg, err := rs.Graph(ctx)
    	if err != nil {
    		return module.Version{}, err
    	}
    
    	candidates, err := QueryPackages(ctx, path, "latest", mg.Selected, CheckAllowed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  6. tests/update_test.go

    	}
    
    	var results []User
    	if err := DB.Preload("Account").Find(&results, []uint{users[0].ID, users[1].ID}).Error; err != nil {
    		t.Errorf("Not error should happen when finding users, but got %v", err)
    	}
    
    	for _, user := range results {
    		if user.Name != user.Account.Number {
    			t.Errorf("user's name should be equal to the account's number %v, but got %v", user.Account.Number, user.Name)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Dec 04 03:50:58 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/html.go

    	// For now, an awful hack: edit the html as it passes through
    	// our fingers, finding '<svg ' and injecting needed attributes after it.
    	err = d.copyUntil(w, buf, `<svg `)
    	if err != nil {
    		fmt.Printf("injecting attributes: %v\n", err)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. src/cmd/doc/pkg.go

    	// list, which is what we want. For instance, time.Sunday is of type
    	// time.Weekday, so it is defined in the type but not in the
    	// Consts list for the package. This prevents
    	//	go doc time.Sunday
    	// from finding the symbol. Work around this for now, but we
    	// should fix it in go/doc.
    	// A similar story applies to factory functions.
    	mode := doc.AllDecls
    	if showSrc {
    		mode |= doc.PreserveAST // See comment for Package.emit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. src/runtime/mgcsweep.go

    			// It should be possible to switch back to sysFree if we also
    			// implement and then call some kind of mheap.deleteSpan.
    			if debug.efence > 0 {
    				s.limit = 0 // prevent mlookup from finding this span
    				sysFault(unsafe.Pointer(s.base()), size)
    			} else {
    				mheap_.freeSpan(s)
    			}
    			if s.largeType != nil && s.largeType.TFlag&abi.TFlagUnrolledBitmap != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  10. pkg/controller/resourceclaim/controller.go

    	// This covers the case that the controller has created it, but then fails
    	// before it can update the pod status.
    	claim, err := ec.findPodResourceClaim(pod, podClaim)
    	if err != nil {
    		return fmt.Errorf("finding ResourceClaim for claim %s in pod %s/%s failed: %v", podClaim.Name, pod.Namespace, pod.Name, err)
    	}
    
    	if claim == nil {
    		template, err := ec.templateLister.ResourceClaimTemplates(pod.Namespace).Get(*templateName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top