Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 190 for rethrow (0.72 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareBuildTreeWorkController.kt

            }
            if (executionResult != null) {
                return executionResult
            }
    
            cache.finalizeCacheEntry()
            buildRegistry.visitBuilds { build ->
                build.beforeModelReset().rethrow()
            }
            buildRegistry.visitBuilds { build ->
                build.resetModel()
            }
    
            return workGraph.withNewWorkGraph { graph ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/throw.kt

    import java.lang.Exception
    
    fun test() {
        throw <expr>Exception()</expr>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 77 bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

                try {
                    analysisSession.compilerFacility.compile(file, configuration, target, allowedErrorFilter)
                } catch (e: ProcessCanceledException) {
                    throw e
                } catch (e: Throwable) {
                    throw KaCodeCompilationException(e)
                }
            }
        }
    }
    
    public typealias KtCompilerFacilityMixIn = KaCompilerFacilityMixIn
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. 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)
  5. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/throwStmt.txt

    expression: THROW
    text: throw Exception()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 68 bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildOperationsAssertions.kt

                return this
            }
            throw AssertionError("Expected script to be compiled, but it wasn't.")
        }
    
        fun assertBuildScriptBodyRecompiled(): BuildOperationsAssertions {
            if (bodyCompileOperations.size == 1) {
                return this
            }
            if (bodyCompileOperations.isEmpty()) {
                throw AssertionError("Expected build script body to be recompiled, but it wasn't.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/mdo/reader.vm

                        throw new XMLStreamException("Expected root element '${rootTag}' but found '" + parser.getLocalName() + "'", parser.getLocation(), null);
                    } else if (parsed) {
                        // fallback, already expected a XMLStreamException due to invalid XML
                        throw new XMLStreamException("Duplicated tag: '${rootTag}'", parser.getLocation(), null);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/EncryptionService.kt

                    }
                } catch (e: EncryptionException) {
                    if (e.message != null) {
                        throw e
                    }
                    throw EncryptionException("Error loading encryption key from ${keySource.sourceDescription}", e.cause)
                } catch (e: Exception) {
                    throw EncryptionException("Error loading encryption key from ${keySource.sourceDescription}", e)
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. Jenkinsfile.s390x

        }
        throw e
    } catch (hudson.AbortException e) {
        echo "[FAILURE-003] AbortException ${e}"
        // this ambiguous condition means during a shell step, user probably aborted
        if (e.getMessage().contains('script returned exit code 143')) {
            currentBuild.result = "ABORTED"
        } else {
            currentBuild.result = "FAILURE"
        }
        throw e
    } catch (InterruptedException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/tryThrowsToFinallyInner.kt

    fun test() {
        try {
            throw Exception()
        } finally {
            <expr>9</expr>
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 95 bytes
    - Viewed (0)
Back to top