Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,034 for It (0.02 sec)

  1. pilot/pkg/networking/telemetry/telemetry.go

    	// KubernetesServiceNamespace is the namespace the service is defined in, if it is for a Kubernetes Service.
    	// Note: This is best effort; this may be empty if generated by Sidecar config, and there may be multiple
    	// Services that make up the filter chain.
    	KubernetesServiceNamespace string
    	// KubernetesServiceName is the name of service, if it is for a Kubernetes Service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. pkg/util/smallset/smallset.go

    //
    // *Set construction*: sets is roughly 1kb allocations per 250 items. smallsets is 0.
    // *Contains* sets is O(1). smallsets is O(logn). smallsets is typically faster up to about 5 elements.
    //
    //	At 1000 items, it is roughly 5x slower (30ns vs 5ns).
    type Set[T constraints.Ordered] struct {
    	items []T
    }
    
    // NewPresorted creates a new Set with the given items.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. pkg/hbone/util.go

    	// Duplicated from io
    
    	// This will prevent stats from working.
    	// If the reader has a WriteTo method, use it to do the copy.
    	// Avoids an allocation and a copy.
    	//if wt, ok := src.(io.WriterTo); ok {
    	//	return wt.WriteTo(dst)
    	//}
    	// Similarly, if the writer has a ReadFrom method, use it to do the copy.
    	//if rt, ok := dst.(io.ReaderFrom); ok {
    	//	return rt.ReadFrom(src)
    	//}
    	for {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/netns_linux_test.go

    package nodeagent
    
    import "testing"
    
    func TestOpenNetns(t *testing.T) {
    	ns, err := OpenNetns("/proc/self/ns/net")
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	// the inode for netns is proc dynamic, so it needs to be higher than
    	// #define PROC_DYNAMIC_FIRST 0xF0000000U
    
    	if ns.Inode() < 0xF0000000 {
    		t.Fatalf("unexpected inode: %v", ns.Inode())
    	}
    	defer ns.Close()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 976 bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	// First, we want to handle VIP subscriptions. Example:
    	// Client subscribes to VIP1. Pod1, part of VIP1, is sent.
    	// The client wouldn't be explicitly subscribed to Pod1, so it would normally ignore it.
    	// Since it is a part of VIP1 which we are subscribe to, add it to the subscriptions
    	for addr := range allAddresses {
    		for _, wl := range model.ExtractWorkloadsFromAddresses(a.Lookup(addr)) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. pkg/log/options.go

    	// files are called backups. Once a backup has been created,
    	// output resumes to this path.
    	RotateOutputPath string
    
    	// RotationMaxSize is the maximum size in megabytes of a log file before it gets
    	// rotated. It defaults to 100 megabytes.
    	RotationMaxSize int
    
    	// RotationMaxAge is the maximum number of days to retain old log files based on the
    	// timestamp encoded in their filename. Note that a day is defined as 24
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. tests/integration/helm/install_test.go

    	framework.
    		NewTest(t).
    		RequireKubernetesMinorVersion(30).
    		Run(setupInstallationWithCustomCheck(overrideValuesStr, false, DefaultNamespaceConfig, func(t framework.TestContext) {
    			// Try to apply an EnvoyFilter (it should be rejected)
    			expectedErrorPrefix := `%s "sample" is forbidden: ValidatingAdmissionPolicy 'stable-channel-default-policy.istio.io' ` +
    				`with binding 'stable-channel-default-policy-binding.istio.io' denied request`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. common/scripts/tracing.sh

    # If you're looking at this file in a different repo and want to make a change, please go to the
    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    # Copyright Istio Authors
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 15:25:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. pkg/config/mesh/networks_watcher.go

    	handlers     []*WatcherHandlerRegistration
    	networks     *meshconfig.MeshNetworks
    	prevNetworks *meshconfig.MeshNetworks
    }
    
    // NewFixedNetworksWatcher creates a new NetworksWatcher that always returns the given config.
    // It will never fire any events, since the config never changes.
    func NewFixedNetworksWatcher(networks *meshconfig.MeshNetworks) NetworksWatcher {
    	return &internalNetworkWatcher{
    		networks: networks,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 18:33:38 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. samples/helloworld/README.md

    # Helloworld service
    
    This sample includes two versions of a simple helloworld service that returns its version
    and instance (hostname) when called.
    It can be used as a test service when experimenting with version routing.
    
    This service is also used to demonstrate canary deployments working in conjunction with autoscaling.
    See [Canary deployments using Istio](https://istio.io/blog/2017/0.1-canary).
    
    ## Start the helloworld service
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top