Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for skewY (0.04 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	podInformerSynced cache.InformerSynced
    	kubeClient        clientset.Interface
    
    	// This timestamp is to be used instead of LastProbeTime stored in Condition. We do this
    	// to avoid the problem with time skew across the cluster.
    	now func() metav1.Time
    
    	enterPartialDisruptionFunc func(nodeNum int) float32
    	enterFullDisruptionFunc    func(nodeNum int) float32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller.go

    		// See https://github.com/kubernetes/kubernetes/pull/38076 for more details
    		if changedToReady && ds.Spec.MinReadySeconds > 0 {
    			// Add a second to avoid milliseconds skew in AddAfter.
    			// See https://github.com/kubernetes/kubernetes/issues/39785#issuecomment-279959133 for more info.
    			dsc.enqueueDaemonSetAfter(ds, (time.Duration(ds.Spec.MinReadySeconds)*time.Second)+time.Second)
    		}
    		return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        public Container(T data) {}
      }
    
      public <T extends Container<String>> void testConstructor_parameterTypes()
          throws NoSuchMethodException {
        @SuppressWarnings("rawtypes") // Reflection API skew
        Constructor<Container> constructor = Container.class.getConstructor(Object.class);
        Invokable<T, ?> invokable = new TypeToken<T>(getClass()) {}.constructor(constructor);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    	assistWorkPerByte atomic.Float64
    
    	// assistBytesPerWork is 1/assistWorkPerByte.
    	//
    	// Note that because this is read and written independently
    	// from assistWorkPerByte users may notice a skew between
    	// the two values, and such a state should be safe.
    	assistBytesPerWork atomic.Float64
    
    	// fractionalUtilizationGoal is the fraction of wall clock
    	// time that should be spent in the fractional mark worker on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        public Container(T data) {}
      }
    
      public <T extends Container<String>> void testConstructor_parameterTypes()
          throws NoSuchMethodException {
        @SuppressWarnings("rawtypes") // Reflection API skew
        Constructor<Container> constructor = Container.class.getConstructor(Object.class);
        Invokable<T, ?> invokable = new TypeToken<T>(getClass()) {}.constructor(constructor);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                try {
                    VersionRange parentRange = versionParser.parseVersionRange(parent.getVersion());
                    if (!parentRange.contains(versionParser.parseVersion(version))) {
                        // version skew drop back to resolution from the repository
                        return null;
                    }
    
                    // Validate versions aren't inherited when using parent ranges the same way as when read externally.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                try {
                    VersionRange parentRange = versionParser.parseVersionRange(parent.getVersion());
                    if (!parentRange.contains(versionParser.parseVersion(version))) {
                        // version skew drop back to resolution from the repository
                        return null;
                    }
    
                    // Validate versions aren't inherited when using parent ranges the same way as when read externally.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			expectRequeueAfter:         true,
    			expectedRequeueDuration:    1*time.Hour + nextScheduleDelta,
    			expectUpdateStatus:         true,
    			jobPresentInCJActiveStatus: true,
    		},
    
    		// Tests for time skews
    		// the controller sees job is created, takes no actions
    		"this ran but done, time drifted back, F": {
    			concurrencyPolicy:       "Forbid",
    			schedule:                onTheHour,
    			deadline:                noDead,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    			}
    		}
    	}
    }
    
    /*
     * Tool building
     */
    
    // mustLinkExternal is a copy of internal/platform.MustLinkExternal,
    // duplicated here to avoid version skew in the MustLinkExternal function
    // during bootstrapping.
    func mustLinkExternal(goos, goarch string, cgoEnabled bool) bool {
    	if cgoEnabled {
    		switch goarch {
    		case "loong64", "mips", "mipsle", "mips64", "mips64le":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    	// for some point in time.
    	// The problem is that mallocs come in real time, while frees
    	// come only after a GC during concurrent sweeping. So if we would
    	// naively count them, we would get a skew toward mallocs.
    	//
    	// Hence, we delay information to get consistent snapshots as
    	// of mark termination. Allocations count toward the next mark
    	// termination's snapshot, while sweep frees count toward the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top