Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ofString (0.24 sec)

  1. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/generate-clients.md

    For example, you might want to try <a href="https://speakeasyapi.dev/?utm_source=fastapi+repo&utm_medium=github+sponsorship" class="external-link" target="_blank">Speakeasy</a>.
    
    There are also several other companies offering similar services that you can search and find online. 🤓
    
    ## Generate a TypeScript Frontend Client
    
    Let's start with a simple FastAPI application:
    
    === "Python 3.9+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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)
Back to top