Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for consts (0.09 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor.cc

      return absl::OkStatus();
    }
    
    absl::Status ValidateSPAllocatorStats(const SP_AllocatorStats& stats) {
      TF_VALIDATE_STRUCT_SIZE(SP_AllocatorStats, stats,
                              SP_ALLOCATORSTATS_STRUCT_SIZE);
      // All other fields could theoretically be zero/null.
      return absl::OkStatus();
    }
    
    absl::Status ValidateSPDeviceMemoryBase(const SP_DeviceMemoryBase& mem) {
      TF_VALIDATE_STRUCT_SIZE(SP_DeviceMemoryBase, mem,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. pkg/revisions/tag_watcher.go

    	}
    }
    
    func isTagWebhook(uobj any) bool {
    	obj := controllers.ExtractObject(uobj)
    	if obj == nil {
    		return false
    	}
    	_, ok := obj.GetLabels()[IstioTagLabel]
    	return ok
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_logging.go

    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/pkg/wellknown"
    )
    
    const (
    	// EnvoyTextLogFormat format for envoy text based access logs for Istio 1.9 onwards.
    	// This includes the additional new operator RESPONSE_CODE_DETAILS and CONNECTION_TERMINATION_DETAILS that tells
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. cmd/bucket-handlers.go

    	"github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/kms"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/policy"
    	"github.com/minio/pkg/v3/sync/errgroup"
    )
    
    const (
    	objectLockConfig        = "object-lock.xml"
    	bucketTaggingConfig     = "tagging.xml"
    	bucketReplicationConfig = "replication.xml"
    
    	xMinIOErrCodeHeader = "x-minio-error-code"
    	xMinIOErrDescHeader = "x-minio-error-desc"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  5. pilot/pkg/model/endpointshards.go

    			delete(e.shardsBySvc, serviceName)
    		}
    	}
    	epShards.Unlock()
    }
    
    // PushType is an enumeration that decides what type push we should do when we get EDS update.
    type PushType int
    
    const (
    	// NoPush does not push any thing.
    	NoPush PushType = iota
    	// IncrementalPush just pushes endpoints.
    	IncrementalPush
    	// FullPush triggers full push - typically used for new services.
    	FullPush
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	"k8s.io/kubernetes/third_party/forked/golang/expansion"
    	utilnet "k8s.io/utils/net"
    )
    
    const (
    	managedHostsHeader                = "# Kubernetes-managed hosts file.\n"
    	managedHostsHeaderWithHostNetwork = "# Kubernetes-managed hosts file (host network).\n"
    )
    
    // Container state reason list
    const (
    	PodInitializing   = "PodInitializing"
    	ContainerCreating = "ContainerCreating"
    
    	kubeletUser = "kubelet"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_waypoint.go

    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/proto"
    	"istio.io/istio/pkg/wellknown"
    )
    
    // These are both the current defaults used by the ztunnel hyper http2 server
    const (
    	h2KeepaliveInterval = 10 * time.Second
    	h2KeepaliveTimeout  = 20 * time.Second
    )
    
    func (lb *ListenerBuilder) serviceForHostname(name host.Name) *model.Service {
    	return lb.push.ServiceForHostname(lb.node, name)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. pilot/pkg/model/gateway.go

    	hosts := sets.Set[string]{}
    	if g == nil {
    		return hosts
    	}
    	if g.ContainsAutoPassthroughGateways {
    		for _, tls := range g.MergedServers {
    			for _, s := range tls.Servers {
    				if s.GetTls().GetMode() == networking.ServerTLSSettings_AUTO_PASSTHROUGH {
    					hosts.InsertAll(s.Hosts...)
    				}
    			}
    		}
    	}
    	return hosts
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry_test.go

    			Provider:                     &meshconfig.MeshConfig_ExtensionProvider{Name: providerName},
    			Disabled:                     disabled,
    			UseRequestIDForTraceSampling: true,
    		},
    	}
    }
    
    const (
    	reportingEnabled  = false
    	reportingDisabled = !reportingEnabled
    )
    
    func TestTracing(t *testing.T) {
    	sidecar := &Proxy{
    		ConfigNamespace: "default",
    		Labels:          map[string]string{"app": "test"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	// ensure this is kept in sync with internal cadvisor housekeeping.
    	evictionMonitoringPeriod = time.Second * 10
    
    	// The path in containers' filesystems where the hosts file is mounted.
    	linuxEtcHostsPath   = "/etc/hosts"
    	windowsEtcHostsPath = "C:\\Windows\\System32\\drivers\\etc\\hosts"
    
    	// Capacity of the channel for receiving pod lifecycle events. This number
    	// is a bit arbitrary and may be adjusted in the future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top