Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 295 for suspendG (0.26 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaDebugOptions.java

                && Objects.equals(host.getOrNull(), that.host.getOrNull())
                && port.get().equals(that.port.get())
                && server.get() == that.server.get()
                && suspend.get() == that.suspend.get();
        }
    
        @Override
        public Property<Boolean> getEnabled() {
            return enabled;
        }
    
        @Override
        @Optional
        public Property<String> getHost() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

         * of stored included build directories.
         */
        suspend fun DefaultWriteContext.writeRootBuildState(build: VintageGradleBuild) {
            writeBuildInvocationId()
            writeRootBuild(build).also {
                writeInt(0x1ecac8e)
            }
        }
    
        suspend fun DefaultReadContext.readRootBuildState(
            graph: BuildTreeWorkGraph,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/configuration/DaemonParametersTest.groovy

            5005 || "-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005"
            5006 || "-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5006"
        }
    
        def "can configure debug suspend"() {
            given:
            parameters.setDebug(true)
    
            when:
            parameters.setDebugSuspend(suspend)
    
            then:
            parameters.effectiveJvmArgs.contains(debugArgument)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

            }
        }
    
        private
        suspend fun WriteContext.writeRequiredServices(task: TaskInternal) {
            writeCollection(task.requiredServices.searchServices())
        }
    
        private
        suspend fun ReadContext.readRequiredServices(task: TaskInternal) {
            readCollection {
                task.usesService(readNonNull())
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/PatternSetCodec.kt

        override suspend fun WriteContext.encode(value: PatternSet) {
            writePatternSet(value)
        }
    
        override suspend fun ReadContext.decode() =
            patternSetFactory.create()!!.apply {
                readPatternSet(this)
            }
    }
    
    
    object IntersectionPatternSetCodec : Codec<IntersectionPatternSet> {
    
        override suspend fun WriteContext.encode(value: IntersectionPatternSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/suspendFunctionCall.kt

    suspend fun test() {
        <expr>call(1, "foo")</expr>
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 103 bytes
    - Viewed (0)
  7. src/runtime/os_windows.go

    	// Serialize thread suspension. SuspendThread is asynchronous,
    	// so it's otherwise possible for two threads to suspend each
    	// other and deadlock. We must hold this lock until after
    	// GetThreadContext, since that blocks until the thread is
    	// actually suspended.
    	lock(&suspendLock)
    
    	// Suspend the thread.
    	if int32(stdcall1(_SuspendThread, thread)) == -1 {
    		unlock(&suspendLock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/AbstractTransformStepNodeCodec.kt

        override suspend fun WriteContext.encode(value: T) {
            encodePreservingSharedIdentityOf(value) { doEncode(value) }
        }
    
        override suspend fun ReadContext.decode(): T =
            decodePreservingSharedIdentity { doDecode() }
    
        protected
        abstract suspend fun WriteContext.doEncode(value: T)
    
        protected
        abstract suspend fun ReadContext.doDecode(): T
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/metadata/ProjectMetadataController.kt

            }
        }
    
        private
        suspend fun WriteContext.writeConfigurations(candidates: LocalComponentGraphResolveState.LocalComponentGraphSelectionCandidates) {
            writeCollection(candidates.allSelectableVariants) {
                writeConfiguration(it)
            }
        }
    
        private
        suspend fun WriteContext.writeConfiguration(configuration: VariantGraphResolveState) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Codec.kt

    
    /**
     * Binary encoding for type [T].
     */
    interface Codec<T> : EncodingProvider<T>, DecodingProvider<T>
    
    
    interface EncodingProvider<T> {
        suspend fun WriteContext.encode(value: T)
    }
    
    
    interface DecodingProvider<T> {
        suspend fun ReadContext.decode(): T?
    }
    
    
    interface WriteContext : IsolateContext, MutableIsolateContext, Encoder {
    
        val tracer: Tracer?
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top