Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 105 for namespace_b (0.14 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string"
            },
            "namespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// if `paramKind` is namespace-scoped.
    	//
    	Name string `json:"name,omitempty" protobuf:"bytes,1,rep,name=name"`
    
    	// namespace is the namespace of the referenced resource. Allows limiting
    	// the search for params to a specific namespace. Applies to both `name` and
    	// `selector` fields.
    	//
    	// A per-namespace parameter may be used by specifying a namespace-scoped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider_test.go

    		sandbox0Cgroup:                getTestContainerInfo(seedSandbox0, "", "", ""),
    		container0.ContainerStatus.Id: getTestContainerInfo(seedContainer0, pName0, sandbox0.PodSandboxStatus.Metadata.Namespace, cName0),
    		container1.ContainerStatus.Id: getTestContainerInfo(seedContainer1, pName0, sandbox0.PodSandboxStatus.Metadata.Namespace, cName1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. pkg/apis/networking/validation/validation_test.go

    			},
    		},
    		"namespace not set when scope is Namespace": {
    			ingressClass: makeValidIngressClass("test123", "foo.co/bar",
    				setParams(makeIngressClassParams(nil, "foo", "bar", utilpointer.String("Namespace"), nil)),
    			),
    			expectedErrs: field.ErrorList{field.Required(field.NewPath("spec.parameters.namespace"),
    				"`parameters.scope` is set to 'Namespace'")},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	podName := util.GetUniquePodName(pod)
    
    	//let the pod be terminated
    	podGet, exist := dswp.podManager.(mutablePodManager).GetPodByName(pod.Namespace, pod.Name)
    	if !exist {
    		t.Fatalf("Failed to get pod by pod name: %s and namespace: %s", pod.Name, pod.Namespace)
    	}
    	podGet.Status.Phase = v1.PodFailed
    	dswp.podManager.(mutablePodManager).RemovePod(pod)
    
    	dswp.findAndRemoveDeletedPods()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/strategy_test.go

    			expectedIP: "",
    		},
    		{
    			name: "no status object",
    			pod: &api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Namespace: "ns", Name: "pod1"},
    				Spec:       api.PodSpec{},
    			},
    			expectedIP: "",
    		},
    		{
    			name: "no pod ips",
    			pod: &api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Namespace: "ns", Name: "pod1"},
    				Spec:       api.PodSpec{},
    				Status:     api.PodStatus{},
    			},
    			expectedIP: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

    import org.apache.ivy.core.module.id.ModuleId;
    import org.apache.ivy.core.module.id.ModuleRevisionId;
    import org.apache.ivy.plugins.matcher.PatternMatcher;
    import org.apache.ivy.plugins.namespace.Namespace;
    import org.apache.ivy.plugins.parser.xml.XmlModuleDescriptorParser;
    import org.apache.ivy.util.extendable.DefaultExtendableItem;
    import org.apache.ivy.util.url.URLHandlerRegistry;
    import org.gradle.api.GradleException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  8. fess-crawler/src/test/resources/ajax/js/jquery-2.1.1.min.js

    ger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 82.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // a resource relative to the given prefix enforcing namespace rules. If the
    // context does not contain a namespace, it errors.
    func NamespaceKeyFunc(ctx context.Context, prefix string, name string) (string, error) {
    	key := NamespaceKeyRootFunc(ctx, prefix)
    	ns, ok := genericapirequest.NamespaceFrom(ctx)
    	if !ok || len(ns) == 0 {
    		return "", apierrors.NewBadRequest("Namespace parameter required.")
    	}
    	if len(name) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	}
    	status := &kubecontainer.PodStatus{
    		ID:        pod.UID,
    		Name:      pod.Name,
    		Namespace: pod.Namespace,
    		SandboxStatuses: []*runtimeapi.PodSandboxStatus{
    			{
    				Id:       "sandboxID",
    				State:    runtimeapi.PodSandboxState_SANDBOX_READY,
    				Metadata: &runtimeapi.PodSandboxMetadata{Name: pod.Name, Namespace: pod.Namespace, Uid: "sandboxuid", Attempt: uint32(0)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top