Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 184 for alternate (0.21 sec)

  1. src/net/http/server.go

    }
    
    // validNextProto reports whether the proto is a valid ALPN protocol name.
    // Everything is valid except the empty string and built-in protocol types,
    // so that those can't be overridden with alternate implementations.
    func validNextProto(proto string) bool {
    	switch proto {
    	case "", "http/1.1", "http/1.0":
    		return false
    	}
    	return true
    }
    
    const (
    	runHooks  = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. src/go/token/position.go

    }
    
    // AddLineColumnInfo adds alternative file, line, and column number
    // information for a given file offset. The offset must be larger
    // than the offset for the previously added alternative line info
    // and smaller than the file size; otherwise the information is
    // ignored.
    //
    // AddLineColumnInfo is typically used to register alternative position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    func TestNodePorts(t *testing.T) {
    	testCases := []struct {
    		name string
    
    		family            v1.IPFamily
    		nodePortAddresses []string
    
    		// allowAltNodeIP is true if we expect NodePort traffic on the alternate
    		// node IP to be accepted
    		allowAltNodeIP bool
    	}{
    		{
    			name: "ipv4",
    
    			family:            v1.IPv4Protocol,
    			nodePortAddresses: nil,
    
    			allowAltNodeIP: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    TION")):!s.has("DELAY")&&sd.test(o)?(n.delay=o,s.add("DELAY")):s.has("NAME")?(n.unknown||(n.unknown=[]),n.unknown.push(o)):(n.name=o,s.add("NAME"));return n})}var zS,VS,US,WS,GS,HS,YS,QS,sd,JS,ad=C(()=>{l();zS=new Set(["normal","reverse","alternate","alternate-reverse"]),VS=new Set(["running","paused"]),US=new Set(["none","forwards","backwards","both"]),WS=new Set(["infinite"]),GS=new Set(["linear","ease","ease-in","ease-out","ease-in-out","step-start","step-end"]),HS=["cubic-bezier","steps"],YS...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  5. docs/hu/docs/index.md

    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png)
    
    ### Alternatív API dokumentáció
    
    És most menj el a <a href="http://127.0.0.1:8000/redoc" class="external-link" target="_blank">http://127.0.0.1:8000/redoc</a> címre.
    
    Az alternatív automatikus dokumentációt fogod látni. (lásd <a href="https://github.com/Rebilly/ReDoc" class="external-link" target="_blank">ReDoc</a>):
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/types.go

    	// +optional
    	ExtraEnvs []EnvVar
    
    	// ServerCertSANs sets extra Subject Alternative Names for the etcd server signing cert.
    	ServerCertSANs []string
    	// PeerCertSANs sets extra Subject Alternative Names for the etcd peer signing cert.
    	PeerCertSANs []string
    }
    
    // ExternalEtcd describes an external etcd cluster
    type ExternalEtcd struct {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. docs/en/docs/index.md

    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png)
    
    ### Alternative API docs
    
    And now, go to <a href="http://127.0.0.1:8000/redoc" class="external-link" target="_blank">http://127.0.0.1:8000/redoc</a>.
    
    You will see the alternative automatic documentation (provided by <a href="https://github.com/Rebilly/ReDoc" class="external-link" target="_blank">ReDoc</a>):
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProviderFactory.kt

     *
     * The [contextualModule] is the module which contains the symbols to be provided, if applicable. The declaration provider may use the
     * contextual module to provide declarations differently, such as providing alternative declarations for an outsider module. Some
     * functionality such as package set computation may also depend on the contextual module, as the declaration provider may require
     * additional information not available in the [scope].
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/custom-response.md

    This is the default response used in **FastAPI**, as you read above.
    
    ### `ORJSONResponse`
    
    A fast alternative JSON response using <a href="https://github.com/ijl/orjson" class="external-link" target="_blank">`orjson`</a>, as you read above.
    
    ### `UJSONResponse`
    
    An alternative JSON response using <a href="https://github.com/ultrajson/ultrajson" class="external-link" target="_blank">`ujson`</a>.
    
    !!! warning
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/file-temp/src/main/java/org/gradle/api/internal/file/temp/DefaultTemporaryFileProvider.java

                // TODO: This is not a great paradigm for creating a temporary directory.
                // See http://guava-libraries.googlecode.com/svn/tags/release08/javadoc/com/google/common/io/Files.html#createTempDir%28%29 for an alternative.
                File tmpDir = TempFiles.createTempFile(prefix, suffix, dir);
                if (!tmpDir.delete()) {
                    throw new IOException("Failed to delete file: " + tmpDir);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 21:16:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top