Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for externalDep (0.2 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/SamplesMavenPublishIntegrationTest.groovy

            inDirectory(sampleDir)
    
            and:
            def artifactId = "maven-conditional-publishing"
            def version = "1.0"
            def externalRepo = maven(sampleDir.file("build/repos/external"))
            def binary = externalRepo.module("org.gradle.sample", artifactId, version).withModuleMetadata()
            def internalRepo = maven(sampleDir.file("build/repos/internal"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. cluster/addons/metrics-server/metrics-server-deployment.yaml

            - /metrics-server
            - --metric-resolution=15s
            - --kubelet-use-node-status-port
            - --kubelet-insecure-tls
            - --kubelet-preferred-address-types=InternalIP,Hostname,InternalDNS,ExternalDNS,ExternalIP
            - --cert-dir=/tmp
            - --secure-port=10250
            ports:
            - containerPort: 10250
              name: https
              protocol: TCP
            readinessProbe:
              httpGet:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/encoding/gob/decode.go

    	// The parentheses look odd but are correct.
    	if (ut.externalDec == xGob) != (ok && wire.GobEncoderT != nil) ||
    		(ut.externalDec == xBinary) != (ok && wire.BinaryMarshalerT != nil) ||
    		(ut.externalDec == xText) != (ok && wire.TextMarshalerT != nil) {
    		return false
    	}
    	if ut.externalDec != 0 { // This test trumps all others.
    		return true
    	}
    	switch t := ut.base; t.Kind() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  4. prow/config/metrics/metrics.yaml

          labels:
            k8s-app: metrics-server
        spec:
          containers:
          - args:
            - --cert-dir=/tmp
            - --secure-port=10250
            - --kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname
            - --kubelet-use-node-status-port
            - --metric-resolution=15s
            - --kubelet-insecure-tls
            image: registry.k8s.io/metrics-server/metrics-server:v0.7.1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 20:51:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. pkg/proxy/winkernel/proxier_test.go

    		if svcInfo.nodePorthnsID != "" {
    			t.Errorf("NodePortHnsID %v is not empty.", svcInfo.nodePorthnsID)
    		}
    		// Verifying ExternalIP Loadbalancer is not created
    		for _, externalIP := range svcInfo.externalIPs {
    			if externalIP.hnsID != "" {
    				t.Errorf("ExternalLBID %v is not empty.", externalIP.hnsID)
    			}
    		}
    		// Verifying IngressIP Loadbalancer is not created
    		for _, ingressIP := range svcInfo.loadBalancerIngressIPs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. src/encoding/gob/type.go

    		ut.externalDec, ut.decIndir = xGob, indir
    	} else if ok, indir := implementsInterface(ut.user, binaryUnmarshalerInterfaceType); ok {
    		ut.externalDec, ut.decIndir = xBinary, indir
    	}
    
    	// See note above.
    	// } else if ok, indir := implementsInterface(ut.user, textUnmarshalerInterfaceType); ok {
    	// 	ut.externalDec, ut.decIndir = xText, indir
    	// }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. pkg/util/node/node_test.go

    	testcases := []struct {
    		name      string
    		addresses []v1.NodeAddress
    
    		expectIPs []net.IP
    	}{
    		{
    			name:      "no addresses",
    			expectIPs: nil,
    		},
    		{
    			name: "no InternalIP/ExternalIP",
    			addresses: []v1.NodeAddress{
    				{Type: v1.NodeHostName, Address: "example.com"},
    			},
    			expectIPs: nil,
    		},
    		{
    			name: "IPv4-only, simple",
    			addresses: []v1.NodeAddress{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    			})
    		}
    
    		// Capture externalIPs.
    		for _, externalIP := range svcInfo.ExternalIPs() {
    			if hasEndpoints {
    				// Send traffic bound for external IPs to the "external
    				// destinations" chain.
    				tx.Add(&knftables.Element{
    					Map: serviceIPsMap,
    					Key: []string{
    						externalIP.String(),
    						protocol,
    						strconv.Itoa(svcInfo.Port()),
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

    spec:
      podCIDR: 10.0.0.1/24
      providerID: some-provider-id-of-some-sort
    status:
      addresses:
      - address: 10.0.0.1
        type: InternalIP
      - address: 192.168.0.1
        type: ExternalIP
      - address: node-default-pool-something
        type: Hostname
      allocatable:
        cpu: 3920m
        ephemeral-storage: "104638878617"
        hugepages-2Mi: "0"
        memory: 12700100Ki
        pods: "110"
      capacity:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

    spec:
      podCIDR: 10.0.0.1/24
      providerID: some-provider-id-of-some-sort
    status:
      addresses:
      - address: 10.0.0.1
        type: InternalIP
      - address: 192.168.0.1
        type: ExternalIP
      - address: node-default-pool-something
        type: Hostname
      allocatable:
        cpu: 3920m
        ephemeral-storage: "104638878617"
        hugepages-2Mi: "0"
        memory: 12700100Ki
        pods: "110"
      capacity:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top