Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 350 for GetOptions (0.13 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.GetOptions.yaml

    apiVersion: v1
    kind: GetOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 70 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.GetOptions.yaml

    apiVersion: v1
    kind: GetOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 70 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.GetOptions.json

    {
      "kind": "GetOptions",
      "apiVersion": "v1",
      "resourceVersion": "resourceVersionValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 93 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.GetOptions.json

    {
      "kind": "GetOptions",
      "apiVersion": "v1",
      "resourceVersion": "resourceVersionValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 93 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.GetOptions.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 50 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.GetOptions.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 50 bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDoc.java

                        parameters.getOptions().add("-deprecation");
                    }
    
                    if (options.isUnchecked()) {
                        parameters.getOptions().add("-unchecked");
                    }
                }
    
                String footer = options.getFooter();
                if (footer != null) {
                    parameters.getOptions().add("-doc-footer");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. pkg/wasm/cache_test.go

    			}
    			cache.mux.Unlock()
    
    			atomic.StoreInt32(&tsNumRequest, 0)
    			if c.getOptions.PullSecret == nil {
    				c.getOptions.PullSecret = []byte{}
    			}
    			gotFilePath, gotErr := cache.Get(c.fetchURL, c.getOptions)
    			serverVisited := atomic.LoadInt32(&tsNumRequest) > 0
    
    			if c.checkPurgeTimeout > 0 {
    				moduleDeleted := false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  9. tests/integration/operator/switch_cr_test.go

    			case "Service":
    				_, err = cs.Kube().CoreV1().Services(ns).Get(context.TODO(), name, metav1.GetOptions{})
    			case "ServiceAccount":
    				_, err = cs.Kube().CoreV1().ServiceAccounts(ns).Get(context.TODO(), name, metav1.GetOptions{})
    			case "Deployment":
    				_, err = cs.Kube().AppsV1().Deployments(IstioNamespace).Get(context.TODO(), name,
    					metav1.GetOptions{})
    			case "ConfigMap":
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/dryrun.go

    	return s.Storage.Versioner()
    }
    
    func (s *DryRunnableStorage) Create(ctx context.Context, key string, obj, out runtime.Object, ttl uint64, dryRun bool) error {
    	if dryRun {
    		if err := s.Storage.Get(ctx, key, storage.GetOptions{}, out); err == nil {
    			return storage.NewKeyExistsError(key, 0)
    		}
    		return s.copyInto(obj, out)
    	}
    	return s.Storage.Create(ctx, key, obj, out, ttl)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 20:40:48 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top