Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,540 for namespace_a (0.31 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/DefaultMutableIvyModuleResolveMetadata.java

        @Override
        public ImmutableList<Exclude> getExcludes() {
            return excludes;
        }
    
        @Override
        public ImmutableMap<NamespaceId, String> getExtraAttributes() {
            return extraAttributes;
        }
    
        @Override
        public void setExtraAttributes(Map<NamespaceId, String> extraAttributes) {
            this.extraAttributes = ImmutableMap.copyOf(extraAttributes);
        }
    
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyExtraInfoSpec.java

    import org.gradle.api.internal.artifacts.ivyservice.NamespaceId;
    import org.gradle.api.publish.ivy.IvyExtraInfoSpec;
    import org.gradle.internal.xml.XmlValidation;
    
    public class DefaultIvyExtraInfoSpec extends DefaultIvyExtraInfo implements IvyExtraInfoSpec {
        public DefaultIvyExtraInfoSpec() {
            super();
        }
    
        @Override
        public void add(String namespace, String name, String value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml

        namespace: istio-system
      rules:
      - backendRefs:
        - name: httpbin
          port: 85
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: bind-cross-namespace
      namespace: group-namespace1
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
        sectionName: slctr-labels
      - name: gateway
        namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. cmd/namespace-lock.go

    	return &nsMutex
    }
    
    // nsLock - provides primitives for locking critical namespace regions.
    type nsLock struct {
    	ref int32
    	*lsync.LRWMutex
    }
    
    // nsLockMap - namespace lock map, provides primitives to Lock,
    // Unlock, RLock and RUnlock.
    type nsLockMap struct {
    	// Indicates if namespace is part of a distributed setup.
    	isDistErasure bool
    	lockMap       map[string]*nsLock
    	lockMapMutex  sync.Mutex
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 05 23:56:35 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. cmd/namespace-lock_test.go

    // Tests getSource().
    func TestGetSource(t *testing.T) {
    	currentSource := func() string { return getSource(2) }
    	gotSource := currentSource()
    	// Hard coded line number, 35, in the "expectedSource" value
    	expectedSource := "[namespace-lock_test.go:35:TestGetSource()]"
    	if gotSource != expectedSource {
    		t.Errorf("expected : %s, got : %s", expectedSource, gotSource)
    	}
    }
    
    // Test lock race
    func TestNSLockRace(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/cluster/cluster_test.go

    			"tested namespace not skip 2",
    			&v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace: "in-namespace1",
    				},
    			},
    			&config2.BugReportConfig{
    				Include: []*config2.SelectionSpec{
    					{
    						Namespaces: []string{"in*"},
    					},
    				},
    				Exclude: []*config2.SelectionSpec{
    					{
    						Namespaces: []string{"ex*"},
    					},
    				},
    			},
    			false,
    		},
    		{
    			"tested namespace not skip 3",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 17:23:32 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/MutableIvyModuleResolveMetadata.java

        /**
         * Returns the Ivy excludes of this component.
         */
        ImmutableList<Exclude> getExcludes();
    
        ImmutableMap<NamespaceId, String> getExtraAttributes();
    
        void setExtraAttributes(Map<NamespaceId, String> extraAttributes);
    
        @Nullable
        String getBranch();
    
        void setBranch(@Nullable String branch);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_file_renderer.cc

        includes_.SelfHeader();
      }
    
      includes_.Headers();
      name_space_.Open();
      BlankLine();
    
      for (const OpView &op : ops_) {
        OpRenderer(context_, op).Render();
      }
    
      name_space_.Close();
      if (context_.mode == RendererContext::kHeader) {
        guard_.Close();
      }
    }
    
    }  // namespace cpp
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    	)
    
    	prf0 := statsapi.PodReference{Name: pName0, Namespace: namespace0, UID: "UID" + pName0}
    	prf1 := statsapi.PodReference{Name: pName1, Namespace: namespace0, UID: "UID" + pName1}
    	prf2 := statsapi.PodReference{Name: pName2, Namespace: namespace2, UID: "UID" + pName2}
    	prf3 := statsapi.PodReference{Name: pName3, Namespace: namespace0, UID: "UID" + pName3}
    	infos := map[string]cadvisorapiv2.ContainerInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/IvySpecificComponentMetadataRulesIntegrationTest.groovy

        }
    
        private static NamespaceId ns(String name) {
            return new NamespaceId("http://my.extra.info/${name}", name)
        }
    
        private static String declareNS(String name) {
            "(new javax.xml.namespace.QName('http://my.extra.info/${name}', '${name}'))"
        }
    
        private static String sq(String input) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top