Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for ndsz (0.05 sec)

  1. pilot/pkg/xds/debug.go

    	s.addDebugHandler(mux, internalMux, "/debug/edsz", "Status and debug interface for EDS", s.Edsz)
    	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)
  2. pilot/pkg/xds/debuggen.go

    	anypb "google.golang.org/protobuf/types/known/anypb"
    
    	"istio.io/istio/pilot/pkg/model"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    )
    
    var activeNamespaceDebuggers = map[string]struct{}{
    	"config_dump": {},
    	"ndsz":        {},
    	"edsz":        {},
    }
    
    // DebugGen is a Generator for istio debug info
    type DebugGen struct {
    	Server          *DiscoveryServer
    	SystemNamespace string
    	DebugMux        *http.ServeMux
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 18:51:52 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. pkg/test/kube/dump.go

    			if err != nil {
    				return err
    			}
    			defer fw.Close()
    			dumpProxyCommand(c, fw, pod, workDir, "ndsz.json", "debug/ndsz")
    			dumpProxyCommand(c, fw, pod, workDir, "proxy-stats.txt", "stats/prometheus")
    			return nil
    		})
    	}
    	if err := g.Wait(); err != nil {
    		scopes.Framework.Errorf("failed to dump ndsz: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/status/server.go

    		mux.HandleFunc("/debug/pprof/profile", s.handlePprofProfile)
    		mux.HandleFunc("/debug/pprof/symbol", s.handlePprofSymbol)
    		mux.HandleFunc("/debug/pprof/trace", s.handlePprofTrace)
    	}
    	mux.HandleFunc("/debug/ndsz", s.handleNdsz)
    
    	l, err := net.Listen("tcp", fmt.Sprintf(":%d", s.statusPort))
    	if err != nil {
    		log.Errorf("Error listening on status port: %v", err.Error())
    		return
    	}
    	// for testing.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  5. pilot/pkg/xds/nds.go

    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // NdsGenerator generates config for Nds i.e. Name Discovery Service. Istio agents
    // send NDS requests to istiod and istiod responds with a list of services and their
    // associated IPs (including service entries).
    // The agent then updates its internal DNS based on this data. If DNS capture is enabled
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. pkg/dns/proto/nds.proto

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    syntax = "proto3";
    
    package istio.networking.nds.v1;
    
    option go_package = "istio.io/istio/pkg/dns/proto/istio_networking_nds_v1";
    
    // Table of hostnames and their IPs to br used for DNS resolution at the agent
    // Sent by istiod to istio agents via xds
    message NameTable {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 01 20:40:32 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  7. pkg/dns/proto/nds.pb.go

    	(*NameTable)(nil),          // 0: istio.networking.nds.v1.NameTable
    	(*NameTable_NameInfo)(nil), // 1: istio.networking.nds.v1.NameTable.NameInfo
    	nil,                        // 2: istio.networking.nds.v1.NameTable.TableEntry
    }
    var file_dns_proto_nds_proto_depIdxs = []int32{
    	2, // 0: istio.networking.nds.v1.NameTable.table:type_name -> istio.networking.nds.v1.NameTable.TableEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/transform/transform.go

    				if !t(r) {
    					if nDst+3 > len(dst) {
    						err = ErrShortDst
    						break
    					}
    					nDst += copy(dst[nDst:], "\uFFFD")
    				}
    				nSrc++
    				continue
    			}
    		}
    
    		if !t(r) {
    			if nDst+sz > len(dst) {
    				err = ErrShortDst
    				break
    			}
    			nDst += copy(dst[nDst:], src[:sz])
    		}
    		nSrc += sz
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/norm/transform.go

    func (f Form) transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	// TODO: get rid of reorderBuffer. See CL 23460044.
    	rb := reorderBuffer{}
    	rb.init(f, src)
    	for {
    		// Load segment into reorder buffer.
    		rb.setFlusher(dst[nDst:], flushTransform)
    		end := decomposeSegment(&rb, nSrc, atEOF)
    		if end < 0 {
    			return nDst, nSrc, errs[-end]
    		}
    		nDst = len(dst) - len(rb.out)
    		nSrc = end
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/unicode/norm/transform.go

    func (f Form) transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	// TODO: get rid of reorderBuffer. See CL 23460044.
    	rb := reorderBuffer{}
    	rb.init(f, src)
    	for {
    		// Load segment into reorder buffer.
    		rb.setFlusher(dst[nDst:], flushTransform)
    		end := decomposeSegment(&rb, nSrc, atEOF)
    		if end < 0 {
    			return nDst, nSrc, errs[-end]
    		}
    		nDst = len(dst) - len(rb.out)
    		nSrc = end
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top