Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,773 for compared (0.31 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/cpp_testing.adoc

    Testing C++ projects in Gradle is fairly limited when compared to <<java_testing.adoc#java_testing,Testing in Java & JVM projects>>. In this chapter, we explain the ways to control how tests are run (<<#sec:cpp_test_execution,Test execution>>).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/VersionNumber.java

     *
     * <p>Note that this class considers "1.2.3-something" less than "1.2.3". Qualifiers are compared lexicographically ("1.2.3-alpha" &lt; "1.2.3-beta") and case-insensitive ("1.2.3-alpha" &lt;
     * "1.2.3.RELEASE").
     *
     * <p>To check if a version number is at least "1.2.3", disregarding a potential qualifier like "beta", use {@code version.getBaseVersion().compareTo(VersionNumber.parse("1.2.3")) >= 0}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/internal/gover/gover.go

    // compared using Compare.
    // If x and y compare equal, Max returns x.
    func Max(x, y string) string {
    	if Compare(x, y) < 0 {
    		return y
    	}
    	return x
    }
    
    // IsLang reports whether v denotes the overall Go language version
    // and not a specific release. Starting with the Go 1.21 release, "1.x" denotes
    // the overall language version; the first release is "1.x.0".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/equality.go

    			break
    		}
    	}
    
    	if allTimesUnchanged {
    		return newObj, nil
    	}
    
    	// This condition ensures the managed fields are always compared first. If
    	//	this check fails, the if statement will short circuit. If the check
    	// 	succeeds the slow path is taken which compares entire objects.
    	if !equalities.DeepEqualWithNilDifferentFromEmpty(oldManagedFields, newManagedFields) {
    		return newObj, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 28 14:56:34 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  5. src/mdo/java/InputLocation.java

         *
         * @param target the target location
         * @param source the source location
         * @param sourceDominant the boolean indicating of {@code source} is dominant compared to {@code target}
         * @return the merged location
         */
        public static InputLocation merge(InputLocation target, InputLocation source, boolean sourceDominant) {
            if (source == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/net/mptcpsock_linux.go

    	//   - AF_INET:  EOPNOTSUPP
    	//   - AF_INET6: ENOPROTOOPT
    	return err == syscall.EOPNOTSUPP || err == syscall.ENOPROTOOPT
    }
    
    // isUsingMPTCPProto reports whether the socket protocol is MPTCP.
    //
    // Compared to hasFallenBack method, here only the socket protocol being used is
    // checked: it can be MPTCP but it doesn't mean MPTCP is used on the wire, maybe
    // a fallback to TCP has been done.
    func isUsingMPTCPProto(fd *netFD) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 18:48:34 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. pkg/apis/apps/v1/defaults.go

    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/utils/ptr"
    )
    
    func addDefaultingFuncs(scheme *runtime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    // SetDefaults_Deployment sets additional defaults compared to its counterpart
    // in extensions. These addons are:
    // - MaxUnavailable during rolling update set to 25% (1 in extensions)
    // - MaxSurge value during rolling update set to 25% (1 in extensions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

    import java.util.function.Supplier;
    
    /**
     * Provides information about a set of classes, e.g. a JAR or a whole classpath.
     * Contains a hash for every class contained in the set, so it can determine which classes have changed compared to another set.
     * Contains a reverse dependency view, so we can determine which classes in this set are affected by a change to a class inside or outside this set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. src/unique/handle.go

    	"internal/concurrent"
    	"internal/weak"
    	"runtime"
    	"sync"
    	_ "unsafe"
    )
    
    // Handle is a globally unique identity for some value of type T.
    //
    // Two handles compare equal exactly if the two values used to create the handles
    // would have also compared equal. The comparison of two handles is trivial and
    // typically much more efficient than comparing the values used to create them.
    type Handle[T comparable] struct {
    	value *T
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

         */
        private String changefreq;
    
        /**
         * The priority of this URL relative to other URLs on your site. Valid
         * values range from 0.0 to 1.0. This value does not affect how your pages
         * are compared to pages on other sites—it only lets the search engines know
         * which pages you deem most important for the crawlers.
         *
         * The default priority of a page is 0.5.
         *
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top