Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 342 for isolating (0.12 sec)

  1. plugin/pkg/auth/authorizer/node/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-auth-node-isolation-approvers
    reviewers:
      - sig-auth-node-isolation-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 170 bytes
    - Viewed (0)
  2. plugin/pkg/admission/noderestriction/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-auth-node-isolation-approvers
    reviewers:
      - sig-auth-node-isolation-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 170 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    === Step 3. Change the isolation mode
    
    The isolation mode controls how strongly Gradle will isolate items of work from each other and the rest of the Gradle runtime.
    
    There are three methods on `WorkerExecutor` that control this:
    
    1. `noIsolation()`
    2. `classLoaderIsolation()`
    3. `processIsolation()`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/DefaultIsolatedProjectEvaluationListenerProvider.kt

    import org.gradle.internal.extensions.core.popSingletonProperty
    import org.gradle.internal.extensions.core.setSingletonProperty
    import org.gradle.internal.cc.impl.isolation.IsolatedActionDeserializer
    import org.gradle.internal.cc.impl.isolation.IsolatedActionSerializer
    import org.gradle.internal.cc.impl.isolation.SerializedIsolatedActionGraph
    import org.gradle.internal.serialize.graph.IsolateOwner
    import org.gradle.internal.cc.base.serialize.IsolateOwners
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorServicesIntegrationTest.groovy

    class WorkerExecutorServicesIntegrationTest extends AbstractWorkerExecutorIntegrationTest {
        def "workers cannot inject internal services using #isolationMode isolation"() {
            fixture.workActionThatCreatesFiles.constructorArgs = "org.gradle.api.internal.file.FileOperations fileOperations"
            fixture.withWorkActionClassInBuildSrc()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. src/database/sql/ctxutil.go

    		dopts := driver.TxOptions{}
    		if opts != nil {
    			dopts.Isolation = driver.IsolationLevel(opts.Isolation)
    			dopts.ReadOnly = opts.ReadOnly
    		}
    		return ciCtx.BeginTx(ctx, dopts)
    	}
    
    	if opts != nil {
    		// Check the transaction level. If the transaction level is non-default
    		// then return an error here as the BeginTx driver value is not supported.
    		if opts.Isolation != LevelDefault {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 02 12:57:37 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/workerApi/md5ClassloaderIsolation/groovy/settings.gradle

    rootProject.name = 'classloader-isolation'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/workerApi/md5NoIsolation/groovy/settings.gradle

    rootProject.name = 'no-isolation'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 35 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/groovy/settings.gradle

    rootProject.name = 'process-isolation'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/workerApi/noIsolation/kotlin/settings.gradle.kts

    rootProject.name = "no-isolation"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
Back to top