Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 142 for GetOptions (0.41 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. 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)
  8. 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)
  9. tests/integration/pilot/analysis/analysis_test.go

    					Status: "True",
    				},
    			}
    
    			// Get WorkloadEntry to append to
    			we, err := t.Clusters().Default().Istio().NetworkingV1alpha3().WorkloadEntries(ns.Name()).Get(context.TODO(), "vm-1", metav1.GetOptions{})
    			if err != nil {
    				t.Error(err)
    			}
    
    			if we.Status.Conditions == nil {
    				we.Status.Conditions = []*v1alpha1.IstioCondition{}
    			}
    			// append to conditions
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/flot.selection.min.js

    t&&selectionIsSane())triggerSelectedEvent()}function selectionIsSane(){var minSize=plot.getOptions().selection.minSize;return Math.abs(selection.second.x-selection.first.x)>=minSize&&Math.abs(selection.second.y-selection.first.y)>=minSize}plot.clearSelection=clearSelection;plot.setSelection=setSelection;plot.getSelection=getSelection;plot.hooks.bindEvents.push(function(plot,eventHolder){var o=plot.getOptions();if(o.selection.mode!=null){eventHolder.mousemove(onMouseMove);eventHolder.mousedown(on...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top