Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 98 for Consistently (0.23 sec)

  1. android/guava/src/com/google/common/math/IntMath.java

        }
        int div = p / q;
        int rem = p - q * div; // equal to 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
    - 23.5K bytes
    - Viewed (0)
  2. pkg/controller/controller_utils.go

    // This cache is needed over plain old expectations to safely handle graceful
    // deletion. The desired behavior is to treat an update that sets the
    // DeletionTimestamp on an object as a delete. To do so consistently, one needs
    // to remember the expected deletes so they aren't double counted.
    // TODO: Track creates as well (#22599)
    type UIDTrackingControllerExpectations struct {
    	ControllerExpectationsInterface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    //
    //	type A struct{ X int }
    //	type B A
    //
    // the field X has two paths due to its membership of both A and B.
    // The For(obj) function always returns one of these paths, arbitrarily
    // but consistently.
    package objectpath
    
    import (
    	"fmt"
    	"go/types"
    	"strconv"
    	"strings"
    
    	"golang.org/x/tools/internal/aliases"
    	"golang.org/x/tools/internal/typesinternal"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils.go

    		if !predicate(&ownerRef) {
    			newRefs = append(newRefs, ownerRef)
    		}
    	}
    	return newRefs
    }
    
    // isClaimOwnerUpToDate returns false if the ownerRefs of the claim are not set consistently with the
    // PVC deletion policy for the StatefulSet.
    //
    // If there are stale references or unexpected controllers, this returns true in order to not touch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top