Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 399 for unavoidable (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/deprecation/deprecation.go

    		return false
    	}
    	if deprecatedMajor == currentMajor && deprecatedMinor > currentMinor {
    		return false
    	}
    	return true
    }
    
    // RemovedRelease returns the major/minor version in which the given object is unavailable (in the form "<major>.<minor>")
    // if the object implements APILifecycleRemoved() to indicate a non-zero removal version, and returns an empty string otherwise.
    func RemovedRelease(obj runtime.Object) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. src/net/http/status.go

    	case StatusUnavailableForLegalReasons:
    		return "Unavailable For Legal Reasons"
    	case StatusInternalServerError:
    		return "Internal Server Error"
    	case StatusNotImplemented:
    		return "Not Implemented"
    	case StatusBadGateway:
    		return "Bad Gateway"
    	case StatusServiceUnavailable:
    		return "Service Unavailable"
    	case StatusGatewayTimeout:
    		return "Gateway Timeout"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 23:30:35 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/DefaultNativeToolChainRegistryTest.groovy

            and:
            registry.addDefaultToolChains()
    
            then:
            registry.asList() == [configuredToolChain, defaultToolChain]
        }
    
        def "provides unavailable tool chain when no tool chain available for requested platform"() {
            unavailableToolChain("test", "nope")
            unavailableToolChain("test2", "not me")
            unavailableToolChain("test3", "not me either")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/toolchain/ToolChainAvailability.java

            return formatter.toString();
        }
    
        @Override
        public void explain(DiagnosticsVisitor visitor) {
            reason.explain(visitor);
        }
    
        public ToolChainAvailability unavailable(String unavailableMessage) {
            if (reason == null) {
                reason = new FixedMessageToolSearchResult(unavailableMessage);
            }
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util_test.cc

        os.flush();
      }
    
      std::string filepath = DumpMlirOpToFile("module", module_ref.get());
      ASSERT_NE(filepath, "(TF_DUMP_GRAPH_PREFIX not specified)");
      ASSERT_NE(filepath, "LOG(INFO)");
      ASSERT_NE(filepath, "(unavailable)");
    
      Env* env = Env::Default();
      std::string file_txt_module;
      TF_ASSERT_OK(ReadFileToString(env, filepath, &file_txt_module));
      EXPECT_EQ(file_txt_module, expected_txt_module);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 18 13:40:21 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/PropertyReportTaskIntegrationTest.groovy

            when:
            run "properties", "-q", "--property=version"
            then:
            outputContains 'version: 1.2.3'
            outputDoesNotContain 'org.gradle.api'
        }
    
        def "lists unavailable project property"() {
            when:
            run "properties", "-q", "--property=nonexistent"
            then:
            outputContains 'nonexistent: null'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 15 16:48:28 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonStartupMessageTest.groovy

            1       | 2               | 4          | ["1 busy", "2 incompatible", "4 stopped"]
        }
    
        def "starting message contains subsequent builds message given no unavailable daemons"() {
            given:
            def message = DaemonStartupMessage.generate(0, 0, 0)
    
            expect:
            message.contains(DaemonStartupMessage.STARTING_DAEMON_MESSAGE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/testdata/routes/k8s-gateway-http-route-path-prefix/configdump.json

              },
              "route": {
               "cluster": "outbound|8000||httpbin.default.svc.cluster.local",
               "timeout": "0s",
               "retry_policy": {
                "retry_on": "connect-failure,refused-stream,unavailable,cancelled,retriable-status-codes",
                "num_retries": 2,
                "retry_host_predicate": [
                 {
                  "name": "envoy.retry_host_predicates.previous_hosts",
                  "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsComponentLocator.java

    public interface WindowsComponentLocator<T> {
        /**
         * Locates a component to use.
         *
         * @param candidate The install dir to use. Can be null.
         * @return A result containing the best component, or an unavailable result that explains why the lookup failed
         */
        SearchResult<T> locateComponent(@Nullable File candidate);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/cached/CachedExternalResource.java

        ExternalResourceMetaData getExternalResourceMetaData();
    
        /**
         * Null safe shortcut for getExternalResourceMetaData().getLastModified();
         *
         * @return The external last modified, or null if unavailable.
         */
        Date getExternalLastModified();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top