Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 199 for GetOptions (0.15 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.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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/wasm/options.go

    	Always       PullPolicy = 2
    )
    
    var PullPolicyValues = map[string]PullPolicy{
    	"UNSPECIFIED_POLICY": 0,
    	"IfNotPresent":       1,
    	"Always":             2,
    }
    
    // GetOptions is a struct for providing options to Get method of Cache.
    type GetOptions struct {
    	Checksum        string
    	ResourceName    string
    	ResourceVersion string
    	RequestTimeout  time.Duration
    	PullSecret      []byte
    	PullPolicy      PullPolicy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/server_test.go

    		kubeClient: fakeClientSet,
    		netServer:  server,
    	}
    
    	err := m.AddPodToMesh(fakeCtx, pod, podIPs, "")
    	assert.NoError(t, err)
    
    	pod, err = fakeClientSet.CoreV1().Pods("test").Get(fakeCtx, "test", metav1.GetOptions{})
    	assert.NoError(t, err)
    	assert.Equal(t, len(pod.Annotations), 1)
    	assert.Equal(t, pod.Annotations[constants.AmbientRedirection], constants.AmbientRedirectionEnabled)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java

                return s1.compareToIgnoreCase(s2);
            }
        }
    
        private static class CLIManagerExtension extends CLIManager {
            public Collection<Option> getOptions() {
                List<Option> optList = new ArrayList<>(options.getOptions());
                optList.sort(new OptionComparator());
                return optList;
            }
        }
    
        String getOptionsAsHtml() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmLanguageUtilities.java

            return compileTasks.stream().map(provider -> {
                COMPILE compileTask = provider.get();
                if (compileTask.getOptions().getRelease().isPresent()) {
                    return compileTask.getOptions().getRelease().get();
                }
    
                List<String> compilerArgs = compileTask.getOptions().getCompilerArgs();
                int flagIndex = compilerArgs.indexOf("--release");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:47:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. pkg/registry/core/serviceaccount/storage/token.go

    					// set ResourceVersion=0 to allow this to be read/served from the apiservers watch cache
    					nodeObj, err := r.nodes.Get(newCtx, nodeName, &metav1.GetOptions{ResourceVersion: "0"})
    					if err != nil {
    						nodeObj, err = r.nodes.Get(newCtx, nodeName, &metav1.GetOptions{}) // fallback to a live lookup on any error
    					}
    					switch {
    					case errors.IsNotFound(err):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top