Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for GetOptions (0.14 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/controller/serviceaccount/tokengetter.go

    	}
    	return c.client.CoreV1().ServiceAccounts(namespace).Get(context.TODO(), name, metav1.GetOptions{})
    }
    
    func (c clientGetter) GetPod(namespace, name string) (*v1.Pod, error) {
    	if pod, err := c.podLister.Pods(namespace).Get(name); err == nil {
    		return pod, nil
    	}
    	return c.client.CoreV1().Pods(namespace).Get(context.TODO(), name, metav1.GetOptions{})
    }
    
    func (c clientGetter) GetSecret(namespace, name string) (*v1.Secret, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top