Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 258 for throws (0.1 sec)

  1. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

            throw UnsupportedOperationException("Should not be called")
        }
    
        override fun visit(visitor: ResolvedArtifactSet.Visitor) {
            throw UnsupportedOperationException("Should not be called")
        }
    
        override fun visitTransformSources(visitor: ResolvedArtifactSet.TransformSourceVisitor) {
            throw UnsupportedOperationException("Should not be called")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

        }
    
        protected ScopeState getScopeState() {
            if (values.isEmpty()) {
                throw new OutOfScopeException("Cannot access session scope outside of a scoping block");
            }
            return values.get(0);
        }
    
        public void exit() {
            if (values.isEmpty()) {
                throw new IllegalStateException();
            }
            values.remove(0);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/BeanPropertyExtensions.kt

                    throw passThrough
                } catch (passThrough: GradleException) {
                    throw passThrough
                } catch (e: InvocationTargetException) {
                    // unwrap ITEs as they are not useful to users
                    throw GradleException("Could not load the value of $trace.", e.cause)
                } catch (e: Exception) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileAccess.groovy

                    ((Supplier<Object>) () -> {
                        try {
                            new FileInputStream(new File("$filePath")).close();
                        } catch (IOException e) {
                            throw new RuntimeException(e);
                        }
                        return null;
                    }).get()"""
                }
    
                @Override
                String getGroovyExpression() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemReporter.java

            if (exception == null) {
                throw new IllegalStateException("Exception must be non-null");
            } else {
                throw throwError(exception, problem);
            }
        }
    
        private RuntimeException throwError(RuntimeException exception, Problem problem) {
            report(problem);
            problems.put(exception, problem);
            throw exception;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        If log_if_failed is true, the NumericVerify op calculates statistics on
        differences between float and quantized activations, output
        logs, set differences to the output tensors, and throws an error if errors
        above tolerance exist. If log_if_failed = false, then it doesn't care about
        errors.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[QI8, QUI8, QI16, F16, TFL_Quint8]>:$input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

        @Inject
        protected ObjectFactory getObjectFactory() {
            throw new UnsupportedOperationException();
        }
    
        @Inject
        protected VersionSelectorScheme getVersionSelectorScheme() {
            throw new UnsupportedOperationException();
        }
    
        @Inject
        protected VersionComparator getVersionComparator() {
            throw new UnsupportedOperationException();
        }
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. build-logic/publishing/src/main/kotlin/gradlebuild.publish-defaults.gradle.kts

                if (artifactoryUrl.isEmpty()) {
                    throw GradleException("artifactoryUrl is not set!")
                }
                if (artifactoryUserName.isNullOrEmpty()) {
                    throw GradleException("artifactoryUserName is not set!")
                }
                if (artifactoryUserPassword.isNullOrEmpty()) {
                    throw GradleException("artifactoryUserPassword is not set!")
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:58 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/transfer/FileSizeFormat.java

        public void formatProgress(StringBuilder builder, long progressedSize, long size) {
            if (progressedSize < 0L) {
                throw new IllegalArgumentException("progressed file size cannot be negative: " + size);
            }
            if (size >= 0 && progressedSize > size) {
                throw new IllegalArgumentException(
                        "progressed file size cannot be greater than size: " + progressedSize + " > " + size);
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

                // with the delegate
                if (targetMetadata.hasProperty(null, propertyName) == null) {
                    if (propertyName == "class") {
                        return javaClass
                    }
                    throw MissingPropertyException(propertyName)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top