Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,737 for Example (0.11 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    	crd := apiextensionsv1.CustomResourceDefinition{
    		ObjectMeta: metav1.ObjectMeta{Name: "example.stable.example.com", UID: types.UID("12345")},
    		Spec: apiextensionsv1.CustomResourceDefinitionSpec{
    			Group: "stable.example.com",
    			Names: apiextensionsv1.CustomResourceDefinitionNames{
    				Plural: "examples", Singular: "example", Kind: "Example", ShortNames: []string{"ex"}, ListKind: "ExampleList", Categories: []string{"all"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/fieldselector_test.go

    	}
    
    	currentAPIVersion := u.GetAPIVersion()
    
    	if currentAPIVersion == "tests.example.com/v1beta1" && desiredAPIVersion == "tests.example.com/v1" {
    		spec := u.Object["spec"].(map[string]any)
    		spec["color"] = spec["hue"]
    		delete(spec, "hue")
    	} else if currentAPIVersion == "tests.example.com/v1" && desiredAPIVersion == "tests.example.com/v1beta1" {
    		spec := u.Object["spec"].(map[string]any)
    		spec["hue"] = spec["color"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

        }
    
        def "Only one suite with a given test type allowed per project"() {
            file("src/primaryIntTest/java/com/example/FooTest.java") << "package com.example; class FooTest {}"
            file("src/secondaryIntTest/java/com/example/FooTest.java") << "package com.example; class FooTest {}"
    
            file("application/build.gradle") << """
                apply plugin: 'org.gradle.test-report-aggregation'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. src/html/template/content_test.go

    				`ZgotmplZ`,
    				// Allowed but not escaped.
    				`a[href =~ "//example.com"]#foo`,
    				`ZgotmplZ`,
    				`ZgotmplZ`,
    				`ZgotmplZ`,
    				`ZgotmplZ`,
    				`ZgotmplZ`,
    				`ZgotmplZ`,
    				`ZgotmplZ`,
    			},
    		},
    		{
    			`<div style="{{.}}">`,
    			[]string{
    				`ZgotmplZ`,
    				// Allowed and HTML escaped.
    				`a[href =~ &#34;//example.com&#34;]#foo`,
    				`ZgotmplZ`,
    				`ZgotmplZ`,
    				`ZgotmplZ`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    			ExpectAnnotations: map[string]string{
    				"removelabel.example.com/key1":                      "value1",
    				"mutation.webhook.admission.k8s.io/round_0_index_0": mutationAnnotationValue(configurationName, "removelabel.example.com", true),
    				"patch.webhook.admission.k8s.io/round_0_index_0":    patchAnnotationValue(configurationName, "removelabel.example.com", `[{"op": "remove", "path": "/metadata/labels/remove"}]`),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		".",
    		"...",
    		"/b",
    		"com",
    		".com",
    		"a.b.c.d/foo?a=b",
    		"a.b.c.d/foo#a",
    		"Dev.k8s.io",
    		".foo.example.com",
    		"*.example.com",
    		"example.com/foo{}[]@^`",
    		"underscores_are_bad.k8s.io",
    		"underscores_are_bad.k8s.io/foo",
    		"foo@bar.example.com",
    		"foo@bar.example.com/foo",
    		strings.Repeat("a", 247) + ".k8s.io",
    	}
    	for _, val := range badValues {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. docs/sts/web-identity.md

    possible that after redirection the browser may land on a different MinIO server. For example, the domain `console.minio.example.org` may resolve to `console-X.minio.example.org`, where `X` is `1`, `2`, `3` or `4`. For the login to work, if the user first landed on `console-1.minio.example.org`, they must be redirected back to the same place after logging in at the OpenID provider's web-page. To ensure this, set the `MINIO_IDENTITY_OPENID_REDIRECT_URI_DYNAMIC=on` parameter - this lets MinIO set the redirect...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

            configureProjectAndExpectCompileAvoidanceWarnings().assertBuildScriptCompiled().assertOutputContains("foo")
                .assertContainsCompileAvoidanceWarning("buildSrc.jar: class com/example/Foo: Unknown Kotlin metadata with kind: 42 on class com/example/Foo - this can happen if this class is compiled with a later Kotlin version than the Kotlin compiler used by Gradle")
    
            givenJavaClassInBuildSrcContains(
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorDslIntegrationTest.groovy

                }
            """)
            versionCatalogFile("""
                [libraries]
                org-example-foo = "${FOO_GROUP}:${FOO_NAME}:${FOO_VERSION}"
                com-example-baz = "${BAZ_GROUP}:${BAZ_NAME}:${BAZ_VERSION}"
                net-example-provider-convertible = "${PVC_GROUP}:${PVC_NAME}:${PVC_VERSION}"
                net-example-provider-convertible-nested = "${PVC_GROUP}:${PVC_NAME}:${PVC_VERSION}"
    
                [bundles]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 16:23:38 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_resourceclass_test.go

    	badName := "!@#$%^"
    	badValue := "spaces not allowed"
    	badAPIGroup := "example.com/v1"
    	goodAPIGroup := "example.com"
    
    	scenarios := map[string]struct {
    		class        *resource.ResourceClass
    		wantFailures field.ErrorList
    	}{
    		"good-class": {
    			class: testClass(goodName, goodName),
    		},
    		"good-long-driver-name": {
    			class: testClass(goodName, "acme.example.com"),
    		},
    		"missing-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top