Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 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. 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)
  3. src/cmd/internal/obj/ppc64/asm9.go

    	{as: AMADDHD, a1: C_REG, a2: C_REG, a3: C_REG, a6: C_REG, type_: 83, size: 4},   /* multiply-add high/low doubleword, va-form */
    	{as: AADDEX, a1: C_REG, a2: C_REG, a3: C_U15CON, a6: C_REG, type_: 94, size: 4}, /* add extended using alternate carry, z23-form */
    	{as: ACRAND, a1: C_CRBIT, a2: C_CRBIT, a6: C_CRBIT, type_: 2, size: 4},          /* logical ops for condition register bits xl-form */
    
    	/* Misc ISA 3.0 instructions */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    			// alive. However, by converting it to an
    			// interface value and calling that,
    			// reflect.callReflect is the only thing that
    			// can keep the makeFuncImpl live.
    			//
    			// Alternate between f and g so that if we do
    			// reuse the memory prematurely it's more
    			// likely to get obviously corrupted.
    			MakeFunc(typ, g).Interface().(func(i int))(i - 1)
    		}
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/gateway_test.go

    						},
    					},
    				},
    				RequireClientCertificate: proto.BoolFalse,
    			},
    		},
    		{ // Credential name and subject alternative names are specified, generate SDS configs for
    			// key/cert and static validation context config.
    			name: "credential name subject alternative name no key no cert tls SIMPLE",
    			server: &networking.Server{
    				Hosts: []string{"httpbin.example.com", "bookinfo.example.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    	// Indicates that this object is not dumped by dldump. Candidates are objects
    	// with no relocations that might get included when generating alternative
    	// objects using.
    	DF_1_NODUMP DynFlag1 = 0x00001000
    	// Identifies this object as a configuration alternative object generated by
    	// crle. Triggers the runtime linker to search for a configuration file $ORIGIN/ld.config.app-name.
    	DF_1_CONFALT DynFlag1 = 0x00002000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    		leaf:          trustAsiaLeaf,
    		intermediates: []string{trustAsiaSHA384Intermediate},
    		roots:         []string{digicertRoot},
    		currentTime:   1558051200,
    		dnsName:       "tm.cn",
    
    		// CryptoAPI can find alternative validation paths.
    		systemLax: true,
    
    		expectedChains: [][]string{
    			{
    				"tm.cn",
    				"TrustAsia ECC OV TLS Pro CA",
    				"DigiCert Global Root CA",
    			},
    		},
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. fastapi/applications.py

                    ```
                    """
                ),
            ] = "/docs",
            redoc_url: Annotated[
                Optional[str],
                Doc(
                    """
                    The path to the alternative automatic interactive API documentation
                    provided by ReDoc.
    
                    The default URL is `/redoc`. You can disable it by setting it to `None`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    <h2 id="Notation">Notation</h2>
    <p>
    The syntax is specified using Extended Backus-Naur Form (EBNF):
    </p>
    
    <pre class="grammar">
    Production  = production_name "=" [ Expression ] "." .
    Expression  = Alternative { "|" Alternative } .
    Alternative = Term { Term } .
    Term        = production_name | token [ "…" token ] | Group | Option | Repetition .
    Group       = "(" Expression ")" .
    Option      = "[" Expression "]" .
    Repetition  = "{" Expression "}" .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

                X509v3 Extended Key Usage:
                    TLS Web Server Authentication
                X509v3 Basic Constraints: critical
                    CA:FALSE
                X509v3 Subject Alternative Name:
                    DNS:longOID.example
                X509v3 Certificate Policies:
                    Policy: 1.3.6.1.4.1.311.21.8.1492336001
    
        Signature Algorithm: sha256WithRSAEncryption
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top