Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for Distinguishes (0.31 sec)

  1. pkg/controller/job/metrics/metrics.go

    			Subsystem: JobControllerSubsystem,
    			Name:      "job_pods_creation_total",
    			Help: `The number of Pods created by the Job controller labelled with a reason for the Pod creation.
    This metric also distinguishes between Pods created using different PodReplacementPolicy settings.
    Possible values of the "reason" label are:
    "new", "recreate_terminating_or_failed", "recreate_failed".
    Possible values of the "status" label are:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/net/http/header.go

    		nv += len(vv)
    	}
    	sv := make([]string, nv) // shared backing array for headers' values
    	h2 := make(Header, len(h))
    	for k, vv := range h {
    		if vv == nil {
    			// Preserve nil values. ReverseProxy distinguishes
    			// between nil and zero-length header values.
    			h2[k] = nil
    			continue
    		}
    		n := copy(sv, vv)
    		h2[k] = sv[:n:n]
    		sv = sv[n:]
    	}
    	return h2
    }
    
    var timeFormats = []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/html/template/context.go

    		c.delim == d.delim &&
    		c.urlPart == d.urlPart &&
    		c.jsCtx == d.jsCtx &&
    		c.attr == d.attr &&
    		c.element == d.element &&
    		c.err == d.err
    }
    
    // mangle produces an identifier that includes a suffix that distinguishes it
    // from template names mangled with different contexts.
    func (c context) mangle(templateName string) string {
    	// The mangled name for the default context is the input templateName.
    	if c.state == stateText {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  4. test/escape_struct_param1.go

    }
    
    func (v *V) UPPiSPPia() *string { // ERROR "leaking param: v to result ~r0 level=4$"
    	return *(*v._upp)._spp
    }
    
    // This test isolates the one value that needs to escape, not because
    // it distinguishes fields but because it knows that &s6 is the only
    // value reachable by two indirects from v.
    // The test depends on the level cap in the escape analysis tags
    // being able to encode that fact.
    func tUPPiSPPia() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 8.9K bytes
    - Viewed (0)
  5. test/escape_struct_param2.go

    }
    
    func (v V) UPPiSPPia() *string { // ERROR "leaking param: v to result ~r0 level=3$"
    	return *(*v._upp)._spp
    }
    
    // This test isolates the one value that needs to escape, not because
    // it distinguishes fields but because it knows that &s6 is the only
    // value reachable by two indirects from v.
    // The test depends on the level cap in the escape analysis tags
    // being able to encode that fact.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 8.9K bytes
    - Viewed (0)
  6. doc/next/4-runtime.md

    The traceback printed by the runtime after an unhandled panic or other
    fatal error now indents the second and subsequent lines of the error
    message (for example, the argument to panic) by a single tab, so that
    it can be unambiguously distinguished from the stack trace of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 359 bytes
    - Viewed (0)
  7. src/crypto/x509/pkix/pkix.go

    	// Names contains all parsed attributes. When parsing distinguished names,
    	// this can be used to extract non-standard attributes that are not parsed
    	// by this package. When marshaling to RDNSequences, the Names field is
    	// ignored, see ExtraNames.
    	Names []AttributeTypeAndValue
    
    	// ExtraNames contains attributes to be copied, raw, into any marshaled
    	// distinguished names. Values override any attributes with the same OID.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/iexport.go

    //
    // declOff means a uvarint that indicates an offset within the Data
    // section where the associated declaration can be found.
    //
    //
    // There are five kinds of declarations, distinguished by their first
    // byte:
    //
    //     type Var struct {
    //         Tag  byte // 'V'
    //         Pos  Pos
    //         Type typeOff
    //     }
    //
    //     type Func struct {
    //         Tag       byte // 'F' or 'G'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/ComponentMetadataDetailsAdapterTest.groovy

            metadata.addVariant("variantDefinedInGradleMetadata1", attributes) //gradle metadata is distinguished from maven POM metadata by explicitly defining variants
            metadata.addVariant("variantDefinedInGradleMetadata2", AttributeTestUtil.attributesFactory().of(testAttribute, "other"))
            //gradle metadata is distinguished from maven POM metadata by explicitly defining variants
            gradleMetadata = metadata
            metadata
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 20:17:51 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. internal/config/certsinfo.go

    	color "github.com/minio/minio/internal/color"
    )
    
    // Extra ASN1 OIDs that we may need to handle
    var (
    	oidEmailAddress = []int{1, 2, 840, 113549, 1, 9, 1}
    )
    
    // printName prints the fields of a distinguished name, which include such
    // things as its common name and locality.
    func printName(names []pkix.AttributeTypeAndValue, buf *strings.Builder) []string {
    	values := []string{}
    	for _, name := range names {
    		oid := name.Type
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 16 17:28:29 UTC 2021
    - 3.1K bytes
    - Viewed (0)
Back to top