Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 207 for Example (0.12 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    		// import ambiguity.
    		//
    		// For example, suppose a developer rewrites imports from example.com/m to
    		// example.com/m/v2, then runs 'go mod tidy'. Tidy may delete the
    		// requirement on example.com/m if there is no other transitive requirement
    		// on it. However, if example.com/m were downgraded to a version not in
    		// go.sum, when package example.com/m/v2/p is loaded, we'd get an error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // For subresources, this may have a different value, for example: Scale".
      optional string group = 8;
    
      // version is the preferred version of the resource.  Empty implies the version of the containing resource list
      // For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)".
      optional string version = 9;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // For subresources, this may have a different value, for example: Scale".
      optional string group = 8;
    
      // version is the preferred version of the resource.  Empty implies the version of the containing resource list
      // For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)".
      optional string version = 9;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. src/bufio/bufio_test.go

    	}
    }
    
    func TestNoUnreadRuneAfterPeek(t *testing.T) {
    	br := NewReader(strings.NewReader("example"))
    	br.ReadRune()
    	br.Peek(1)
    	if err := br.UnreadRune(); err == nil {
    		t.Error("UnreadRune didn't fail after Peek")
    	}
    }
    
    func TestNoUnreadByteAfterPeek(t *testing.T) {
    	br := NewReader(strings.NewReader("example"))
    	br.ReadByte()
    	br.Peek(1)
    	if err := br.UnreadByte(); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"version":            "version is the preferred version of the resource.  Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)\".",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_test.go

    		}
    		if c.HandshakeComplete {
    			return fmt.Errorf("%s: got HandshakeComplete, want false", errorType)
    		}
    		if c.ServerName != "example.golang" {
    			return fmt.Errorf("%s: got ServerName %s, want %s", errorType, c.ServerName, "example.golang")
    		}
    		if c.NegotiatedProtocol != "protocol1" {
    			return fmt.Errorf("%s: got NegotiatedProtocol %s, want %s", errorType, c.NegotiatedProtocol, "protocol1")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			inServices: []*model.Service{
    				{
    					Hostname:       "a17061.example.com",
    					Resolution:     model.DNSLB,
    					DefaultAddress: "0.0.0.0",
    				},
    				{
    					// hashes to the same value as the hostname above,
    					// a new collision needs to be found if the hash algorithm changes
    					Hostname:       "a44155.example.com",
    					Resolution:     model.DNSLB,
    					DefaultAddress: "0.0.0.0",
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_test.go

    		ID:          "v0.default",
    		DNSDomain:   "default.example.org",
    		Metadata: &model.NodeMetadata{
    			Namespace: "not-default",
    		},
    		ConfigNamespace: "not-default",
    	}
    	proxyGateway = model.Proxy{
    		Type:            model.Router,
    		IPAddresses:     []string{"1.1.1.1"},
    		ID:              "v0.default",
    		DNSDomain:       "default.example.org",
    		Labels:          proxyGatewayMetadata.Labels,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// For subresources, this may have a different value, for example: Scale".
    	Group string `json:"group,omitempty" protobuf:"bytes,8,opt,name=group"`
    	// version is the preferred version of the resource.  Empty implies the version of the containing resource list
    	// For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/init.go

    		reason = fmt.Sprintf("bad module path inferred from directory in GOPATH: %v", badPathErr)
    	}
    	msg := `cannot determine module path for source directory %s (%s)
    
    Example usage:
    	'go mod init example.com/m' to initialize a v0 or v1 module
    	'go mod init example.com/m/v2' to initialize a v2 module
    
    Run 'go help mod init' for more information.
    `
    	return "", fmt.Errorf(msg, dir, reason)
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top