Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 399 for unavoidable (0.28 sec)

  1. istioctl/pkg/writer/ztunnel/configdump/testdata/secretsummary.txt

    spiffe://cluster.local/ns/istio-system/sa/another-sa     NA       Unavailable      false          NA                                   NA                       NA
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 16:38:16 UTC 2024
    - 1022 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/well_known_taints.go

    	TaintNodeDiskPressure = "node.kubernetes.io/disk-pressure"
    
    	// TaintNodeNetworkUnavailable will be added when node's network is unavailable
    	// and removed when network becomes ready.
    	TaintNodeNetworkUnavailable = "node.kubernetes.io/network-unavailable"
    
    	// TaintNodePIDPressure will be added when node has pid pressure
    	// and removed when node has enough pid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 16:23:21 UTC 2022
    - 2K bytes
    - Viewed (0)
  3. cmd/healthcheck-handler.go

    	"github.com/minio/minio/internal/kms"
    )
    
    const unavailable = "offline"
    
    // ClusterCheckHandler returns if the server is ready for requests.
    func ClusterCheckHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "ClusterCheckHandler")
    
    	objLayer := newObjectLayerFn()
    	if objLayer == nil {
    		w.Header().Set(xhttp.MinIOServerStatus, unavailable)
    		writeResponse(w, http.StatusServiceUnavailable, nil, mimeNone)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. pkg/util/grpc/codes.go

    	"ABORTED":             codes.Aborted,
    	"OUT_OF_RANGE":        codes.OutOfRange,
    	"UNIMPLEMENTED":       codes.Unimplemented,
    	"INTERNAL":            codes.Internal,
    	"UNAVAILABLE":         codes.Unavailable,
    	"DATA_LOSS":           codes.DataLoss,
    	"UNAUTHENTICATED":     codes.Unauthenticated,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 06 16:50:02 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/reporting/src/main/resources/org/gradle/api/reporting/internal/style.css

    .unavailable {
        color: #808080;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 36 bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/toolchain/ToolChainAvailabilityTest.groovy

    import spock.lang.Specification
    
    class ToolChainAvailabilityTest extends Specification {
        def "visits message when unavailable"() {
            def visitor = Mock(DiagnosticsVisitor)
    
            given:
            def availability = new ToolChainAvailability()
            availability.unavailable("some reason")
    
            when:
            availability.explain(visitor)
    
            then:
            1 * visitor.node("some reason")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/OsMemoryStatusAspect.java

             */
            long getFree();
        }
    
        /**
         * Marker interface for unavailable memory information.
         *
         * <p>
         * This is used when a specific memory category is not available on the current platform.
         * For example, we do not track virtual memory on Linux.
         * </p>
         */
        @NonNullApi
        interface Unavailable extends OsMemoryStatusAspect {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/offline-mode.apt

      [[1]] This is obvious, but the network/internet is unavailable.
    
      [[2]] Localhost (127.0.0.1) may also be unavailable if the whole
            network stack is offline.
    
      [[3]] "Remote" repositories referenced using the file:// protocol may
            be available. However, if that file:// url references a
            file-share, as in the case of an NFS or SMB mount, that will
            be unavailable.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/UnavailablePlatformToolProviderTest.groovy

    class UnavailablePlatformToolProviderTest extends Specification {
        def "can construct with failure message"() {
            def provider = new UnavailablePlatformToolProvider(Stub(OperatingSystemInternal), new ToolChainAvailability().unavailable("don't know how to build this thing"))
    
            expect:
            def formatter = new TreeFormatter()
            provider.explain(formatter)
            formatter.toString() == "don't know how to build this thing"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/ztunnel/configdump/certificates.go

    	fmt.Fprintln(w, "CERTIFICATE NAME\tTYPE\tSTATUS\tVALID CERT\tSERIAL NUMBER\tNOT AFTER\tNOT BEFORE")
    
    	for _, secret := range secretDump {
    		if strings.Contains(secret.State, "Unavailable") {
    			secret.State = "Unavailable"
    		}
    		if len(secret.CertChain) == 0 {
    			fmt.Fprintf(w, "%v\t%v\t%v\t%v\t%v\t%v\t%v\n",
    				secret.Identity, valueOrNA(""), secret.State, false, valueOrNA(""), valueOrNA(""), valueOrNA(""))
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 16:38:16 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top