Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,002 for prefers (0.4 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/schema/group_version.go

    func (gv GroupVersion) Identifier() string {
    	return gv.String()
    }
    
    // KindForGroupVersionKinds identifies the preferred GroupVersionKind out of a list. It returns ok false
    // if none of the options match the group. It prefers a match to group and version over just group.
    // TODO: Move GroupVersion to a package under pkg/runtime, since it's used by scheme.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 30 09:08:59 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. src/runtime/mgcstack.go

    		*head = buf
    	}
    	buf.obj[buf.nobj] = p
    	buf.nobj++
    }
    
    // Remove and return a potential pointer to a stack object.
    // Returns 0 if there are no more pointers available.
    //
    // This prefers non-conservative pointers so we scan stack objects
    // precisely if there are any non-conservative pointers to them.
    func (s *stackScanState) getPtr() (p uintptr, conservative bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AvailableJavaHomes.java

            return metadata.getJavaHome().toFile().equals(Jvm.current().getJavaHome());
        }
    
        /**
         * Locates a JRE installation for the current JVM. Prefers a stand-alone JRE installation over one that is part of a JDK install.
         *
         * @return The JRE home directory, or null if not found
         */
        public static File getBestJre() {
            Jvm jvm = Jvm.current();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    This has the advantage that the published versions correspond to the ones the published artifact was tested against.
    
    Example use cases for resolved versions:
    
    * A project uses dynamic versions for dependencies but prefers exposing the resolved version for a given release to its consumers.
    * In combination with <<dependency_locking.adoc#dependency-locking,dependency locking>>, you want to publish the locked versions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. cmd/endpoint-ellipses.go

    var isValidSetSize = func(count uint64) bool {
    	return (count >= setSizes[0] && count <= setSizes[len(setSizes)-1])
    }
    
    func commonSetDriveCount(divisibleSize uint64, setCounts []uint64) (setSize uint64) {
    	// prefers setCounts to be sorted for optimal behavior.
    	if divisibleSize < setCounts[len(setCounts)-1] {
    		return divisibleSize
    	}
    
    	// Figure out largest value of total_drives_in_erasure_set which results
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    ====
    
    NOTE: Spock is a Groovy-based BDD test framework that even includes APIs for creating Stubs and Mocks.
    The Gradle team prefers Spock over other options for its expressiveness and conciseness.
    
    == Implementing automated tests
    
    This section discusses representative implementation examples for unit, integration, and functional tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParser.java

            while (reader.peek() != END_OBJECT) {
                // At this stage, 'strictly' implies 'requires'.
                String cst = reader.nextName();
                switch (cst) {
                    case "prefers":
                        preferredVersion = reader.nextString();
                        break;
                    case "requires":
                        requiredVersion = reader.nextString();
                        break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

        val writerTask = writerTask
        if (writerTask != null) {
          taskQueue.schedule(writerTask)
        }
      }
    
      /**
       * Attempts to remove a single frame from a queue and send it. This prefers to write urgent pongs
       * before less urgent messages and close frames. For example it's possible that a caller will
       * enqueue messages followed by pongs, but this sends pongs followed by messages. Pongs are always
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    This has the advantage that the published versions correspond to the ones the published artifact was tested against.
    
    Example use cases for resolved versions:
    
    * A project uses dynamic versions for dependencies but prefers exposing the resolved version for a given release to its consumers.
    * In combination with <<dependency_locking.adoc#dependency-locking,dependency locking>>, you want to publish the locked versions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    		// MOVNTSS is F3 0F 2B /r (supposedly; not in manuals).
    		// Usually inner prefixes win for display,
    		// so that F3 F2 0F 2B 11 is REP MOVNTSD
    		// and F2 F3 0F 2B 11 is REPN MOVNTSS.
    		// Libopcodes always prefers MOVNTSS regardless of prefix order.
    		if countPrefix(&inst, 0xF3) > 0 {
    			found := false
    			for i := len(inst.Prefix) - 1; i >= 0; i-- {
    				switch inst.Prefix[i] & 0xFF {
    				case 0xF3:
    					if !found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
Back to top