Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for distinguish (0.19 sec)

  1. src/net/http/httputil/dump.go

    // failureToReadBody is an io.ReadCloser that just returns errNoBody on
    // Read. It's swapped in when we don't actually want to consume
    // the body, but need a non-nil one, and want to distinguish the
    // error from reading the dummy body.
    type failureToReadBody struct{}
    
    func (failureToReadBody) Read([]byte) (int, error) { return 0, errNoBody }
    func (failureToReadBody) Close() error             { return nil }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/discovery/v1/types.go

    	Conditions EndpointConditions `json:"conditions,omitempty" protobuf:"bytes,2,opt,name=conditions"`
    
    	// hostname of this endpoint. This field may be used by consumers of
    	// endpoints to distinguish endpoints from each other (e.g. in DNS names).
    	// Multiple endpoints which use the same hostname should be considered
    	// fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS
    	// Label (RFC 1123) validation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    Measuring complex pipelines may require more work or external tools to collect and process measurements.
    It's important to distinguish those parts of the pipeline that caching has no effect on, for example, the time builds spend waiting in the CI system's queue, or time taken by checking out source code from version control.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/net/http/transport_dial_test.go

    	dialCount      int
    }
    
    // A transportDialTesterRoundTrip is a RoundTrip made as part of a dial test.
    type transportDialTesterRoundTrip struct {
    	t *testing.T
    
    	roundTripID int                // distinguishes RoundTrips in logs
    	cancel      context.CancelFunc // cancels the Request context
    	reqBody     io.WriteCloser     // write half of the Request.Body
    	finished    bool
    
    	done chan struct{} // closed when RoundTrip returns:w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/noder/codes.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package noder
    
    import "internal/pkgbits"
    
    // A codeStmt distinguishes among statement encodings.
    type codeStmt int
    
    func (c codeStmt) Marker() pkgbits.SyncMarker { return pkgbits.SyncStmt1 }
    func (c codeStmt) Value() int                 { return int(c) }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 20:07:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/compile/internal/types2/universe.go

    	// representation of interface aliases during type checking, and is
    	// implemented via hijacking [Scope.Lookup] for the [Universe] scope.
    	//
    	// Both representations use the same distinguished pointer for their RHS
    	// interface type, allowing us to detect any (even with the legacy
    	// representation), and format it as "any" rather than interface{}, which
    	// clarifies user-facing error messages significantly.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/go/types/universe.go

    	// representation of interface aliases during type checking, and is
    	// implemented via hijacking [Scope.Lookup] for the [Universe] scope.
    	//
    	// Both representations use the same distinguished pointer for their RHS
    	// interface type, allowing us to detect any (even with the legacy
    	// representation), and format it as "any" rather than interface{}, which
    	// clarifies user-facing error messages significantly.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top