Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 251 for suspendG (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/apis/batch/fuzzer/fuzzer.go

    			// need to fuzz the nil value.
    			j.Suspend = pointer.Bool(c.RandBool())
    			podReplacementPolicy := batch.TerminatingOrFailed
    			if c.RandBool() {
    				podReplacementPolicy = batch.Failed
    			}
    			j.PodReplacementPolicy = &podReplacementPolicy
    			if c.RandBool() {
    				c.Fuzz(j.ManagedBy)
    			}
    		},
    		func(sj *batch.CronJobSpec, c fuzz.Continue) {
    			c.FuzzNoCustom(sj)
    			suspend := c.RandBool()
    			sj.Suspend = &suspend
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. pkg/registry/batch/job/strategy.go

    		// Updating node affinity, node selector and tolerations is allowed
    		// only for suspended jobs that never started before.
    		suspended := oldJob.Spec.Suspend != nil && *oldJob.Spec.Suspend
    		notStarted := oldJob.Status.StartTime == nil
    		opts.AllowMutableSchedulingDirectives = suspended && notStarted
    
    		// Validation should not fail jobs if they don't have the new labels.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top