Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,614 for namespace_b (0.18 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializer.java

            }
    
            private void writeExtraInfo(Map<NamespaceId, String> extraInfo) throws IOException {
                writeCount(extraInfo.size());
                for (Map.Entry<NamespaceId, String> entry : extraInfo.entrySet()) {
                    NamespaceId namespaceId = entry.getKey();
                    writeString(namespaceId.getNamespace());
                    writeString(namespaceId.getName());
                    writeString(entry.getValue());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/config/config.go

    )
    
    type ResourceType int
    
    const (
    	Namespace ResourceType = iota
    	Deployment
    	Pod
    	Label
    	Annotation
    	Container
    )
    
    // SelectionSpec is a spec for pods that will be Include in the capture
    // archive. The format is:
    //
    //	Namespace1,Namespace2../Deployments/Pods/Label1,Label2.../Annotation1,Annotation2.../ContainerName1,ContainerName2...
    //
    // Namespace, pod and container names are pattern matching while labels
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. pkg/kubelet/server/stats/volume_stat_calculator_test.go

    			Name:      pvcClaimName0,
    			Namespace: namespace0,
    		},
    		FsStats:           expectedFSStats(),
    		VolumeHealthStats: expectedVolumeHealthStats(),
    	})
    	// // Verify 'vol2' has a PVC reference
    	assert.Contains(t, append(vs.EphemeralVolumes, vs.PersistentVolumes...), kubestats.VolumeStats{
    		Name: vol2,
    		PVCRef: &kubestats.PVCReference{
    			Name:      pvcClaimName1,
    			Namespace: namespace0,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top