Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 218 for Unshare (0.51 sec)

  1. docs/changelogs/changelog_4x.md

     *  Fix: Retry automatically when incorrectly sharing a connection among multiple hostnames. OkHttp
        shares connections when hosts share both IP addresses and certificates, such as `squareup.com`
        and `www.squareup.com`. If a server refuses such sharing it will return HTTP 421 and OkHttp will
        automatically retry on an unshared connection.
     *  Fix: Don't crash if a TLS tunnel's response body is truncated.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

                )
            }
        }
    
        @Test
        fun `preserves identity of Externalizable objects`() {
            verifyRoundtripOf({
                val toShare = ExternalizableBean(42)
                toShare to toShare
            }) { (first, second) ->
                assertThat(first.value, equalTo(42))
                assertThat(first, sameInstance(second))
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. src/runtime/os_linux.go

    	// flags to be set when creating a thread; attempts to share the other
    	// five but leave SYSVSEM unshared will fail with -EINVAL.
    	//
    	// In non-QEMU environments CLONE_SYSVSEM is inconsequential as we do not
    	// use System V semaphores.
    
    	cloneFlags = _CLONE_VM | /* share memory */
    		_CLONE_FS | /* share cwd, etc */
    		_CLONE_FILES | /* share fd table */
    		_CLONE_SIGHAND | /* share sig handler table */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    Subprojects in a multi-project build typically share some common dependencies.
    
    image::structuring-builds-3.png[]
    
    Instead of copying and pasting the same Java version and libraries in each subproject build script, Gradle provides a special directory for storing shared build logic that can be automatically applied to subprojects.
    
    [[sec:using_buildsrc]]
    == Share logic in `buildSrc`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/path/filepath/path.go

    // returns the string ".".
    //
    // On Windows, Clean does not modify the volume name other than to replace
    // occurrences of "/" with `\`.
    // For example, Clean("//host/share/../x") returns `\\host\share\x`.
    //
    // See also Rob Pike, “Lexical File Names in Plan 9 or
    // Getting Dot-Dot Right,”
    // https://9p.io/sys/doc/lexnames.html
    func Clean(path string) string {
    	return filepathlite.Clean(path)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. pkg/volume/volume.go

    	// underlying storage. For Volumes that share a filesystem with the host
    	// (e.g. emptydir, hostpath) this is the size of the underlying storage,
    	// and will not equal Used + Available as the fs is shared.
    	Capacity *resource.Quantity
    
    	// Available represents the storage space available (bytes) for the
    	// Volume. For Volumes that share a filesystem with the host (e.g.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_tls13.go

    		return errors.New("tls: received malformed key_share extension")
    	}
    
    	// If the server sent a key_share extension selecting a group, ensure it's
    	// a group we advertised but did not send a key share for, and send a key
    	// share for it this time.
    	if curveID := hs.serverHello.selectedGroup; curveID != 0 {
    		if !slices.Contains(hello.supportedCurves, curveID) {
    			c.sendAlert(alertIllegalParameter)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    As such, this is a perfect tool whenever you need to _share dependency versions between projects_.
    In this case, a project will typically be organized this way:
    
    - a `platform` project which defines constraints for the various dependencies found in the different sub-projects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions.go

    // - GCE PD allows multiple mounts as long as they're all read-only
    // - AWS EBS forbids any two pods mounting the same volume ID
    // - Ceph RBD forbids if any two pods share at least same monitor, and match pool and image, and the image is read-only
    // - ISCSI forbids if any two pods share at least same IQN and ISCSI volume is read-only
    // If the pod uses PVCs with the ReadWriteOncePod access mode, it evaluates if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_tls13.go

    	if err != nil {
    		c.sendAlert(alertIllegalParameter)
    		return errors.New("tls: invalid client key share")
    	}
    	hs.sharedKey, err = key.ECDH(peerKey)
    	if err != nil {
    		c.sendAlert(alertIllegalParameter)
    		return errors.New("tls: invalid client key share")
    	}
    	if selectedGroup == x25519Kyber768Draft00 {
    		ciphertext, kyberShared, err := kyberEncapsulate(clientKeyShare.data[x25519PublicKeySize:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top