Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for findMin (0.37 sec)

  1. 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)
  2. tests/query_test.go

    	if len(results2) != 0 {
    		t.Errorf("Search all records with inline map containing null value finding 0 records")
    	}
    
    	DB.Find(&results2, map[string]interface{}{"name": users[0].Name, "company_id": nil})
    	if len(results2) != 1 {
    		t.Errorf("Search all records with inline map containing null value finding 1 record")
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K 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/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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/c/c_api_test.cc

        ASSERT_GE(op_list.op_size(), 1);
        typedef tensorflow::protobuf::RepeatedPtrField<tensorflow::OpDef> OpDefs;
        const OpDefs& ops = op_list.op();
        bool found = std::find_if(ops.begin(), ops.end(),
                                  [](const tensorflow::OpDef& op_def) {
                                    return op_def.name() == "TestCApi";
                                  }) != ops.end();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  10. src/testing/testing.go

    // supported platforms, 'go test' compiles the test executable with fuzzing
    // coverage instrumentation. The fuzzing engine uses that instrumentation to
    // find and cache inputs that expand coverage, increasing the likelihood of
    // finding bugs. If the fuzz target fails for a given input, the fuzzing engine
    // writes the inputs that caused the failure to a file in the directory
    // testdata/fuzz/<Name> within the package directory. This file later serves as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top