Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 83 for Implementation (0.16 sec)

  1. pkg/kube/krt/internal.go

    	ak, ok := any(a).(Equaler[O])
    	if ok {
    		return ak.Equals(b)
    	}
    	pk, ok := any(&a).(Equaler[O])
    	if ok {
    		return pk.Equals(b)
    	}
    	// Future improvement: add a default Kubernetes object implementation
    	// ResourceVersion is tempting but probably not safe. If we are comparing objects from the API server its fine,
    	// but often we will be operating on types generated by the controller itself.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. pilot/pkg/networking/grpcgen/grpcgen.go

    // The same response can also be used by other apps using XDS directly.
    
    // GRPC proposal:
    // https://github.com/grpc/proposal/blob/master/A27-xds-global-load-balancing.md
    //
    // Note that this implementation is tested against gRPC, but it is generic - any other framework can
    // use this XDS mode to get load balancing info from Istio, including MC/VM/etc.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. security/pkg/util/certutil.go

    type CertUtil interface {
    	// GetWaitTime returns the waiting time before renewing the certificate.
    	GetWaitTime([]byte, time.Time) (time.Duration, error)
    }
    
    // CertUtilImpl is the implementation of CertUtil, for production use.
    type CertUtilImpl struct {
    	gracePeriodPercentage int
    }
    
    // NewCertUtil returns a new CertUtilImpl
    func NewCertUtil(gracePeriodPercentage int) CertUtilImpl {
    	return CertUtilImpl{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. 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)
  8. pkg/test/csrctrl/controllers/csr_controller.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // An example implementation of a CSR Controller.
    package csrctrl
    
    import (
    	"fmt"
    	"strings"
    	"time"
    
    	certv1 "k8s.io/api/certificates/v1"
    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/istio/pkg/kube"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top