Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 212 for Example (0.14 sec)

  1. src/net/url/url_test.go

    	{
    		&URL{
    			Scheme: "http",
    			Host:   "example.com",
    			Opaque: "//other.example.com/%2F/%2F/",
    		},
    		"http://other.example.com/%2F/%2F/",
    	},
    	// better fix for issue 4860
    	{
    		&URL{
    			Scheme:  "http",
    			Host:    "example.com",
    			Path:    "/////",
    			RawPath: "/%2F/%2F/",
    		},
    		"/%2F/%2F/",
    	},
    	{
    		&URL{
    			Scheme:  "http",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/types.go

    	// - validationActions: The enforcement actions enacted for the validation failure
    	// Example audit annotation:
    	// `"validation.policy.admission.k8s.io/validation_failure": "[{\"message\": \"Invalid value\", {\"policy\": \"policy.example.com\", {\"binding\": \"policybinding.example.com\", {\"expressionIndex\": \"1\", {\"validationActions\": [\"Audit\"]}]"`
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	}
    }
    
    type fakeStorage struct {
    	pods []example.Pod
    	storage.Interface
    }
    
    func newObjectStorage(fakePods []example.Pod) *fakeStorage {
    	return &fakeStorage{
    		pods: fakePods,
    	}
    }
    
    func (m fakeStorage) GetList(ctx context.Context, key string, opts storage.ListOptions, listObj runtime.Object) error {
    	podList := listObj.(*example.PodList)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Taking this approach means that you won't be able to use type-safe accessors for model elements contributed by the plugins. You will instead have to rely on string literals and the standard Gradle APIs.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // - validationActions: The enforcement actions enacted for the validation failure
      // Example audit annotation:
      // `"validation.policy.admission.k8s.io/validation_failure": "[{\"message\": \"Invalid value\", {\"policy\": \"policy.example.com\", {\"binding\": \"policybinding.example.com\", {\"expressionIndex\": \"1\", {\"validationActions\": [\"Audit\"]}]"`
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Once to reuse the configuration cache.
    
    .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]"]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // - validationActions: The enforcement actions enacted for the validation failure
      // Example audit annotation:
      // `"validation.policy.admission.k8s.io/validation_failure": "[{\"message\": \"Invalid value\", {\"policy\": \"policy.example.com\", {\"binding\": \"policybinding.example.com\", {\"expressionIndex\": \"1\", {\"validationActions\": [\"Audit\"]}]"`
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    It's also possible to disable verification on detached configurations like in the following example:
    
    .Disabling dependency verification
    ====
    include::sample[dir="snippets/dependencyManagement/dependencyVerification-disablingVerification/kotlin",files="build.gradle.kts[tags=disabling-detached-configuration]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * </p><p>For example:
     * <pre>
     * defaultTasks('some-task')  // Delegates to Project.defaultTasks()
     * reportsDir = file('reports') // Delegates to Project.file() and the Java Plugin
     * </pre>
     * <p>You can also access the <code>Project</code> instance using the <code>project</code> property. This can make the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top