Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 92 for Consistently (0.35 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         *
         * @since 8.2
         */
        @Incubating
        boolean isCanBeDeclared();
    
        /**
         * Tells that this configuration, when resolved, should resolve versions consistently
         * from the resolution result of another resolvable configuration. For example, it's
         * expected that the versions of the runtime classpath are the same as the versions
         * from the compile classpath.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util.go

    		// when the tab is closed). Most pods don't have ability (or code) to actually persist cookies, and expiration
    		// is better handled in the cookie content (and consistently in the header value - which doesn't have
    		// persistence semantics).
    		return &statefulsession.StatefulSession{
    			SessionState: &core.TypedExtensionConfig{
    				Name: "envoy.http.stateful_session.cookie",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. pkg/kubelet/nodestatus/setters.go

    			// provider. Adding this annotation in all cases ensures that while
    			// Addresses flap between the competing controllers, they at least flap
    			// consistently.
    			//
    			// We do not add the annotation in the case where there is no cloud
    			// controller at all, as we don't expect to migrate these clusters to use an
    			// external CCM.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. src/cmd/doc/pkg.go

    		// which will print the comments from the AST,
    		// not field.Doc which is from go/doc.
    		// The two are similar but not identical;
    		// for example, field.Doc does not include directives.
    		// In order to consistently print field.Doc,
    		// we replace the comment in the AST with field.Doc.
    		// That will cause go/format to print what we want.
    		// See issue #56592.
    		if field.Doc != nil {
    			doc := field.Doc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    We also recommend to update Checkstyle to version 9.3 or later.
    
    ==== Missing files specified with relative paths when running Checkstyle
    
    Gradle 7.5 consistently sets the current working directory for the Checkstyle task to `$<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>/workers`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    // Package zip provides functions for creating and extracting module zip files.
    //
    // Module zip files have several restrictions listed below. These are necessary
    // to ensure that module zip files can be extracted consistently on supported
    // platforms and file systems.
    //
    // • All file paths within a zip file must start with "<module>@<version>/",
    // where "<module>" is the module path and "<version>" is the version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  7. guava/src/com/google/common/math/LongMath.java

        long div = p / q; // throws if q == 0
        long rem = p - q * div; // equals p % q
    
        if (rem == 0) {
          return div;
        }
    
        /*
         * Normal Java division rounds towards 0, consistently with RoundingMode.DOWN. We just have to
         * deal with the cases where rounding towards 0 is wrong, which typically depends on the sign of
         * p / q.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    For instance, instead of users needing to know and use the underlying `Configuration` name to add dependencies, a custom `dependencies` block lets the plugin pick a meaningful name that
    can be used consistently.
    
    === Adding a custom `dependencies` block
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/math/LongMath.java

        long div = p / q; // throws if q == 0
        long rem = p - q * div; // equals p % q
    
        if (rem == 0) {
          return div;
        }
    
        /*
         * Normal Java division rounds towards 0, consistently with RoundingMode.DOWN. We just have to
         * deal with the cases where rounding towards 0 is wrong, which typically depends on the sign of
         * p / q.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  10. src/strings/strings.go

    	start := -1 // valid span start if >= 0
    	for end, rune := range s {
    		if f(rune) {
    			if start >= 0 {
    				spans = append(spans, span{start, end})
    				// Set start to a negative value.
    				// Note: using -1 here consistently and reproducibly
    				// slows down this code by a several percent on amd64.
    				start = ^start
    			}
    		} else {
    			if start < 0 {
    				start = end
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top