Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,540 for namespace_b (0.28 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/core.v1.Namespace.json

    {
      "kind": "Namespace",
      "apiVersion": "v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
        "labels": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Namespace.json

    {
      "kind": "Namespace",
      "apiVersion": "v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
        "labels": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyModuleResolveMetaDataBuilder.java

    import org.gradle.api.artifacts.component.ModuleComponentIdentifier;
    import org.gradle.api.internal.artifacts.DefaultModuleIdentifier;
    import org.gradle.api.internal.artifacts.ivyservice.NamespaceId;
    import org.gradle.api.internal.artifacts.repositories.metadata.IvyMutableModuleMetadataFactory;
    import org.gradle.internal.component.external.descriptor.Artifact;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. releasenotes/notes/fix-42675.yaml

    issue:
      - 42675
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 05 06:45:35 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/model.go

    func (refs AllowedReferences) SecretAllowed(resourceName string, namespace string) bool {
    	p, err := creds.ParseResourceName(resourceName, "", "", "")
    	if err != nil {
    		log.Warnf("failed to parse resource name %q: %v", resourceName, err)
    		return false
    	}
    	from := Reference{Kind: gvk.KubernetesGateway, Namespace: k8s.Namespace(namespace)}
    	to := Reference{Kind: gvk.Secret, Namespace: k8s.Namespace(p.Namespace)}
    	allow := refs[from][to]
    	if allow == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/operator_test.go

    			hub:               "foo.io/istio",
    			tag:               "1.2.3",
    			imagePullSecrets:  []string{"imagePullSecret1,imagePullSecret2"},
    			operatorNamespace: "operator-test-namespace",
    			watchedNamespaces: "istio-test-namespace1,istio-test-namespace2",
    		},
    	}
    
    	cmd := "operator dump --hub " + odArgs.common.hub
    	cmd += " --tag " + odArgs.common.tag
    	cmd += " --imagePullSecrets " + strings.Join(odArgs.common.imagePullSecrets, ",")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultIvyModuleDescriptor.java

    public class DefaultIvyModuleDescriptor implements IvyModuleDescriptor {
        private final String branch;
        private final String ivyStatus;
        private final IvyExtraInfo extraInfo;
    
        public DefaultIvyModuleDescriptor(Map<NamespaceId, String> extraInfo, @Nullable String branch, String ivyStatus) {
            this.extraInfo = new DefaultIvyExtraInfo(extraInfo);
            this.branch = branch;
            this.ivyStatus = ivyStatus;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion_test.go

    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "group-namespace1",
    		},
    		Ports:    ports,
    		Hostname: "httpbin.group-namespace1.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "group-namespace2",
    		},
    		Ports:    ports,
    		Hostname: "httpbin.group-namespace2.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  9. pkg/registry/core/namespace/strategy.go

    	newNamespace := obj.(*api.Namespace)
    	oldNamespace := old.(*api.Namespace)
    	newNamespace.Spec.Finalizers = oldNamespace.Spec.Finalizers
    	newNamespace.Status = oldNamespace.Status
    }
    
    // Validate validates a new namespace.
    func (namespaceStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
    	namespace := obj.(*api.Namespace)
    	return validation.ValidateNamespace(namespace)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 07 08:51:17 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  10. tests/integration/security/testdata/authz/not-namespace.yaml.tmpl

    Akshay J Nambiar <******@****.***> 1683529381 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 293 bytes
    - Viewed (0)
Back to top