Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for examplev1 (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		},
    		"normalFiltered": {
    			in:  &example.PodList{Items: []example.Pod{*podA, *podB}},
    			m:   matchPodName("foo"),
    			out: &example.PodList{Items: []example.Pod{*podB}},
    		},
    		"normalFilteredNoNamespace": {
    			in:      &example.PodList{Items: []example.Pod{*podA, *podB}},
    			m:       matchPodName("foo"),
    			out:     &example.PodList{Items: []example.Pod{*podB}},
    			context: noNamespaceContext,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	"k8s.io/apimachinery/pkg/watch"
    	"k8s.io/apiserver/pkg/admission"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	"k8s.io/apiserver/pkg/apis/example"
    	examplefuzzer "k8s.io/apiserver/pkg/apis/example/fuzzer"
    	examplev1 "k8s.io/apiserver/pkg/apis/example/v1"
    	"k8s.io/apiserver/pkg/audit"
    	auditpolicy "k8s.io/apiserver/pkg/audit/policy"
    	genericapifilters "k8s.io/apiserver/pkg/endpoints/filters"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/build-lifecycle-example.png

    build-lifecycle-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:03:53 UTC 2024
    - 132.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.png

    exploded-war-child-copy-spec-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 126.9K bytes
    - Viewed (0)
  5. src/crypto/x509/verify_test.go

    }{
    	{"", "anything.com", false, true},
    	{"example.com", "example.com", false, true},
    	{"example.com.", "example.com", true, false},
    	{"example.com", "example.com.", true, false},
    	{"example.com", "ExAmPle.coM", false, true},
    	{"example.com", "exampl1.com", false, false},
    	{"example.com", "www.ExAmPle.coM", false, true},
    	{"example.com", "sub.www.ExAmPle.coM", false, true},
    	{"example.com", "notexample.com", false, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/validation/validation_test.go

    					Expression: "object.x < 100",
    				}},
    				ParamKind: &admissionregistration.ParamKind{
    					Kind:       "Example",
    					APIVersion: "test.example.com",
    				},
    			},
    		},
    		expectedError: `spec.paramKind.apiVersion: Invalid value: "test.example.com"`,
    	}, {
    		name: "API kind is required in ParamKind",
    		config: &admissionregistration.ValidatingAdmissionPolicy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    er<? super T>> matchers) Creates a matcher that matches if the examined object matches ALL of the specified matchers. For example: assertThat("myValue", allOf(startsWith("my"), containsString("Val"))) allOf public static <T> Matcher<T> allOf(Matcher<? super T>... matchers) Creates a matcher that matches if the examined object matches ALL of the specified matchers. For example: assertThat("myValue", allOf(startsWith("my"), containsString("Val"))) allOf public static <T> Matcher<T> allOf(Matcher<?...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  8. fastapi/routing.py

        `APIRouter` class, used to group *path operations*, for example to structure
        an app in multiple files. It would then be included in the `FastAPI` app, or
        in another `APIRouter` (ultimately included in the app).
    
        Read more about it in the
        [FastAPI docs for Bigger Applications - Multiple Files](https://fastapi.tiangolo.com/tutorial/bigger-applications/).
    
        ## Example
    
        ```python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  9. src/net/http/server.go

    //
    // Patterns can match the method, host and path of a request.
    // Some examples:
    //
    //   - "/index.html" matches the path "/index.html" for any host and method.
    //   - "GET /static/" matches a GET request whose path begins with "/static/".
    //   - "example.com/" matches any request to the host "example.com".
    //   - "example.com/{$}" matches requests with host "example.com" and path "/".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *         .transform((closer, result) -> result.get("userName"), directExecutor())
     *         .catching(DBException.class, e -> "no user", directExecutor())
     *         .finishToFuture();
     * }</pre>
     *
     * In this example, when the {@code userName} {@link Future} is done, the transaction and the query
     * result cursor will both be closed, even if the operation is cancelled or fails.
     *
     * <h4>Manually closing</h4>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
Back to top