Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 218 for Unshare (0.15 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. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategySpec.groovy

            then: //user rules follow:
            1 * substitutionAction.execute(details)
            0 * details._
        }
    
        def "copied instance does not share state"() {
            when:
            def copy = strategy.copy()
    
            then:
            1 * cachePolicy.copy() >> Mock(DefaultCachePolicy)
            !copy.is(strategy)
            !copy.cachePolicy.is(strategy.cachePolicy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/OkHttpClientTest.kt

        assertThat(a.dispatcher).isNotNull()
        assertThat(a.connectionPool).isNotNull()
        assertThat(a.sslSocketFactory).isNotNull()
        assertThat(a.x509TrustManager).isNotNull()
    
        // Multiple clients share the instances.
        val b = client.newBuilder().build()
        assertThat(b.dispatcher).isSameAs(a.dispatcher)
        assertThat(b.connectionPool).isSameAs(a.connectionPool)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/controlplane/volumes.go

    // NOT be changed in normal codepaths during runtime.
    var caCertsExtraVolumePaths = []string{"/etc/pki/ca-trust", "/etc/pki/tls/certs", "/etc/ca-certificates", "/usr/share/ca-certificates", "/usr/local/share/ca-certificates"}
    
    // getHostPathVolumesForTheControlPlane gets the required hostPath volumes and mounts for the control plane
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K 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/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    *Precompiled script plugins* are compiled into class files and packaged into a JAR before they are executed.
    These plugins use the Groovy DSL or Kotlin DSL instead of pure Java, Kotlin, or Groovy.
    They are best used as *convention plugins* that share build logic across projects or as a way to neatly organize build logic.
    
    To create a precompiled script plugin, you can:
    
    1. Use Gradle's Kotlin DSL - The plugin is a `.gradle.kts` file, and apply `id("kotlin-dsl")`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

    COLLECT_GCC=x86_64-w64-mingw32-gcc
    Target: x86_64-w64-mingw32
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

            .signedBy(pinnedRoot)
            .build()
        val attackerSwitch =
          HeldCertificate.Builder()
            .serialNumber(5L)
            .keyPair(attackerIntermediate.keyPair) // share keys between compromised CA and leaf!
            .commonName("attacker")
            .addSubjectAlternativeName("attacker.com")
            .signedBy(pinnedIntermediate)
            .build()
        val phonyVictim =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[build_services]]
    = Using Shared Build Services
    
    Shared build services allow tasks to share state or resources.
    For example, tasks might share a cache of pre-computed values or use a web service or database instance.
    
    A build service is an object that holds the state for tasks to use.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/syscall/exec_windows.go

    func normalizeDir(dir string) (name string, err error) {
    	ndir, err := FullPath(dir)
    	if err != nil {
    		return "", err
    	}
    	if len(ndir) > 2 && isSlash(ndir[0]) && isSlash(ndir[1]) {
    		// dir cannot have \\server\share\path form
    		return "", EINVAL
    	}
    	return ndir, nil
    }
    
    func volToUpper(ch int) int {
    	if 'a' <= ch && ch <= 'z' {
    		ch += 'A' - 'a'
    	}
    	return ch
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top