Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for ofString (0.19 sec)

  1. cmd/kubeadm/app/phases/certs/renewal/manager.go

    	}
    	certTree, err := certListFunc().AsMap().CertTree()
    	if err != nil {
    		return nil, err
    	}
    
    	// create a CertificateRenewHandler for each signed certificate in the certificate tree;
    	// NB. we are not offering support for renewing CAs; this would cause serious consequences
    	for ca, certs := range certTree {
    		for _, cert := range certs {
    			// create a ReadWriter for certificates stored in the K8s local PKI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client.go

    			return nil, nil, nil, nil
    		}
    	}
    
    	if session.version != VersionTLS13 {
    		// In TLS 1.2 the cipher suite must match the resumed session. Ensure we
    		// are still offering it.
    		if mutualCipherSuite(hello.cipherSuites, session.cipherSuite) == nil {
    			return nil, nil, nil, nil
    		}
    
    		hello.sessionTicket = session.ticket
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    In particular, when the variants are mutual exclusive — i.e. they are *not* feature variants, but different variants offering alternative choices.
    One example *all* pom-based libraries already have are the _runtime_ and _compile_ variants, where Gradle can choose only one depending on the task at hand.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableCollection.java

     *
     * <p>These are classes instead of interfaces to prevent external subtyping, but should be thought
     * of as interfaces in every important sense. Each public class such as {@link ImmutableSet} is a
     * <i>type</i> offering meaningful behavioral guarantees. This is substantially different from the
     * case of (say) {@link HashSet}, which is an <i>implementation</i>, with semantics that were
     * largely defined by its supertype.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableCollection.java

     *
     * <p>These are classes instead of interfaces to prevent external subtyping, but should be thought
     * of as interfaces in every important sense. Each public class such as {@link ImmutableSet} is a
     * <i>type</i> offering meaningful behavioral guarantees. This is substantially different from the
     * case of (say) {@link HashSet}, which is an <i>implementation</i>, with semantics that were
     * largely defined by its supertype.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. licenses/github.com/hashicorp/go-version/LICENSE

          and apparatus claims, in any patent Licensable by such Contributor that
          would be infringed, but for the grant of the License, by the making,
          using, selling, offering for sale, having made, import, or transfer of
          either its Contributions or its Contributor Version.
    
    1.12. “Secondary License”
    
          means either the GNU General Public License, Version 2.0, the GNU Lesser
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server.go

    		return nil
    	}
    
    	// Never resume a session for a different TLS version.
    	if c.vers != sessionState.version {
    		return nil
    	}
    
    	cipherSuiteOk := false
    	// Check that the client is still offering the ciphersuite in the session.
    	for _, id := range hs.clientHello.cipherSuites {
    		if id == sessionState.cipherSuite {
    			cipherSuiteOk = true
    			break
    		}
    	}
    	if !cipherSuiteOk {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    which the executable runs, unless that component itself accompanies the
    executable.
    
    If distribution of executable or object code is made by offering access
    to copy from a designated place, then offering equivalent access to copy
    the source code from the same place counts as distribution of the source
    code, even though third parties are not compelled to copy the source
    along with the object code.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * Manually using `StringBuilder` to assemble these components is cumbersome: do '+' characters get
     * silently replaced with spaces? If a query parameter contains a '&amp;', does that get escaped?
     * By offering methods to read and write individual query parameters directly, application
     * developers are saved from the hassles of encoding and decoding.
     *
     * ### Plus a modern API
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  10. CREDITS

    license is intended to facilitate the commercial use of the Program,
    the Contributor who includes the Program in a commercial product
    offering should do so in a manner which does not create potential
    liability for other Contributors. Therefore, if a Contributor includes
    the Program in a commercial product offering, such Contributor
    ("Commercial Contributor") hereby agrees to defend and indemnify every
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top