Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 379 for suspendG (0.13 sec)

  1. docs/bucket/versioning/README.md

    <VersioningConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
      <Status>Enabled</Status>
    </VersioningConfiguration>
    ```
    
    Similarly to suspend versioning set the configuration with Status set to `Suspended`.
    
    ```
    <VersioningConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
      <Status>Suspended</Status>
    </VersioningConfiguration>
    ```
    
    ## MinIO extension to Bucket Versioning
    
    ### Idempotent versions on directory objects
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/IsolatedCodecs.kt

    
    object NullValueSnapshotCodec : Codec<NullValueSnapshot> {
        override suspend fun WriteContext.encode(value: NullValueSnapshot) {
        }
    
        override suspend fun ReadContext.decode(): NullValueSnapshot {
            return NullValueSnapshot.INSTANCE
        }
    }
    
    
    object IsolatedEnumValueSnapshotCodec : Codec<IsolatedEnumValueSnapshot> {
        override suspend fun WriteContext.encode(value: IsolatedEnumValueSnapshot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/ArrayCodecs.kt

        override suspend fun ReadContext.decode() =
            readLengthPrefixedShorts(this)
    }
    
    
    object IntArrayCodec : Codec<IntArray> {
        override suspend fun WriteContext.encode(value: IntArray) =
            writeLengthPrefixedInts(this, value)
    
        override suspend fun ReadContext.decode() =
            readLengthPrefixedInts(this)
    }
    
    
    object LongArrayCodec : Codec<LongArray> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Combinators.kt

    
    fun <T> singleton(value: T): Codec<T> =
        SingletonCodec(value)
    
    
    fun <T> codec(
        encode: suspend WriteContext.(T) -> Unit,
        decode: suspend ReadContext.() -> T?
    ): Codec<T> = object : Codec<T> {
        override suspend fun WriteContext.encode(value: T) = encode(value)
        override suspend fun ReadContext.decode(): T? = decode()
    }
    
    
    inline fun <reified T> IsolateContext.ownerService() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/AttributeContainerCodecs.kt

    ) : Codec<ImmutableAttributes> {
    
        override suspend fun WriteContext.encode(value: ImmutableAttributes) {
            writeAttributes(value)
        }
    
        override suspend fun ReadContext.decode(): ImmutableAttributes =
            readAttributesUsing(attributesFactory, managedFactories).asImmutable()
    }
    
    
    private
    suspend fun WriteContext.writeAttributes(container: AttributeContainer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

     */
    class FixedValueReplacingProviderCodec(
    
        private
        val providerWithChangingValueCodec: Codec<Any?>
    
    ) {
        suspend fun WriteContext.encodeProvider(value: ProviderInternal<*>) {
            val state = value.calculateExecutionTimeValue()
            encodeValue(state)
        }
    
        suspend fun WriteContext.encodeValue(value: ValueSupplier.ExecutionTimeValue<*>) {
            val sideEffect = value.sideEffect
            when {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCodecs.kt

        override suspend fun WriteContext.encode(value: Directory) {
            writeFile(value.asFile)
        }
    
        override suspend fun ReadContext.decode(): Directory {
            return fileFactory.dir(readFile())
        }
    }
    
    
    class RegularFileCodec(private val fileFactory: FileFactory) : Codec<RegularFile> {
        override suspend fun WriteContext.encode(value: RegularFile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. pkg/apis/batch/v1/defaults_test.go

    		}
    		if *actual.Spec.Suspend != *expected.Spec.Suspend {
    			t.Errorf("%s: got different suspend than expected: %v %v", name, *actual.Spec.Suspend, *expected.Spec.Suspend)
    		}
    		if *actual.Spec.SuccessfulJobsHistoryLimit != *expected.Spec.SuccessfulJobsHistoryLimit {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. pkg/apis/batch/v1beta1/defaults_test.go

    			t.Errorf("%s: got different concurrencyPolicy than expected: %v %v", name, actual.Spec.ConcurrencyPolicy, expected.Spec.ConcurrencyPolicy)
    		}
    		if *actual.Spec.Suspend != *expected.Spec.Suspend {
    			t.Errorf("%s: got different suspend than expected: %v %v", name, *actual.Spec.Suspend, *expected.Spec.Suspend)
    		}
    		if *actual.Spec.SuccessfulJobsHistoryLimit != *expected.Spec.SuccessfulJobsHistoryLimit {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:14:37 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/JavaDebugOptionsInternal.java

            return server;
        }
    
        public void setServer(boolean server) {
            this.server = server;
        }
    
        public boolean isSuspend() {
            return suspend;
        }
    
        public void setSuspend(boolean suspend) {
            this.suspend = suspend;
        }
    
        public String getAddress(){
            String port = Integer.toString(this.port);
            return isNullOrEmpty(host) ? port : host + ":" + port;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top