Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 399 for unavoidable (0.19 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractor.java

                throw new CrawlerSystemException("MimeTypeHelper is unavailable.");
            }
            return mimeTypeHelper;
        }
    
        protected ExtractorFactory getExtractorFactory() {
            final ExtractorFactory extractorFactory = crawlerContainer.getComponent("extractorFactory");
            if (extractorFactory == null) {
                throw new CrawlerSystemException("ExtractorFactory is unavailable.");
            }
            return extractorFactory;
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. pkg/volume/util/device_util_linux.go

    				if err != nil {
    					klog.Infof("Failed to process connection %s, assuming this connection is unavailable: %s", dirName, err)
    					continue
    				}
    
    				portPath := connectionPath + "/port"
    				port, err := io.ReadFile(portPath)
    				if err != nil {
    					klog.Infof("Failed to process connection %s, assuming this connection is unavailable: %s", dirName, err)
    					continue
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  3. releasenotes/notes/cni-rolling-max-available.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 10 20:56:27 UTC 2023
    - 162 bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/UrlValidator.groovy

                    Thread.sleep(500)
                    Assert.fail(String.format("Expected url '%s' to be unavailable instead we got:\n%s", theUrl, content));
                } catch (SocketException ex) {
                }
            }
        }
    
        // Throws IOException if URL is unavailable
        private static assertUrlIsAvailable(URL url) {
            assert url.text != null
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. pkg/controller/daemon/update.go

    	// * Expect manage loop will create new pods
    	// * Expect manage loop will handle failed pods
    	// * Deleted pods do not count as unavailable so that updates make progress when nodes are down
    	// Invariants:
    	// * The number of new pods that are unavailable must be less than maxUnavailable
    	// * A node with an available old pod is a candidate for deletion if it does not violate other invariants
    	//
    	if maxSurge == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

        }
    
        def "is unavailable when language is not known"() {
            given:
            platform.displayName >> '<unknown>'
    
            expect:
            def platformToolChain = toolChain.select(NativeLanguage.SWIFT, platform)
            !platformToolChain.available
            getMessage(platformToolChain) == "Don't know how to compile language Swift."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_sumdb_proxy.txt

    env GOPROXY=$proxy/sumdb-503
    ! go get rsc.io/fortune@v1.0.0
    stderr '503 Service Unavailable'
    rm $GOPATH/pkg/mod/cache/download/sumdb
    rm go.sum
    
    # the error from the last attempted proxy should be returned.
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb
    env GOPROXY=$proxy/sumdb-404,$proxy/sumdb-503
    ! go get rsc.io/fortune@v1.0.0
    stderr '503 Service Unavailable'
    rm $GOPATH/pkg/mod/cache/download/sumdb
    rm go.sum
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPathTest.groovy

            when:
            def result = registry.locate(ToolType.C_COMPILER, "cc")
    
            then:
            result.available
            result.tool == file
        }
    
        def "executable is unavailable when not found in path"() {
            def visitor = Mock(DiagnosticsVisitor)
            def dir1 = tmpDir.createDir("some-dir")
            def dir2 = tmpDir.createDir("some-dir-2")
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/compilerapi/CompilerApiData.java

        public boolean isAvailable() {
            return isAvailable;
        }
    
        public boolean isSupportsConstantsMapping() {
            return supportsConstantsMapping;
        }
    
        public static CompilerApiData unavailable() {
            return new CompilerApiData(false, false, Collections.emptyMap(), ConstantToDependentsMapping.empty());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 24 12:57:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. README.md

    **Libtensorflow Windows GPU** | Status Temporarily Unavailable                             ...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top