Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 314 for Empties (0.26 sec)

  1. pkg/apis/authentication/types.go

    	// audiences of the token, and otherwise should reject the token. A
    	// token issued for multiple audiences may be used to authenticate
    	// against any of the audiences listed but implies a high degree of
    	// trust between the target audiences.
    	Audiences []string
    
    	// ExpirationSeconds is the requested duration of validity of the request. The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. src/log/log_test.go

    	{Ldate, "", Rdate + " "},
    	{Ltime, "", Rtime + " "},
    	{Ltime | Lmsgprefix, "XXX", Rtime + " XXX"},
    	{Ltime | Lmicroseconds, "", Rtime + Rmicroseconds + " "},
    	{Lmicroseconds, "", Rtime + Rmicroseconds + " "}, // microsec implies time
    	{Llongfile, "", Rlongfile + " "},
    	{Lshortfile, "", Rshortfile + " "},
    	{Llongfile | Lshortfile, "", Rshortfile + " "}, // shortfile overrides longfile
    	// everything at once:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 20:04:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. src/syscall/exec_bsd.go

    	// This is only meaningful if Setsid is true.
    	Setctty bool
    	Noctty  bool // Detach fd 0 from controlling terminal
    	Ctty    int  // Controlling TTY fd
    	// Foreground places the child process group in the foreground.
    	// This implies Setpgid. The Ctty field must be set to
    	// the descriptor of the controlling TTY.
    	// Unlike Setctty, in this case Ctty must be a descriptor
    	// number in the parent process.
    	Foreground bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. src/internal/platform/supported.go

    	case "darwin", "freebsd", "linux", "windows":
    		return true
    	default:
    		return false
    	}
    }
    
    // FuzzInstrumented reports whether fuzzing on goos/goarch uses coverage
    // instrumentation. (FuzzInstrumented implies FuzzSupported.)
    func FuzzInstrumented(goos, goarch string) bool {
    	switch goarch {
    	case "amd64", "arm64":
    		// TODO(#14565): support more architectures.
    		return FuzzSupported(goos, goarch)
    	default:
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/sort/search.go

    // This file implements binary search.
    
    package sort
    
    // Search uses binary search to find and return the smallest index i
    // in [0, n) at which f(i) is true, assuming that on the range [0, n),
    // f(i) == true implies f(i+1) == true. That is, Search requires that
    // f is false for some (possibly empty) prefix of the input range [0, n)
    // and then true for the (possibly empty) remainder; Search returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    //	  2..0  length of 2nd mapping of case type
    //
    //	  case     1st    2nd
    //	  lower -> upper, title
    //	  upper -> lower, title
    //	  title -> lower, upper
    //
    // Lengths with the value 0x7 indicate no value and implies no change.
    // A length of 0 indicates a mapping to zero-length string.
    //
    // Body bytes:
    //
    //	case folding bytes
    //	lowercase mapping bytes
    //	uppercase mapping bytes
    //	titlecase mapping bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. cluster/get-kube.sh

    #  Set KUBERNETES_SKIP_CREATE_CLUSTER to skip starting a cluster.
    #  Set KUBERNETES_SKIP_RELEASE_VALIDATION to skip trying to validate the
    #      Kubernetes release string. This implies that you know what you're doing
    #      and have set KUBERNETES_RELEASE and KUBERNETES_RELEASE_URL properly.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. src/syscall/exec_freebsd.go

    	// This is only meaningful if Setsid is true.
    	Setctty bool
    	Noctty  bool // Detach fd 0 from controlling terminal
    	Ctty    int  // Controlling TTY fd
    	// Foreground places the child process group in the foreground.
    	// This implies Setpgid. The Ctty field must be set to
    	// the descriptor of the controlling TTY.
    	// Unlike Setctty, in this case Ctty must be a descriptor
    	// number in the parent process.
    	Foreground bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authentication/v1/types_swagger_doc_generated.go

    	"expirationSeconds": "ExpirationSeconds is the requested duration of validity of the request. The token issuer may return a token with a different validity duration so a client needs to check...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. src/encoding/json/scanner.go

    	scanObjectValue         // just finished non-last object value
    	scanEndObject           // end object (implies scanObjectValue if possible)
    	scanBeginArray          // begin array
    	scanArrayValue          // just finished array value
    	scanEndArray            // end array (implies scanArrayValue if possible)
    	scanSkipSpace           // space byte; can skip; known to be last "continue" result
    
    	// Stop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top