Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for examplev1 (0.83 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. doc/go1.17_spec.html

    For instance, this example:
    </p>
    
    <pre>
    	goto L  // BAD
    	v := 3
    L:
    </pre>
    
    <p>
    is erroneous because the jump to label <code>L</code> skips
    the creation of <code>v</code>.
    </p>
    
    <p>
    A "goto" statement outside a <a href="#Blocks">block</a> cannot jump to a label inside that block.
    For instance, this example:
    </p>
    
    <pre>
    if n%2 == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    }
    
    func TestConvertibleTo(t *testing.T) {
    	t1 := ValueOf(example1.MyStruct{}).Type()
    	t2 := ValueOf(example2.MyStruct{}).Type()
    
    	// Shouldn't raise stack overflow
    	if t1.ConvertibleTo(t2) {
    		t.Fatalf("(%s).ConvertibleTo(%s) = true, want false", t1, t2)
    	}
    
    	t3 := ValueOf([]example1.MyStruct{}).Type()
    	t4 := ValueOf([]example2.MyStruct{}).Type()
    
    	if t3.ConvertibleTo(t4) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top