Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for Implementation (0.21 sec)

  1. pilot/pkg/config/monitor/monitor.go

    			}
    		}
    	}()
    	return nil
    }
    
    // recursiveWatcher wraps a fsnotify wrapper to add a best-effort recursive directory watching in user
    // space. See https://github.com/fsnotify/fsnotify/issues/18. The implementation is inherently racy,
    // as files added to a directory immediately after creation may not trigger events; as such it is only useful
    // when an event causes a full reconciliation, rather than acting on an individual event
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/README.md

    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Explicitly set values have highest priority, then profile settings, then chart defaults.
    
    As an implementation detail of profiles, the default values for the chart are all nested under `defaults`.
    When configuring the chart, you should not include this.
    That is, `--set some.field=true` should be passed, not `--set defaults.some.field=true`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. pkg/test/framework/components/environment/kube/kube.go

    	"istio.io/istio/pkg/test/framework/components/cluster/kube"
    	"istio.io/istio/pkg/test/framework/config"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    // Environment is the implementation of a kubernetes environment. It implements environment.Environment,
    // and also hosts publicly accessible methods that are specific to cluster environment.
    type Environment struct {
    	id       resource.ID
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/monitoring.go

    			return nil, fmt.Errorf("unable to listen on socket: %v", err)
    		}
    	}
    
    	// NOTE: this is a temporary solution to provide bare-bones debug functionality
    	// for pilot. a full design / implementation of self-monitoring and reporting
    	// is coming. that design will include proper coverage of statusz/healthz type
    	// functionality, in addition to how pilot reports its own metrics.
    	if err := addMonitor(mux); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. pkg/config/analysis/legacy/source/kube/origin.go

    	"path/filepath"
    	"strings"
    
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    // Origin is a K8s specific implementation of resource.Origin
    type Origin struct {
    	Type            config.GroupVersionKind
    	FullName        resource.FullName
    	ResourceVersion resource.Version
    	Ref             resource.Reference
    	FieldsMap       map[string]int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    // form, or don't diff.)
    //
    // This format is intended to make it difficult to use these numbers without
    // writing some sort of special handling code in the hopes that that will
    // cause implementors to also use a fixed point implementation.
    //
    // +protobuf=true
    // +protobuf.embed=string
    // +protobuf.options.marshal=false
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:deepcopy-gen=true
    // +k8s:openapi-gen=true
    message Quantity {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. pkg/kube/krt/singleton.go

    	return c.c
    }
    
    var _ Singleton[any] = &collectionAdapter[any]{}
    
    func NewSingleton[O any](hf TransformationEmpty[O], opts ...CollectionOption) Singleton[O] {
    	// dummyCollection provides a trivial collection implementation that always provides a single dummyValue.
    	// This is an internal construct exclusively for implementing the "Singleton" pattern.
    	// This is so we can represent a singleton (a func() *O) as a collection (a func(I) *O).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzer.go

    	Analyzer
    	RelevantSubset(kinds sets.Set[config.GroupVersionKind]) CombinedAnalyzer
    	RemoveSkipped(schemas collection.Schemas) []string
    	AnalyzerNames() []string
    }
    
    // InternalCombinedAnalyzer is an implementation of CombinedAnalyzer, a special analyzer that combines multiple analyzers into one
    type InternalCombinedAnalyzer struct {
    	name      string
    	analyzers []Analyzer
    }
    
    // Combine multiple analyzers into a single one.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/constants/constants.go

    	ValidationErrorCode     = 126
    )
    
    // DNS ports
    const (
    	IstioAgentDNSListenerPort = "15053"
    )
    
    // type of iptables operation/command to run, as an enum
    // the implementation will choose the correct underlying binary,
    // so callers should just use these enums to indicate what they want to do.
    type IptablesCmd int
    
    const (
    	IPTables        IptablesCmd = iota
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/policy/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 3;
    
      // UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
      // should be considered for eviction. Current implementation considers healthy pods,
      // as pods that have status.conditions item with type="Ready",status="True".
      //
      // Valid policies are IfHealthyBudget and AlwaysAllow.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top