Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for nameTable (0.15 sec)

  1. pkg/dns/client/dns_test.go

    			expected:   sets.New("*.wildcard", "*.wildcard."),
    		},
    		{
    			startsWith: "example.localhost.",
    			expected:   sets.New("example.localhost."),
    		},
    	}
    
    	nt := d.NameTable()
    	nt = proto.Clone(nt).(*dnsProto.NameTable)
    	d.BuildAlternateHosts(nt, func(althosts map[string]struct{}, ipv4 []netip.Addr, ipv6 []netip.Addr, _ []string) {
    		for host := range althosts {
    			if _, exists := nt.Table[host]; !exists {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent.go

    		}
    	}
    	return nil
    }
    
    // GetDNSTable builds DNS table used in debugging interface.
    func (a *Agent) GetDNSTable() *dnsProto.NameTable {
    	if a.localDNSServer != nil && a.localDNSServer.NameTable() != nil {
    		nt := a.localDNSServer.NameTable()
    		nt = proto.Clone(nt).(*dnsProto.NameTable)
    		a.localDNSServer.BuildAlternateHosts(nt, func(althosts map[string]struct{}, ipv4 []netip.Addr, ipv6 []netip.Addr, _ []string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. architecture/networking/pilot.md

    `Generators` get as input the `Proxy` (a representation of the current client), the current `PushContext` snapshot, and a list of config updates that caused the change.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy.go

    		ia:                    ia,
    		downstreamGrpcOptions: ia.cfg.DownstreamGrpcOptions,
    	}
    
    	if ia.localDNSServer != nil {
    		proxy.handlers[model.NameTableType] = func(resp *anypb.Any) error {
    			var nt dnsProto.NameTable
    			if err := resp.UnmarshalTo(&nt); err != nil {
    				log.Errorf("failed to unmarshal name table: %v", err)
    				return err
    			}
    			ia.localDNSServer.UpdateLookupTable(&nt)
    			return nil
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonExpiration.java

                        break;
                    }
                }
                if (LOGGER.isDebugEnabled() && !toExpire.isEmpty()) {
                    // TODO Only log expired workers count, log their "identity" once they are nameable/describable
                    LOGGER.debug("Worker Daemon(s) expired to free some system memory {}", toExpire.size());
                }
                if (notExpirable > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. src/sync/map.go

    func (e *entry) tryCompareAndSwap(old, new any) bool {
    	p := e.p.Load()
    	if p == nil || p == expunged || *p != old {
    		return false
    	}
    
    	// Copy the interface after the first load to make this method more amenable
    	// to escape analysis: if the comparison fails from the start, we shouldn't
    	// bother heap-allocating an interface value to store.
    	nc := new
    	for {
    		if e.p.CompareAndSwap(p, &nc) {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    "legendFormat": "Routes", "refId": "E" }, { "expr": "sum(irate(pilot_xds_pushes{type=\"sds\"}[1m]))", "interval": "", "legendFormat": "Secrets", "refId": "B" }, { "expr": "sum(irate(pilot_xds_pushes{type=\"nds\"}[1m]))", "interval": "", "legendFormat": "Nametables", "refId": "F" } ], "thresholds": [], "timeFrom": null, "timeRegions": [], "timeShift": null, "title": "Pilot Pushes", "tooltip": { "shared": false, "sort": 0, "value_type": "individual" }, "type": "graph", "xaxis": { "buckets": null, "mode": "time",...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top