Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for portnet (0.14 sec)

  1. pilot/pkg/model/endpointshards.go

    			var portNum int
    			if ep.LegacyClusterPortKey != 0 {
    				if !ports.Contains(ep.LegacyClusterPortKey) {
    					continue
    				}
    				portNum = ep.LegacyClusterPortKey
    			} else {
    				pn, f := portMap[ep.ServicePortName]
    				if !f {
    					continue
    				}
    				portNum = pn
    			}
    			res[portNum] = append(res[portNum], ep)
    		}
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    			t, ok := p["targetPort"].(float64)
    			if !ok {
    				continue
    			}
    			tp = int(t)
    		}
    
    		rport, ok := p["port"].(float64)
    		if !ok {
    			continue
    		}
    		portnum := int(rport)
    		if tp == 0 && portnum > 1024 {
    			// Target port defaults to port. If its >1024, it is safe.
    			continue
    		}
    		if tp < 1024 {
    			// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    			for _, port := range slice.Ports {
    				var portNum int32
    				if port.Port != nil {
    					portNum = *port.Port
    				}
    				var portName string
    				if port.Name != nil {
    					portName = *port.Name
    				}
    
    				istioEndpoint := builder.buildIstioEndpoint(a, portNum, portName, discoverabilityPolicy, healthStatus)
    				endpoints = append(endpoints, istioEndpoint)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller.go

    				svcPort, f := modelService.Ports.Get(port.Name)
    				if !f {
    					return nil, fmt.Errorf("failed to get svc port for %v", port.Name)
    				}
    
    				var portNum int
    				if len(proxy.Metadata.PodPorts) > 0 {
    					var err error
    					portNum, err = findPortFromMetadata(port, proxy.Metadata.PodPorts)
    					if err != nil {
    						return nil, fmt.Errorf("failed to find target port for %v: %v", proxy.ID, err)
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  5. OWNERS_ALIASES

        - kow3ns
        - janetkuo
        - soltysh
        - smarterclayton
        - atiratree
      sig-apps-reviewers:
        - alculquicondor
        - atiratree
        - janetkuo
        - kow3ns
        - krmayankk
        - mortent
        - smarterclayton
        - soltysh
      # sig-apps-emeritus:
      # - tnozicka
    
      sig-autoscaling-maintainers:
        - bskiba
        - MaciekPytel
        - mwielgus
      sig-instrumentation-approvers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. docs/en/data/github_sponsors.yml

    sponsors:
    - - login: bump-sh
        avatarUrl: https://avatars.githubusercontent.com/u/33217836?v=4
        url: https://github.com/bump-sh
      - login: porter-dev
        avatarUrl: https://avatars.githubusercontent.com/u/62078005?v=4
        url: https://github.com/porter-dev
      - login: andrew-propelauth
        avatarUrl: https://avatars.githubusercontent.com/u/89474256?u=1188c27cb744bbec36447a2cfd4453126b2ddb5c&v=4
        url: https://github.com/andrew-propelauth
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. src/go/build/read.go

    	}
    
    	return nil
    }
    
    // isValidImport checks if the import is a valid import using the more strict
    // checks allowed by the implementation restriction in https://go.dev/ref/spec#Import_declarations.
    // It was ported from the function of the same name that was removed from the
    // parser in CL 424855, when the parser stopped doing these checks.
    func isValidImport(s string) bool {
    	const illegalChars = `!"#$%&'()*,:;<=>?[\]^{|}` + "`\uFFFD"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/runtime/metrics_test.go

    		delayMicros := delay.Microseconds()
    
    		// The goroutine that acquires the lock will only proceed when it
    		// detects that its partner is contended for the lock. That will lead to
    		// live-lock if anything (such as a STW) prevents the partner goroutine
    		// from running. Allowing the contention workers to pause and restart
    		// (to allow a STW to proceed) makes it harder to confirm that we're
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  9. src/runtime/chan.go

    	racereleaseg(sg.g, chanbuf(c, 0))
    	raceacquire(chanbuf(c, 0))
    }
    
    // Notify the race detector of a send or receive involving buffer entry idx
    // and a channel c or its communicating partner sg.
    // This function handles the special case of c.elemsize==0.
    func racenotify(c *hchan, idx uint, sg *sudog) {
    	// We could have passed the unsafe.Pointer corresponding to entry idx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. pkg/api/pod/util.go

    		// if old spec has an invalid projected token volume path, we must allow it
    		opts.AllowNonLocalProjectedTokenPath = hasNonLocalProjectedTokenPath(oldPodSpec)
    
    		// if old spec has invalid sysctl with hostNet or hostIPC, we must allow it when update
    		if oldPodSpec.SecurityContext != nil && len(oldPodSpec.SecurityContext.Sysctls) != 0 {
    			for _, s := range oldPodSpec.SecurityContext.Sysctls {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
Back to top