Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 213 for example2 (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    .Testing the configuration cache
    ====
    include::sample[dir="snippets/configurationCache/testKit/kotlin",files="src/test/kotlin/org/example/BuildLogicFunctionalTest.kt[tags=functional-test-configuration-cache]"]
    include::sample[dir="snippets/configurationCache/testKit/groovy",files="src/test/groovy/org/example/BuildLogicFunctionalTest.groovy[tags=functional-test-configuration-cache]"]
    ====
    <1> First run primes the configuration cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    			expectedError: "the API version in the data (mygroup.example.com/v2) does not match the expected API version (mygroup.example.com/v1beta1)",
    		},
    		{
    			name: "bad kind",
    			instanceFn: func() *unstructured.Unstructured {
    				instance := fixtures.NewNoxuInstance(ns, "foo")
    				instance.Object["kind"] = "SomethingElse"
    				return instance
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    		// for this path.
    		//
    		// For example, consider the command
    		//
    		// 	go get example.com/foo@latest example.com/foo/bar/baz@latest
    		//
    		// If modules example.com/foo and example.com/foo/bar both provide
    		// package example.com/foo/bar/baz, then we *must* resolve the package
    		// from example.com/foo: if we instead resolved it from
    		// example.com/foo/bar, we would have two copies of the package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    .Legacy URL Conversions
    |===
    | Original Input | New Input | Reasoning
    
    | `file:relative/path` | `relative/path` | The `file` scheme does not support relative paths.
    | `file:relative/path%21` | `relative/path!` | Without a scheme, the path is taken as-is, without decoding.
    | `https://example.com/my folder/` | `https://example.com/my%20folder/` | Spaces are not valid in URLs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar_test.go

    			},
    			Spec: &networking.VirtualService{
    				Hosts: []string{"*.bar.example.com"},
    			},
    		},
    	}
    
    	services := []*Service{
    		{
    			Hostname: "foo.example.com",
    		},
    		{
    			Hostname: "baz.example.com",
    		},
    		{
    			Hostname: "qux.bar.example.com",
    		},
    		{
    			Hostname: "*.bar.example.com",
    		},
    	}
    
    	tests := []struct {
    		name            string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    				Extra: []api.ExtraMapping{
    					{Key: "example.org/foo", ValueExpression: "claims.extra"},
    					{Key: "example.org/foo", ValueExpression: "claims.extras"},
    				},
    			},
    			structuredAuthnFeatureEnabled: true,
    			want:                          `issuer.claimMappings.extra[1].key: Duplicate value: "example.org/foo"`,
    		},
    		{
    			name: "extra mapping key is not domain prefix path",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

    #
    # Example
    # =======
    # A line in the Docker log file might look like this JSON:
    #
    # {"log":"2014/09/25 21:15:03 Got request with path wombat\\n",
    #  "stream":"stderr",
    #   "time":"2014-09-25T21:15:03.499185026Z"}
    #
    # The original tag is derived from the log file's location.
    # For example a Docker container's logs might be in the directory:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/extensions/v1beta1/types.go

    type IPBlock struct {
    	// CIDR is a string representing the IP Block
    	// Valid examples are "192.168.1.0/24" or "2001:db8::/64"
    	CIDR string `json:"cidr" protobuf:"bytes,1,name=cidr"`
    	// Except is a slice of CIDRs that should not be included within an IP Block
    	// Valid examples are "192.168.1.0/24" or "2001:db8::/64"
    	// Except values will be rejected if they are outside the CIDR range
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  9. pilot/pkg/model/virtualservice_test.go

    			Namespace:        "default",
    		},
    		Spec: &networking.VirtualService{
    			Hosts:    []string{"example.org"},
    			Gateways: []string{"gateway"},
    			Http: []*networking.HTTPRoute{
    				{
    					Route: []*networking.HTTPRouteDestination{
    						{
    							Destination: &networking.Destination{
    								Host: "example.org",
    								Port: &networking.PortSelector{
    									Number: 80,
    								},
    							},
    						},
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    		Obj()
    }
    
    // claimWithCRD replaces the in-tree group with "example.com".
    func claimWithCRD(claim *resourcev1alpha2.ResourceClaim) *resourcev1alpha2.ResourceClaim {
    	claim = claim.DeepCopy()
    	claim.Spec.ParametersRef.APIGroup = "example.com"
    	return claim
    }
    
    // classWithCRD replaces the in-tree group with "example.com".
    func classWithCRD(class *resourcev1alpha2.ResourceClass) *resourcev1alpha2.ResourceClass {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
Back to top