Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 71 for Eads (0.07 sec)

  1. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    			if pod == nil && expectedPod {
    				continue
    			}
    			builder := esc.c.NewEndpointBuilder(pod)
    			// EDS and ServiceEntry use name for service port - ADS will need to map to numbers.
    			for _, port := range slice.Ports {
    				var portNum int32
    				if port.Port != nil {
    					portNum = *port.Port
    				}
    				var portName string
    				if port.Name != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. pkg/model/proxy.go

    	//
    	// This field is intended for use in those scenarios where a user needs to
    	// onboard a workload from a VM without relying on auto-registration.
    	//
    	// At runtime, when a proxy establishes an ADS connection to the istiod,
    	// istiod will treat a non-empty value of this field as an indicator
    	// that proxy corresponds to a VM and must be represented by a WorkloadEntry
    	// with a given name.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. src/encoding/base32/base32.go

    	}
    	enc.padChar = padding
    	return &enc
    }
    
    /*
     * Encoder
     */
    
    // Encode encodes src using the encoding enc,
    // writing [Encoding.EncodedLen](len(src)) bytes to dst.
    //
    // The encoding pads the output to a multiple of 8 bytes,
    // so Encode is not appropriate for use on individual blocks
    // of a large data stream. Use [NewEncoder] instead.
    func (enc *Encoding) Encode(dst, src []byte) {
    	if len(src) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. pilot/pkg/xds/debug.go

    	s.addDebugHandler(mux, internalMux, "/debug/ndsz", "Status and debug interface for NDS", s.ndsz)
    	s.addDebugHandler(mux, internalMux, "/debug/adsz", "Status and debug interface for ADS", s.adsz)
    	s.addDebugHandler(mux, internalMux, "/debug/adsz?push=true", "Initiates push of the current state to all connected endpoints", s.adsz)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  5. src/encoding/base64/base64.go

    var RawURLEncoding = URLEncoding.WithPadding(NoPadding)
    
    /*
     * Encoder
     */
    
    // Encode encodes src using the encoding enc,
    // writing [Encoding.EncodedLen](len(src)) bytes to dst.
    //
    // The encoding pads the output to a multiple of 4 bytes,
    // so Encode is not appropriate for use on individual blocks
    // of a large data stream. Use [NewEncoder] instead.
    func (enc *Encoding) Encode(dst, src []byte) {
    	if len(src) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_builder.go

    		return
    	}
    
    	c.EdsClusterConfig = &cluster.Cluster_EdsClusterConfig{
    		ServiceName: c.Name,
    		EdsConfig: &core.ConfigSource{
    			ConfigSourceSpecifier: &core.ConfigSource_Ads{
    				Ads: &core.AggregatedConfigSource{},
    			},
    			InitialFetchTimeout: durationpb.New(0),
    			ResourceApiVersion:  core.ApiVersion_V3,
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    		if c == ' ' {
    			column++
    		} else if c == '\t' {
    			column++
    			for column%8 != 0 {
    				column++
    			}
    		} else {
    			break
    		}
    	}
    	return column
    }
    
    // rightPad pads the input with spaces on the right-hand-side to make it have
    // at least width n. It treats tabs as enough spaces that lead to the next
    // 8-aligned tab-stop.
    func rightPad(s string, n int) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/LongMath.java

           * roundArbitrarilyAsLong is Long.MAX_VALUE. (This is the only way this condition can occur as
           * otherwise the conversion back to long pads with zero bits.) In this case we know that
           * roundArbitrarily > x. (This is important when x == Long.MAX_VALUE ==
           * roundArbitrarilyAsLong.)
           */
          cmpXToRoundArbitrarily = -1;
        } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/math/LongMath.java

           * roundArbitrarilyAsLong is Long.MAX_VALUE. (This is the only way this condition can occur as
           * otherwise the conversion back to long pads with zero bits.) In this case we know that
           * roundArbitrarily > x. (This is important when x == Long.MAX_VALUE ==
           * roundArbitrarilyAsLong.)
           */
          cmpXToRoundArbitrarily = -1;
        } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/server.go

    func (s *Server) initDiscoveryService() {
    	log.Infof("starting discovery service")
    	// Implement EnvoyXdsServer grace shutdown
    	s.addStartFunc("xds server", func(stop <-chan struct{}) error {
    		log.Infof("Starting ADS server")
    		s.XDSServer.Start(stop)
    		return nil
    	})
    }
    
    // Wait for the stop, and do cleanups
    func (s *Server) waitForShutdown(stop <-chan struct{}) {
    	go func() {
    		<-stop
    		close(s.internalStop)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top