Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for LowerCase (0.13 sec)

  1. src/net/http/transport.go

    // and caches them for reuse by subsequent calls. It uses HTTP proxies
    // as directed by the environment variables HTTP_PROXY, HTTPS_PROXY
    // and NO_PROXY (or the lowercase versions thereof).
    var DefaultTransport RoundTripper = &Transport{
    	Proxy: ProxyFromEnvironment,
    	DialContext: defaultTransportDialContext(&net.Dialer{
    		Timeout:   30 * time.Second,
    		KeepAlive: 30 * time.Second,
    	}),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. src/net/http/request.go

    	//
    	// HTTP defines that header names are case-insensitive. The
    	// request parser implements this by using CanonicalHeaderKey,
    	// making the first character and any characters following a
    	// hyphen uppercase and the rest lowercase.
    	//
    	// For client requests, certain headers such as Content-Length
    	// and Connection are automatically written when needed and
    	// values in Header may be ignored. See the documentation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. src/syscall/syscall_windows.go

    	Family uint16
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [100]int8
    }
    
    type Sockaddr interface {
    	sockaddr() (ptr unsafe.Pointer, len int32, err error) // lowercase; only we can define Sockaddrs
    }
    
    type SockaddrInet4 struct {
    	Port int
    	Addr [4]byte
    	raw  RawSockaddrInet4
    }
    
    func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, int32, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    				},
    			},
    			structuredAuthnFeatureEnabled: true,
    			want:                          `issuer.claimMappings.extra[0].key: Invalid value: "example.org/Foo": key must be lowercase`,
    		},
    		{
    			name: "valid claim mappings but uses email without verification",
    			in: api.ClaimMappings{
    				Username: api.PrefixedClaimOrExpression{Expression: "claims.email"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // Linux system calls.
    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and
    // wrap it in our own nicer implementation.
    
    package unix
    
    import (
    	"encoding/binary"
    	"strconv"
    	"syscall"
    	"time"
    	"unsafe"
    )
    
    /*
     * Wrapped
     */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. src/testing/testing.go

    // It is intended to be used in concert with the "go test" command, which automates
    // execution of any function of the form
    //
    //	func TestXxx(*testing.T)
    //
    // where Xxx does not start with a lowercase letter. The function name
    // serves to identify the test routine.
    //
    // Within these functions, use the Error, Fail or related methods to signal failure.
    //
    // To write a new test suite, create a file that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	Family uint16
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [100]int8
    }
    
    type Sockaddr interface {
    	sockaddr() (ptr unsafe.Pointer, len int32, err error) // lowercase; only we can define Sockaddrs
    }
    
    type SockaddrInet4 struct {
    	Port int
    	Addr [4]byte
    	raw  RawSockaddrInet4
    }
    
    func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, int32, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    }
    
    var (
    	// Encodings have the following naming convention:
    	//
    	//  1. the instruction encoding (R/I/S/B/U/J), in lowercase
    	//  2. zero or more register operand identifiers (I = integer
    	//     register, F = float register), in uppercase
    	//  3. the word "Encoding"
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    // creation of IPv6 sockets to return EAFNOSUPPORT.
    var SocketDisableIPv6 bool
    
    // Sockaddr represents a socket address.
    type Sockaddr interface {
    	sockaddr() (ptr unsafe.Pointer, len _Socklen, err error) // lowercase; only we can define Sockaddrs
    }
    
    // SockaddrInet4 implements the Sockaddr interface for AF_INET type sockets.
    type SockaddrInet4 struct {
    	Port int
    	Addr [4]byte
    	raw  RawSockaddrInet4
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  10. src/reflect/type.go

    	}
    
    	if field.IsExported() {
    		// Best-effort check for misuse.
    		// Since this field will be treated as exported, not much harm done if Unicode lowercase slips through.
    		c := field.Name[0]
    		if 'a' <= c && c <= 'z' || c == '_' {
    			panic("reflect.StructOf: field \"" + field.Name + "\" is unexported but missing PkgPath")
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top