Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 125 for Unshare (0.27 sec)

  1. pkg/volume/util/util_test.go

    		},
    		{
    			goos:      "windows",
    			path:      `C:\foo`,
    			isUNCPath: false,
    		},
    		{
    			goos:      "windows",
    			path:      `\\server\share\foo`,
    			isUNCPath: true,
    		},
    		{
    			goos:      "windows",
    			path:      `\\?\server\share`,
    			isUNCPath: true,
    		},
    		{
    			goos:      "windows",
    			path:      `\\?\c:\`,
    			isUNCPath: true,
    		},
    		{
    			goos:      "windows",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/generators/go122-create-syscall-reuse-thread-id.go

    // gets confused when trying to advance events on the new thread.
    // The now-dead thread which exited on a GoDestroySyscall still has
    // its P associated and this transfers to the newly-live thread
    // in the parser's state because they share a thread ID.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedArtifactsGraphVisitor.java

            ComponentGraphResolveState component = toNode.getOwner().getResolveState();
            VariantGraphResolveState variant = toNode.getResolveState();
    
            // Do not share an ArtifactSet if the artifacts are modified by the dependency.
            if (!dependency.getDependencyMetadata().getArtifacts().isEmpty() ||
                !dependency.getAttributes().isEmpty() ||
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

     * test data.
     *
     * [AbstractSessionInvalidationTest] is a base class for invalidation tests of `KaSession` and `LLFirSession`, which share the test
     * data but not necessarily the result data (see also [resultFileSuffix]).
     */
    abstract class AbstractSessionInvalidationTest<SESSION> : AbstractAnalysisApiBasedTest() {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/crypto/tls/bogo_config.json

            "KyberNotEnabledByDefaultInClients": "crypto/tls intentionally enables it",
            "JustConfiguringKyberWorks": "we always send a X25519 key share with Kyber",
            "KyberKeyShareIncludedSecond": "we always send the Kyber key share first",
            "KyberKeyShareIncludedThird": "we always send the Kyber key share first",
            "SkipNewSessionTicket": "TODO confusing? maybe bug",
            "SendUserCanceledAlerts*": "TODO may be a real bug?",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesMultiTargetIntegrationTest.groovy

            result.assertTaskExecuted(":test")
            result.assertTaskExecuted(":testOtherJdk")
        }
    
        // currently not supported, namespacing issues
        def "targets in two different test suites may not share names"() {
            setupBasicTestingProject()
            buildFile << """
                testing {
                    suites {
                        test {
                            useJUnit()
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. pkg/kube/kclient/client.go

    // Internally, this uses a shared informer, so calling this multiple times will share the same internals.
    func New[T controllers.ComparableObject](c kube.Client) Client[T] {
    	return NewFiltered[T](c, Filter{})
    }
    
    // NewFiltered returns a Client with some filter applied.
    // Internally, this uses a shared informer, so calling this multiple times will share the same internals. This is keyed on
    // unique {Type,LabelSelector,FieldSelector}.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. src/os/os_windows_test.go

    		t.Fatal(err)
    	}
    
    	// Per https://learn.microsoft.com/en-us/windows/win32/api/lmshare/ns-lmshare-share_info_2:
    	//
    	// “[The shi2_permissions field] indicates the shared resource's permissions
    	// for servers running with share-level security. A server running user-level
    	// security ignores this member.
    	// …
    	// Note that Windows does not support share-level security.”
    	//
    	// So it shouldn't matter what permissions we set here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    12 actionable tasks: 3 from cache, 9 up-to-date
    ----
    
    Once the local directory has been repopulated, the next execution will mark tasks as `UP-TO-DATE` and not `FROM-CACHE`.
    
    The build cache allows you to share and reuse unchanged build and test outputs across teams.
    This speeds up local and CI builds since cycles are not wasted re-building binaries unaffected by new code changes.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/flow-services/src/integTest/groovy/org/gradle/internal/flow/services/FlowScopeIntegrationTest.groovy

            value = IntegTestPreconditions.IsConfigCached,
            reason = "Isolation provided by Configuration Cache serialization"
        )
        def 'flow actions are isolated from each other'() {
            given: 'flow actions that share a bean'
            buildFile '''
                import org.gradle.api.flow.*
                import org.gradle.api.services.*
                import java.util.concurrent.atomic.AtomicInteger
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top