Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for findMin (0.12 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. docs/changelogs/changelog_3x.md

     *  New: Add multiple path segments using a single string in `HttpUrl.Builder`.
     *  New: Support SHA-256 pins in certificate pinner.
    
    
    ## Version 3.1.2
    
    _2016-02-10_
    
     *  Fix: Don’t crash when finding the trust manager on Robolectric. We attempted
        to detect the host platform and got confused because Robolectric looks like
        Android but isn’t!
     *  Fix: Change `CertificatePinner` to skip sanitizing the certificate chain
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/ssa/prove.go

    // The second comparison i >= len(a) is clearly redundant because if the
    // else branch of the first comparison is executed, we already know that i < len(a).
    // The code for the second panic can be removed.
    //
    // prove works by finding contradictions and trimming branches whose
    // conditions are unsatisfiable given the branches leading up to them.
    // It tracks a "fact table" of branch conditions. For each branching
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:finding_out_more_about_your_project]]
    == Finding out more about your project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    It is not meant, however, to prevent you from including _vulnerable_ dependencies.
    
    Finding the right balance between security and convenience is hard but Gradle will try to let you choose the "right level" for you.
    --
    
    Dependency verification consists of two different and complementary operations:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. 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)
Back to top