Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 65 for isStandard (0.15 sec)

  1. pkg/workloadapi/workload.proto

    message ApplicationTunnel {
      enum Protocol {
        // Bytes are copied from the inner stream without modification.
        NONE = 0;
    
        // Prepend PROXY protocol headers before copying bytes
        // Standard PROXY source and destination information
        // is included, along with potential extra TLV headers:
        // 0xD0 - The SPIFFE identity of the source workload
        // 0xD1 - The FQDN or Hostname of the targeted Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. cmd/s3-zip-handlers.go

    		}
    		return
    	}
    
    	objInfo := ObjectInfo{
    		Bucket:  bucket,
    		Name:    file.Name,
    		Size:    int64(file.UncompressedSize64),
    		ModTime: zipObjInfo.ModTime,
    	}
    
    	// Set standard object headers.
    	if err = setObjectHeaders(ctx, w, objInfo, nil, opts); err != nil {
    		writeErrorResponseHeadersOnly(w, toAPIError(ctx, err))
    		return
    	}
    
    	// s3zip does not allow ranges.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

    system. When using modules, "all" expands to all packages in
    the main module and their dependencies, including dependencies
    needed by tests of any of those.
    
    - "std" is like all but expands to just the packages in the standard
    Go library.
    
    - "cmd" expands to the Go repository's commands and their
    internal libraries.
    
    Import paths beginning with "cmd/" only match source code in
    the Go repository.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. chainable_api.go

    //	db.Model(&user).Update("name", "hello")
    func (db *DB) Model(value interface{}) (tx *DB) {
    	tx = db.getInstance()
    	tx.Statement.Model = value
    	return
    }
    
    // Clauses Add clauses
    //
    // This supports both standard clauses (clause.OrderBy, clause.Limit, clause.Where) and more
    // advanced techniques like specifying lock strength and optimizer hints. See the
    // [docs] for more depth.
    //
    //	// add a simple limit clause
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    			if len(packages) > 0 {
    				if q.rawVersion != "" {
    					return errSet(fmt.Errorf("can't request explicit version %q of standard library package %s", q.version, q.pattern))
    				}
    
    				q.matchesPackages = true
    				return pathSet{} // No module needed for standard library.
    			}
    		}
    
    		pkgMods, mod, err := r.queryPattern(ctx, q.pattern, q.version, r.initialSelected)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api.go

    	// declares an empty "C" package and errors are omitted for qualified
    	// identifiers referring to package C (which won't find an object).
    	// This feature is intended for the standard library cmd/api tool.
    	//
    	// Caution: Effects may be unpredictable due to follow-on errors.
    	//          Do not use casually!
    	FakeImportC bool
    
    	// If IgnoreBranchErrors is set, branch/label errors are ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. cmd/object-api-datatypes.go

    	// RestoreExpires indicates date a restored object expires
    	RestoreExpires time.Time
    
    	// RestoreOngoing indicates if a restore is in progress
    	RestoreOngoing bool
    
    	// A standard MIME type describing the format of the object.
    	ContentType string
    
    	// Specifies what content encodings have been applied to the object and thus
    	// what decoding mechanisms must be applied to obtain the object referenced
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. cmd/batch-expire.go

    			}
    			if !match {
    				return false
    			}
    		}
    
    	}
    	if len(ef.Metadata) > 0 && !obj.DeleteMarker {
    		for _, kv := range ef.Metadata {
    			// Object (version) must match all x-amz-meta and
    			// standard metadata headers
    			// specified in the filter
    			var match bool
    			for k, v := range obj.UserDefined {
    				if !stringsHasPrefixFold(k, "x-amz-meta-") && !isStandardHeader(k) {
    					continue
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/istio_ca.go

    	if iss != "" && // issuer set explicitly or extracted from our own JWT
    		k8sInCluster.Get() == "" { // not running in cluster - in cluster use direct call to apiserver
    		// Add a custom authenticator using standard JWT validation, if not running in K8S
    		// When running inside K8S - we can use the built-in validator, which also check pod removal (invalidation).
    		jwtRule := v1beta1.JWTRule{Issuer: iss, Audiences: []string{aud}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. cmd/erasure-multipart.go

    	if userDefined["content-type"] == "" {
    		userDefined["content-type"] = mimedb.TypeByExtension(path.Ext(object))
    	}
    
    	// if storageClass is standard no need to save it as part of metadata.
    	if userDefined[xhttp.AmzStorageClass] == storageclass.STANDARD {
    		delete(userDefined, xhttp.AmzStorageClass)
    	}
    
    	if opts.WantChecksum != nil && opts.WantChecksum.Type.IsSet() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top