Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for findMin (0.12 sec)

  1. 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)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    	volumeSpec := volume.NewSpecFromPersistentVolume(pv, false)
    
    	volumePlugin, err := og.volumePluginMgr.FindExpandablePluginBySpec(volumeSpec)
    	if err != nil {
    		return volumetypes.GeneratedOperations{}, fmt.Errorf("error finding plugin for expanding volume: %q with error %v", util.GetPersistentVolumeClaimQualifiedName(pvc), err)
    	}
    
    	if volumePlugin == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    		if sw.NeedSwitch() {
    			sw.Switch(ctx)
    			// If NeedSwitch is true and Switch returns, Switch has failed to locate a newer toolchain.
    			// It printed the errors along with one more about not finding a good toolchain.
    			base.Exit()
    		}
    
    		for _, q := range queries {
    			unresolved := q.candidates[:0]
    
    			for _, cs := range q.candidates {
    				if cs.err != nil {
    					reportError(q, cs.err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/link/internal/ld/lib.go

    		out, err := exec.Command(cc[0], cc[1:]...).CombinedOutput()
    		if err != nil {
    			Exitf("%s: finding dsymutil failed: %v\n%s", os.Args[0], err, out)
    		}
    		dsymutilCmd := strings.TrimSuffix(string(out), "\n")
    
    		cc[len(cc)-1] = "strip"
    		out, err = exec.Command(cc[0], cc[1:]...).CombinedOutput()
    		if err != nil {
    			Exitf("%s: finding strip failed: %v\n%s", os.Args[0], err, out)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            // Updated version no longer depends on project
            def updated = mavenRepo.module('org', 'direct', '1.1').publish()
    
            // Chain of deps to make sure upgrade happens after substituting and finding deps
            def b = mavenRepo.module('org', 'b', '1.0').dependsOn(updated).publish()
            mavenRepo.module('org', 'a', '1.0').dependsOn(b).publish()
    
            mavenRepo.module('org', 'lib', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    	// d2 on the stack until then means it will not match d3 to frame 3.
    	// This is okay: if we're running d2, then all the defers after d2 have
    	// completed and their corresponding frames are dead. Not finding d3
    	// for frame 3 means we'll set frame 3's continpc == 0, which is correct
    	// (frame 3 is dead). At the end of the walk the panic stack can thus
    	// contain defers (d3 in this case) for dead frames. The inversion here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    //
    // Important: locatePrologEnd is expected to work properly only with
    // optimization turned off (e.g. "-N"). If optimization is enabled
    // we can't be assured of finding all input arguments spilled in the
    // entry block prolog.
    func locatePrologEnd(f *Func, needCloCtx bool) (ID, *Value) {
    
    	// returns true if this instruction looks like it moves an ABI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			},
    			expected: []string{"node2"},
    		},
    		{
    			// pickOneNodeForPreemption adjusts pod priorities when finding the sum of the victims. This
    			// test ensures that the logic works correctly.
    			name:           "sum of adjusted priorities is considered",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top