Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 73 of 73 for uds (3.55 sec)

  1. pilot/pkg/model/context.go

    func IsPrivilegedPort(port uint32) bool {
    	// check for 0 is important because:
    	// 1) technically, 0 is not a privileged port; any process can ask to bind to 0
    	// 2) this function will be receiving 0 on input in the case of UDS listeners
    	return 0 < port && port < 1024
    }
    
    func (node *Proxy) IsVM() bool {
    	// TODO use node metadata to indicate that this is a VM instead of the TestVMLabel
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  2. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	stopCh := ctx.Done()
    	delayedStopCh := s.lifecycleSignals.AfterShutdownDelayDuration
    	shutdownInitiatedCh := s.lifecycleSignals.ShutdownInitiated
    
    	// Clean up resources on shutdown.
    	defer s.Destroy()
    
    	// If UDS profiling is enabled, start a local http server listening on that socket
    	if s.UnprotectedDebugSocket != nil {
    		go func() {
    			defer utilruntime.HandleCrash()
    			klog.Error(s.UnprotectedDebugSocket.Run(stopCh))
    		}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway.go

    					iac.CidrRanges = append(iac.CidrRanges, cidr)
    				}
    			}
    			httpConnManager.InternalAddressConfig = iac
    		}
    	}
    
    	return httpConnManager
    }
    
    // sdsPath: is the path to the mesh-wide workload sds uds path, and it is assumed that if this path is unset, that sds is
    // disabled mesh-wide
    // metadata: map of miscellaneous configuration values sent from the Envoy instance back to Pilot, could include the field
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top