Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 66 of 66 for findMin (0.17 sec)

  1. 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)
  2. 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)
  3. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    				bestBalance = bestLocalBalance
    				bestRemainder = bestLocalRemainder
    				bestCombo = combo
    			}
    
    			return Continue
    		})
    
    		// If we made it through all of the iterations above without finding a
    		// combination of NUMA nodes that can properly balance CPU allocations,
    		// then move on to the next larger set of NUMA node combinations.
    		if bestCombo == nil {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    [[master_subdirectory_root_build]]
    ==== Searching for settings files in 'master' directories
    
    Gradle will emit a deprecation warning when your build relies on finding the settings file in a directory named `master` in a sibling directory.
    
    If your build uses this feature, consider refactoring the build to have the root directory match the physical root of the project hierarchy.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    * the build script
    * a `gradle.properties` file in the root project directory
    * a `gradle.properties` file in the `$HOME/.gradle` directory
    
    Those aren't the only options, so if you are interested in finding out more about how and where you can define properties, check out the <<build_environment#build_environment,Build Environment>> chapter.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. src/path/filepath/path_test.go

    	if runtime.GOOS == "ios" {
    		restore := chtmpdir(t)
    		defer restore()
    	}
    
    	tmpDir := t.TempDir()
    
    	origDir, err := os.Getwd()
    	if err != nil {
    		t.Fatal("finding working dir:", err)
    	}
    	if err = os.Chdir(tmpDir); err != nil {
    		t.Fatal("entering temp dir:", err)
    	}
    	defer os.Chdir(origDir)
    
    	makeTree(t)
    	errors := make([]error, 0, 10)
    	clear := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top