Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for tstones (0.12 sec)

  1. tools/bug-report/pkg/bugreport/bugreport.go

    		return nil
    	}
    	if strings.Contains(err.Error(), "executable file not found in $PATH") {
    		return nil
    	}
    	return err
    }
    
    // getProxyLogs fetches proxy logs for the given namespace/pod/container and stores the output in global structs.
    // Runs if a goroutine, with errors reported through gErrors.
    // TODO(stewartbutler): output the logs to a more robust/complete structure.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. pkg/wasm/cache.go

    )
    
    // Cache models a Wasm module cache.
    type Cache interface {
    	Get(url string, opts GetOptions) (string, error)
    	Cleanup()
    }
    
    // LocalFileCache for downloaded Wasm modules. Currently it stores the Wasm module as local file.
    type LocalFileCache struct {
    	// Map from Wasm module checksum to cache entry.
    	modules map[moduleKey]*cacheEntry
    	// Map from tagged URL to checksum
    	checksums map[string]*checksumEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller.go

    type Controller struct {
    	XdsUpdater model.XDSUpdater
    
    	store     model.ConfigStore
    	clusterID cluster.ID
    
    	// This lock is to make multi ops on the below stores. For example, in some case,
    	// it requires delete all instances and then update new ones.
    	mutex sync.RWMutex
    
    	serviceInstances serviceInstancesStore
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller.go

    	// This is only used for test
    	stop chan struct{}
    
    	sync.RWMutex
    	// servicesMap stores hostname ==> service, it is used to reduce convertService calls.
    	servicesMap map[host.Name]*model.Service
    	// nodeSelectorsForServices stores hostname => label selectors that can be used to
    	// refine the set of node port IPs for a service.
    	nodeSelectorsForServices map[host.Name]labels.Instance
    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. pilot/pkg/networking/core/cluster_builder.go

    		},
    	},
    })
    
    // clusterWrapper wraps Cluster object along with upstream protocol options.
    type clusterWrapper struct {
    	cluster *cluster.Cluster
    	// httpProtocolOptions stores the HttpProtocolOptions which will be marshaled when build is called.
    	httpProtocolOptions *http.HttpProtocolOptions
    }
    
    // metadataCerts hosts client certificate related metadata specified in proxy metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/server_test.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    type handler struct {
    	// LastALPN stores the most recent ALPN requested. This is needed to determine info about a request,
    	// since the appProber strips all headers/responses.
    	lastAlpn *atomic.String
    }
    
    const (
    	testHeader      = "Some-Header"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top