Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,066 for light (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation.go

    					APIVersion: authenticationv1.SchemeGroupVersion.String(),
    					Name:       value,
    					// ObjectReference doesn't have a subresource field.  FieldPath is close and available, so we'll use that
    					// TODO fight the good fight for ObjectReference to refer to resources and subresources
    					FieldPath: extraKey,
    				})
    		}
    	}
    
    	requestedUID := headers.Get(authenticationv1.ImpersonateUIDHeader)
    	hasUID := len(requestedUID) > 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 10:10:35 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. src/encoding/pem/pem.go

    			key = bytes.TrimSpace(key)
    			val = bytes.TrimSpace(val)
    			p.Headers[string(key)] = string(val)
    			rest = next
    		}
    
    		var endIndex, endTrailerIndex int
    
    		// If there were no headers, the END line might occur
    		// immediately, without a leading newline.
    		if len(p.Headers) == 0 && bytes.HasPrefix(rest, pemEnd[1:]) {
    			endIndex = 0
    			endTrailerIndex = len(pemEnd) - 1
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/internal/testenv/exec.go

    	default:
    		// Assume that exec always works on non-mobile platforms and Android.
    		return nil
    	}
    
    	// ios has an exec syscall but on real iOS devices it might return a
    	// permission error. In an emulated environment (such as a Corellium host)
    	// it might succeed, so if we need to exec we'll just have to try it and
    	// find out.
    	//
    	// As of 2023-04-19 wasip1 and js don't have exec syscalls at all, but we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. pkg/apis/flowcontrol/types.go

    type LimitResponseType string
    
    // Supported limit responses.
    const (
    	// LimitResponseTypeQueue means that requests that can not be executed right now are queued until they can be executed or a queuing limit is hit
    	LimitResponseTypeQueue LimitResponseType = "Queue"
    
    	// LimitResponseTypeReject means that requests that can not be executed right now are rejected
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  5. src/cmd/internal/archive/archive.go

    	%-16s%-12d%-6d%-6d%-8o%-10d`
    	name mtime uid gid mode size
    
    (note the trailing backquote). The %-16s here means at most 16 *bytes* of
    the name, and if shorter, space padded on the right.
    */
    
    // A Data is a reference to data stored in an object file.
    // It records the offset and size of the data, so that a client can
    // read the data only if necessary.
    type Data struct {
    	Offset int64
    	Size   int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/config.go

    //
    // _Update_, _Create_, and _Delete_ are mutator operations. These operations
    // are asynchronous, and you might not see the effect immediately (e.g. _Get_
    // might not return the object by key immediately after you mutate the store.)
    // Intermittent errors might occur even though the operation succeeds, so you
    // should always check if the object store has been modified even if the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. cmd/object-handlers-common.go

    }
    
    // isETagEqual return true if the canonical representations of two ETag strings
    // are equal, false otherwise
    func isETagEqual(left, right string) bool {
    	if strings.TrimSpace(right) == "*" {
    		return true
    	}
    	return canonicalizeETag(left) == canonicalizeETag(right)
    }
    
    // setPutObjHeaders sets all the necessary headers returned back
    // upon a success Put/Copy/CompleteMultipart/Delete requests
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. src/os/user/user.go

    	// On Windows, this is a SID in a string format.
    	// On Plan 9, this is the contents of /dev/user.
    	Gid string
    	// Username is the login name.
    	Username string
    	// Name is the user's real or display name.
    	// It might be blank.
    	// On POSIX systems, this is the first (or only) entry in the GECOS field
    	// list.
    	// On Windows, this is the user's display name.
    	// On Plan 9, this is the contents of /dev/user.
    	Name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/web/http.go

    	"cmd/go/internal/auth"
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/internal/browser"
    )
    
    // impatientInsecureHTTPClient is used with GOINSECURE,
    // when we're connecting to https servers that might not be there
    // or might be using self-signed certificates.
    var impatientInsecureHTTPClient = &http.Client{
    	CheckRedirect: checkRedirect,
    	Timeout:       5 * time.Second,
    	Transport: &http.Transport{
    		Proxy: http.ProxyFromEnvironment,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    			// Ends space for valid //go:build comments,
    			// but also ends the fraction of the file we can
    			// reliably parse. From this point on we might
    			// incorrectly flag "comments" inside multiline
    			// string constants or anything else (this might
    			// not even be a Go program). So stop.
    			break
    		}
    	}
    }
    
    func (check *checker) comment(pos token.Pos, text string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top