Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 138 for unavailability (0.26 sec)

  1. pkg/controller/deployment/rolling.go

    	// Check if we can scale down. We can scale down in the following 2 cases:
    	// * Some old replica sets have unhealthy replicas, we could safely scale down those unhealthy replicas since that won't further
    	//  increase unavailability.
    	// * New replica set has scaled up and it's replicas becomes ready, then we can scale down old replica sets in a further step.
    	//
    	// maxScaledDown := allPodsCount - minAvailable - newReplicaSetPodsUnavailable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. pkg/controller/daemon/util/daemonset_util.go

    		return 0, nil
    	}
    	return intstrutil.GetScaledValueFromIntOrPercent(r.MaxSurge, numberToSchedule, true)
    }
    
    // UnavailableCount returns 0 if unavailability is not requested, the expected
    // unavailability number to allow out of numberToSchedule if requested, or an error if
    // the unavailability percentage requested is invalid.
    func UnavailableCount(ds *apps.DaemonSet, numberToSchedule int) (int, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 11:54:59 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  3. pkg/controller/daemon/update.go

    	// event the apiserver returns 0 for both surge and unavailability)
    	if desiredNumberScheduled > 0 && maxUnavailable == 0 && maxSurge == 0 {
    		logger.Info("DaemonSet is not configured for surge or unavailability, defaulting to accepting unavailability", "daemonset", klog.KObj(ds))
    		maxUnavailable = 1
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. src/os/types_windows.go

    			// However, DEDUP reparse points remain similar in most respects to
    			// regular files: they continue to support random-access reads and writes
    			// of persistent data, and they shouldn't add unexpected latency or
    			// unavailability in the way that a network filesystem might.
    			//
    			// Go programs may use ModeIrregular to filter out unusual files (such as
    			// raw device files on Linux, POSIX FIFO special files, and so on), so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    exercise of rights under this Agreement, including but not limited to the
    risks and costs of program errors, compliance with applicable laws, damage
    to or loss of data, programs or equipment, and unavailability or interruption
    of operations.
    
       6. DISCLAIMER OF LIABILITY
    
    EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Sep 17 05:50:12 UTC 2018
    - 11.1K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    risks associated with its exercise of rights under this Agreement,
    including but not limited to the risks and costs of program errors,
    compliance with applicable laws, damage to or loss of data, programs
    or equipment, and unavailability or interruption of operations.
    
    6. DISCLAIMER OF LIABILITY
    
    EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT
    PERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/toolchain/ToolChainAvailabilityTest.groovy

            given:
            def availability = new ToolChainAvailability()
            availability.unavailable("some reason")
    
            when:
            availability.explain(visitor)
    
            then:
            1 * visitor.node("some reason")
        }
    
        def "visits message when unsupported"() {
            def visitor = Mock(DiagnosticsVisitor)
    
            given:
            def availability = new ToolChainAvailability()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MBeanOsMemoryInfoTest.groovy

        }
    
        def "getTotalPhysicalMemory fails when memory MBeans are #availability"() {
            given:
            def osMemoryInfo = createMemoryInfo(availability)
    
            when:
            osMemoryInfo.getOsSnapshot().getPhysicalMemory().getTotal()
    
            then:
            thrown UnsupportedOperationException
    
            where:
            availability << [MemoryAvailability.UNAVAILABLE, MemoryAvailability.INVALID_VALUE]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppToolChain.java

        private ToolChainAvailability getAvailability() {
            if (availability == null) {
                availability = new ToolChainAvailability();
                checkAvailable(availability);
            }
    
            return availability;
        }
    
        private void checkAvailable(ToolChainAvailability availability) {
            if (!operatingSystem.isWindows()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppToolChainTest.groovy

            when:
            def availability = new ToolChainAvailability()
            toolChain.checkAvailable(availability)
    
            then:
            !availability.available
            availability.unavailableMessage == 'Visual Studio is not available on this operating system.'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top