Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 649 for Sall (0.03 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/InterceptScope.java

     */
    public abstract class InterceptScope {
    
        private enum CallType {
            METHOD("call method"),
            GET_PROPERTY("get property"),
            SET_PROPERTY("set property"),
            CONSTRUCTOR("call constructor");
    
            final String descriptorStringPrefix;
    
            CallType(String descriptorStringPrefix) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Combinators.kt

        fun WriteContext.encodeLoop(coroutineContext: CoroutineContext) {
            do {
                val call = encodeCall!!
                suspend {
                    codec.run {
                        encode(call.value)
                    }
                }.startCoroutine(
                    Continuation(coroutineContext) {
                        when (val k = call.k) {
                            null -> {
                                encodeCall = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/EntryPoint.java

     * by subclasses as they define our entry point behaviour, but they are protected to enable
     * testing as it's difficult to test something that will call System.exit().
     */
    public abstract class EntryPoint {
        private final PrintStream originalStdErr = System.err;
    
        /**
         * Unless the createCompleter() method is overridden, the JVM will exit before returning from this method.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    If more than one init script is found, they will all be executed in the order specified above.
    
    Scripts in a given directory are executed in alphabetical order.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingNotSupportedVirtualFileSystem.java

                LOGGER.warn("Watching the file system is not supported.");
            }
            updateRootUnderLock(vfsRoot -> buildOperationRunner.call(new CallableBuildOperation<SnapshotHierarchy>() {
                @Override
                public SnapshotHierarchy call(BuildOperationContext context) {
                    context.setResult(BuildStartedFileSystemWatchingBuildOperationType.Result.WATCHING_DISABLED);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:41:07 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JpmsConfiguration.java

            "--add-opens=java.base/java.lang=ALL-UNNAMED",
            "--add-opens=java.base/java.lang.invoke=ALL-UNNAMED",
            "--add-opens=java.base/java.util=ALL-UNNAMED",
            "--add-opens=java.prefs/java.util.prefs=ALL-UNNAMED", // required by PreferenceCleaningGroovySystemLoader
            "--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED", // Required by JdkTools and JdkJavaCompiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsTest.kt

        @Test
        fun `sets progress display name on store`() {
            // given:
            val buildOperationRunner = mock<BuildOperationRunner> {
                on { call<Unit>(any()) } doReturn Unit
            }
            val stateFile = testDirectoryProvider.file("stateFile")
    
            // when:
            buildOperationRunner.withStoreOperation("key") {
                StoreResult(stateFile, null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessor.java

            return buildOperationRunner.call(new DownloadOperation<>(location, revalidate, action));
        }
    
        @Override
        @Nullable
        public ExternalResourceMetaData getMetaData(ExternalResourceName location, boolean revalidate) {
            return buildOperationRunner.call(new MetadataOperation(location, revalidate));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/StreamBackedCodecTest.groovy

            def encoder = new OutputStreamBackedEncoder(outputStream)
            closure.call(encoder)
        }
    
        @Override
        void decodeFrom(InputStream inputStream, Closure<Decoder> closure) {
            def decoder = new InputStreamBackedDecoder(inputStream)
            closure.call(decoder)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/InputTrackingStateTest.kt

            state.disableForCurrentThread() // <1>
            state.disableForCurrentThread() // <2>
    
            state.restoreForCurrentThread() // Revert call at <2>, restore to "disabled" state set by call at <1>
            assertFalse(state.isEnabledForCurrentThread())
    
            state.restoreForCurrentThread() // Revert call at <1>, restore to "enabled" state
            assertTrue(state.isEnabledForCurrentThread())
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top