Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 89 for Implementation (0.41 sec)

  1. security/pkg/pki/util/keycertbundle.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Provides utility methods to generate X.509 certificates with different
    // options. This implementation is Largely inspired from
    // https://golang.org/src/crypto/tls/generate_cert.go.
    
    package util
    
    import (
    	"crypto"
    	"crypto/ecdsa"
    	"crypto/rsa"
    	"crypto/tls"
    	"crypto/x509"
    	"errors"
    	"fmt"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. pkg/config/model.go

    	// queryable and should be preserved when modifying objects.
    	Annotations map[string]string `json:"annotations,omitempty"`
    
    	// ResourceVersion is an opaque identifier for tracking updates to the config registry.
    	// The implementation may use a change index or a commit log for the revision.
    	// The config client should not make any assumptions about revisions and rely only on
    	// exact equality to implement optimistic concurrency of read-write operations.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/config/analysis/msg/messages.gen.go

    	"istio.io/istio/pkg/config/resource"
    )
    
    var (
    	// InternalError defines a diag.MessageType for message "InternalError".
    	// Description: There was an internal error in the toolchain. This is almost always a bug in the implementation.
    	InternalError = diag.NewMessageType(diag.Error, "IST0001", "Internal error: %v")
    
    	// Deprecated defines a diag.MessageType for message "Deprecated".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K 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