Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for asError (0.19 sec)

  1. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/PropertyResourceBundleFallbackCharset.java

            protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) {
                mark(in);
                mark(out);
    
                CoderResult coderResult = decoder.decode(in, out, false);
    
                if (coderResult.isError() && utf8) {
                    reset(in);
                    reset(out);
                    // Fallback to the ISO_8859_1 decoder
                    decoder = StandardCharsets.ISO_8859_1.newDecoder();
                    utf8 = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolvedConfiguration.java

     * to both the artifacts and the meta-data of the result.
     */
    public interface ResolvedConfiguration {
        /**
         * Returns whether all dependencies were successfully retrieved or not.
         */
        boolean hasError();
    
        /**
         * Provides configuration that does not fail eagerly when some dependencies are not resolved.
         */
        LenientConfiguration getLenientConfiguration();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ShortCircuitEmptyConfigurationResolverSpec.groovy

            when:
            def results = dependencyResolver.resolveGraph(resolveContext)
    
            then:
            def resolvedConfig = results.legacyResults.resolvedConfiguration
            !resolvedConfig.hasError()
            resolvedConfig.rethrowFailure()
    
            resolvedConfig.getFiles(Specs.<Dependency> satisfyAll()).isEmpty()
            resolvedConfig.getFirstLevelModuleDependencies().isEmpty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

      result_tensors.resize(func->result_types().size() - 1);
    
      func->Execute(exec_ctx, arguments.values(), results);
      host->Await(results);
    
      for (auto& result : results) {
        EXPECT_FALSE(result->IsError());
      }
    }
    
    // Runs a BEF function that batches a function that does nothing just to measure
    // the runtime overhead. The BEF function signature is adapted from a real model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10PsiTypeProvider.kt

            preserveAnnotations: Boolean,
        ): PsiType? {
            val kotlinType = (type as KaFe10Type).fe10Type
    
            with(typeMapper.typeContext) {
                if (kotlinType.contains { it.isError() }) {
                    return null
                }
            }
    
            if (!analysisSession.useSiteModule.platform.has<JvmPlatform>()) return null
    
            val typeElement = asPsiTypeElement(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10JvmTypeMapperContext.kt

                    || typeContext.hasNothingInNonContravariantPosition(type)
                    || type.arguments.isEmpty()
                    || typeDeclaration == null
                    || ErrorUtils.isError(typeDeclaration)
    
            if (skipArguments) {
                writeAsmType(asmType)
                return
            }
    
            val nestedType = getNestedType(type)
            if (nestedType.nested.isEmpty()) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

                LiteralValueResolved -> incorrect signature
                LiteralValueResolved -> 1
                PropertyNotAssigned(UnresolvedBase)
                LiteralValueResolved -> 123
                ErrorResolution(IsError)
                ElementNotResolved(UnresolvedSignature)
                LiteralValueResolved -> test2
                PropertyNotAssigned(ValueTypeMismatch)
                LiteralValueResolved -> type mismatch
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. hack/boilerplate/boilerplate.py

    def is_generated_file(data, regexs):
        return regexs["generated"].search(data)
    
    
    def file_passes(filename, refs, regexs):
        try:
            with open(filename) as stream:
                data = stream.read()
        except OSError as exc:
            print(f"Unable to open {filename}: {exc}", file=verbose_out)
            return False
    
        # determine if the file is automatically generated
        generated = is_generated_file(data, regexs)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java

            this.why = why;
        }
    
        public String getError() {
            return error;
        }
    
        public void setError(String error) {
            this.error = error;
        }
    
        public boolean isError() {
            return error == null;
        }
    
        public String getDependencyConflictId() {
            return groupId + ":" + artifactId;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

      CHECK_EQ(results.size(), 1);
    
      func->Execute(*exec_ctx_, tfrt::GetReadyChain().GetAsyncValue(), results);
    
      host_context_->Await(results);
    
      CHECK(!results[0]->IsError()) << "Failed to run TFRT initialization function";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top