Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for Proto (0.06 sec)

  1. pkg/workloadapi/workload.proto

    John Howard <******@****.***> 1718215355 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.proto

    syntax = 'proto3';
    
    package v1alpha1;
    
    import "google/protobuf/any.proto";
    import "google/protobuf/duration.proto";
    import "google/protobuf/struct.proto";
    import "google/protobuf/wrappers.proto";
    import "k8s.io/api/core/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    
    // Package-wide variables from generator "generated".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. src/net/lookup_plan9.go

    }
    
    func (r *Resolver) lookupSRV(ctx context.Context, service, proto, name string) (cname string, addrs []*SRV, err error) {
    	if systemConf().mustUseGoResolver(r) {
    		return r.goLookupSRV(ctx, service, proto, name)
    	}
    	var target string
    	if service == "" && proto == "" {
    		target = name
    	} else {
    		target = "_" + service + "._" + proto + "." + name
    	}
    	lines, err := queryDNS(ctx, target, "srv")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. Makefile.core.mk

    	@testlinter
    	@envvarlinter istioctl pilot security
    
    # Allow-list:
    # (k8s) some Machinery, utils, klog
    # (proto) Istio API non-CRDs, MeshConfig and ProxyConfig
    # (proto) Envoy TLS proto for SDS
    # (proto) Envoy Wasm filters for wasm xDS proxy
    # (proto) xDS discovery service for xDS proxy
    # (proto) SDS secret and contrib QAT and cryptomb
    .PHONY: check-agent-deps
    check-agent-deps:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	Memory *TargetUtilizationConfig `protobuf:"bytes,4,opt,name=memory,proto3" json:"memory,omitempty"`
    	// K8s utilization setting for HorizontalPodAutoscaler target.
    	//
    	// See https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/
    	//
    	// Deprecated: Marked as deprecated in pkg/apis/istio/v1alpha1/values_types.proto.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  6. cmd/http-tracer.go

    			Path:      reqPath,
    			Bytes:     int64(inputBytes + respRecorder.Size()),
    			HTTP: &madmin.TraceHTTPStats{
    				ReqInfo: madmin.TraceRequestInfo{
    					Time:     reqStartTime,
    					Proto:    r.Proto,
    					Method:   r.Method,
    					RawQuery: redactLDAPPwd(r.URL.RawQuery),
    					Client:   handlers.GetSourceIP(r),
    					Headers:  reqHeaders,
    					Path:     reqPath,
    					Body:     reqRecorder.Data(),
    				},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/BUILD

    load("//tensorflow:tensorflow.bzl", "tf_cc_binary", "tf_cc_test")
    load("//tensorflow:tensorflow.default.bzl", "get_compatible_with_portable")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    # copybara:uncomment load("//tools/build_defs/proto/cpp:cc_proto_library.bzl", "cc_proto_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = [
            "//visibility:public",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. pilot/pkg/model/envoyfilter.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package model
    
    import (
    	"regexp"
    	"strings"
    	"time"
    
    	"google.golang.org/protobuf/proto"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/xds"
    	"istio.io/istio/pkg/util/sets"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. common/Makefile.common.mk

    lint-copyright-banner:
    	@${FINDFILES} \( -name '*.go' -o -name '*.cc' -o -name '*.h' -o -name '*.proto' -o -name '*.py' -o -name '*.sh' -o -name '*.rs' \) \( ! \( -name '*.gen.go' -o -name '*.pb.go' -o -name '*_pb2.py' \) \) -print0 |\
    		${XARGS} common/scripts/lint_copyright_banner.sh
    
    fix-copyright-banner:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/preflight/checks.go

    		checks = append(checks, HTTPProxyCIDRCheck{Proto: "https", CIDR: cidr})
    		if !IPV4Check && netutils.IsIPv4CIDRString(cidr) {
    			IPV4Check = true
    		}
    		if !IPV6Check && netutils.IsIPv6CIDRString(cidr) {
    			IPV6Check = true
    		}
    
    	}
    	cidrs = strings.Split(cfg.Networking.PodSubnet, ",")
    	for _, cidr := range cidrs {
    		checks = append(checks, HTTPProxyCIDRCheck{Proto: "https", CIDR: cidr})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top