Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for portnet (0.15 sec)

  1. src/net/port_unix.go

    			line = line[:i]
    		}
    		f := getFields(line)
    		if len(f) < 2 {
    			continue
    		}
    		portnet := f[1] // "80/tcp"
    		port, j, ok := dtoi(portnet)
    		if !ok || port <= 0 || j >= len(portnet) || portnet[j] != '/' {
    			continue
    		}
    		netw := portnet[j+1:] // "tcp"
    		m, ok1 := services[netw]
    		if !ok1 {
    			m = make(map[string]int)
    			services[netw] = m
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. docs/en/docs/img/sponsors/porter.png

    porter.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Aug 09 17:04:49 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  3. docs/en/docs/img/sponsors/porter-banner.png

    porter-banner.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Aug 09 17:04:49 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. .github/workflows/trusted-partners.yml

    # limitations under the License.
    # ==============================================================================
    
    name: Trusted Partner PR
    on:
      pull_request_target:
    
    permissions:
      contents: read
    
    jobs:
      assign-partner-tags:
        runs-on: ubuntu-latest
        permissions:
          # Needed to attach tags into the PR
          issues: write
          contents: write
          pull-requests: write
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 14:49:29 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. pkg/kubelet/sysctl/allowlist.go

    //
    // The parameters hostNet and hostIPC are used to forbid sysctls for pod sharing the
    // respective namespaces with the host. This check is only possible for sysctls on
    // the static default allowlist, not those on the custom allowlist provided by the admin.
    func (w *patternAllowlist) validateSysctl(sysctl string, hostNet, hostIPC bool) error {
    	sysctl = utilsysctl.NormalizeName(sysctl)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:54 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. pkg/kubelet/sysctl/allowlist_test.go

    		{sysctl: "kernel.shm_rmid_forced", hostIPC: true},
    		{sysctl: "net.ipv4.ip_local_port_range", hostNet: true},
    		{sysctl: "foo"},
    		{sysctl: "net.a.b.c", hostNet: false},
    		{sysctl: "net.ipv4.ip_local_port_range.a.b.c", hostNet: false},
    		{sysctl: "kernel.msgmax", hostIPC: true},
    		{sysctl: "kernel.sem", hostIPC: true},
    		{sysctl: "net.b.c", hostNet: true},
    	}
    	pod := &v1.Pod{}
    	pod.Spec.SecurityContext = &v1.PodSecurityContext{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:54 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/cds.go

    	}
    
    	port, ok := svc.Ports.GetByPort(portNum)
    	if !ok {
    		return nil, fmt.Errorf("cds gen for %s: did not find port %d in service for cluster %s", node.ID, portNum, defaultClusterName)
    	}
    
    	return &clusterBuilder{
    		node: node,
    		push: push,
    
    		defaultClusterName: defaultClusterName,
    		hostname:           hostname,
    		portNum:            portNum,
    		filter:             filter,
    
    		svc:  svc,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. pkg/registry/core/node/strategy.go

    	if portReq == "" || portReq == info.Port {
    		return &url.URL{
    				Scheme: info.Scheme,
    				Host:   net.JoinHostPort(info.Hostname, info.Port),
    			},
    			info.Transport,
    			nil
    	}
    
    	// Otherwise, return the requested scheme and port, and the proxy transport
    	return &url.URL{Scheme: schemeReq, Host: net.JoinHostPort(info.Hostname, portReq)}, proxyTransport, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/defaults_test.go

    	hostPortNum := s2.Containers[0].Ports[0].HostPort
    	if hostPortNum != portNum {
    		t.Errorf("Expected container port to be defaulted, was made %d instead of %d", hostPortNum, portNum)
    	}
    
    	hostPortNum = s2.InitContainers[0].Ports[0].HostPort
    	if hostPortNum != portNum {
    		t.Errorf("Expected container port to be defaulted, was made %d instead of %d", hostPortNum, portNum)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactStatus.java

         */
        public static final ArtifactStatus CONVERTED = new ArtifactStatus("converted", 2);
    
        /**
         * Moderate trust - it was deployed directly from a partner.
         */
        public static final ArtifactStatus PARTNER = new ArtifactStatus("partner", 3);
    
        /**
         * Moderate trust - it was deployed directly by a user.
         */
        public static final ArtifactStatus DEPLOYED = new ArtifactStatus("deployed", 4);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top