Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 602 for for1 (0.04 sec)

  1. pkg/apis/storage/validation/validation_test.go

    			Parameters: map[string]string{
    				"foo-parameter": "free-form-string",
    			},
    		},
    		{
    			// some parameters
    			ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    			DriverName: "kubernetes.io/foo",
    			Parameters: map[string]string{
    				"kubernetes.io/foo-parameter": "free/form/string",
    				"foo-parameter":               "free-form-string",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  2. src/net/http/request.go

    	return
    }
    
    // ParseForm populates r.Form and r.PostForm.
    //
    // For all requests, ParseForm parses the raw query from the URL and updates
    // r.Form.
    //
    // For POST, PUT, and PATCH requests, it also reads the request body, parses it
    // as a form and puts the results into both r.PostForm and r.Form. Request body
    // parameters take precedence over URL query string values in r.Form.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			requestedName: "t10-foo1",
    			recursive:     true,
    			fieldSelector: fields.ParseSelectorOrDie("metadata.name=t10-foo1"),
    			watchTests: []*testWatchStruct{
    				{baseNamespacedPod("t10-foo1", "t10-ns1"), true, watch.Added},
    				{baseNamespacedPod("t10-foo1", "t10-ns2"), true, watch.Added},
    				{baseNamespacedPod("t10-foo2", "t10-ns1"), false, ""},
    				{baseNamespacedPodUpdated("t10-foo1", "t10-ns1"), true, watch.Modified},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. cmd/peer-rest-server.go

    		return
    	}
    
    	sizeStr := r.Form.Get(peerRESTSize)
    	durationStr := r.Form.Get(peerRESTDuration)
    	concurrentStr := r.Form.Get(peerRESTConcurrent)
    	storageClass := r.Form.Get(peerRESTStorageClass)
    	bucketName := r.Form.Get(peerRESTBucket)
    	enableSha256 := r.Form.Get(peerRESTEnableSha256) == "true"
    	enableMultipart := r.Form.Get(peerRESTEnableMultipart) == "true"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    	}
    	for i, tt := range tests {
    		if got := tt.in.String(); got != tt.want {
    			t.Errorf("%d. for %v String = %q; want %q", i, tt.in, got, tt.want)
    		}
    		mt, err := tt.in.MarshalText()
    		if err != nil {
    			t.Errorf("%d. for %v MarshalText error: %v", i, tt.in, err)
    			continue
    		}
    		if string(mt) != tt.want {
    			t.Errorf("%d. for %v MarshalText = %q; want %q", i, tt.in, mt, tt.want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. cmd/bucket-handlers.go

    	}
    
    	var wg sync.WaitGroup
    	// Remove buckets that are in DNS for this server, but aren't local
    	for bucket, records := range dnsBuckets {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			Containers: []v1.Container{
    				{
    					Name:  "foo1",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo2",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo3",
    					Image: "busybox",
    				},
    			},
    		},
    		Status: v1.PodStatus{
    			ContainerStatuses: []v1.ContainerStatus{
    				{
    					ContainerID: "://id1",
    					Name:        "foo1",
    					Image:       "busybox",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  9. fastapi/param_functions.py

                """
            ),
        ] = "application/x-www-form-urlencoded",
        alias: Annotated[
            Optional[str],
            Doc(
                """
                An alternative name for the parameter field.
    
                This will be used to extract the data and for the generated OpenAPI.
                It is particularly useful when you can't use the name you want because it
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  10. pkg/apis/certificates/validation/validation_test.go

    		},
    	}}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			gotErrs := sets.NewString()
    			for _, err := range ValidateCertificateSigningRequestUpdate(tt.newCSR, tt.oldCSR) {
    				gotErrs.Insert(err.Error())
    			}
    			wantErrs := sets.NewString(tt.errs...)
    			for _, missing := range wantErrs.Difference(gotErrs).List() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
Back to top