Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for portnet (0.12 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. pkg/test/framework/components/echo/portgen.go

    Nathan Mittler <******@****.***> 1646353444 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 04 00:24:04 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. .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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/controller/endpointslicemirroring/reconciler.go

    	slices := slicesByAction{}
    
    	for portKey, desiredEndpoints := range d.endpointsByKey {
    		numEndpoints := len(desiredEndpoints)
    		pmSlices, pmTotals := r.reconcileByPortMapping(
    			endpoints, existingSlicesByKey[portKey], desiredEndpoints, d.portsByKey[portKey], portKey.addressType())
    
    		slices.append(pmSlices)
    		totals.add(pmTotals)
    
    		epMetrics.Set(endpointsliceutil.PortMapKey(portKey), metrics.EfficiencyInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_convergence_loop.txt

    # tidy' treats "no package can be added" as a terminal state.
    
    go get example.net/w@v0.2.0-pre example.net/x@v0.2.0-pre example.net/y@v0.2.0-pre example.net/z@v0.2.0-pre
    go mod tidy -e
    cmp go.mod go.mod.postget
    go mod tidy -e
    cmp go.mod go.mod.postget
    
    
    # The 'tidy' logic for a lazy main module requires more iterations to converge,
    # because it is willing to drop dependencies on non-root modules that do not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top