Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 72 for const1 (0.97 sec)

  1. cmd/metrics-v2.go

    	kmsRequestsError   = "request_error"
    	kmsRequestsFail    = "request_failure"
    	kmsUptime          = "uptime"
    
    	webhookOnline = "online"
    )
    
    const (
    	serverName = "server"
    )
    
    // MetricTypeV2 for the types of metrics supported
    type MetricTypeV2 string
    
    const (
    	gaugeMetric     = "gaugeMetric"
    	counterMetric   = "counterMetric"
    	histogramMetric = "histogramMetric"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    // Non-cluster IPs:     203.0.113.0/24
    // LB Source Range:     203.0.113.0/25
    
    const testHostname = "test-hostname"
    const testNodeIP = "192.168.0.2"
    const testNodeIPAlt = "192.168.1.2"
    const testExternalIP = "192.168.99.11"
    const testNodeIPv6 = "2001:db8::1"
    const testNodeIPv6Alt = "2001:db8:1::2"
    const testExternalClient = "203.0.113.2"
    const testExternalClientBlocked = "203.0.113.130"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

        %step = "tf.Const"() {device = "", value = dense<0> : tensor<i64>} : () -> tensor<i64>
        %tag = "tf.Const"() {device = "", value = dense<""> : tensor<!tf_type.string>} : () -> tensor<!tf_type.string>
        %wmetadata = "tf.Const"() {device = "", value = dense<""> : tensor<!tf_type.string>} : () -> tensor<!tf_type.string>
        %pred = "tf.Const"() {device = "", value = dense<0> : tensor<i1>} : () -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    // If a driver does not support a given isolation level an error may be returned.
    //
    // See https://en.wikipedia.org/wiki/Isolation_(database_systems)#Isolation_levels.
    const (
    	LevelDefault IsolationLevel = iota
    	LevelReadUncommitted
    	LevelReadCommitted
    	LevelWriteCommitted
    	LevelRepeatableRead
    	LevelSnapshot
    	LevelSerializable
    	LevelLinearizable
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    // Code generated by mkmerge; DO NOT EDIT.
    
    //go:build linux
    
    package unix
    
    import "syscall"
    
    const (
    	AAFS_MAGIC                                  = 0x5a3c69f0
    	ADFS_SUPER_MAGIC                            = 0xadf5
    	AFFS_SUPER_MAGIC                            = 0xadff
    	AFS_FS_MAGIC                                = 0x6b414653
    	AFS_SUPER_MAGIC                             = 0x5346414f
    	AF_ALG                                      = 0x26
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K 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. cmd/site-replication.go

    	"github.com/minio/minio/internal/logger"
    	xldap "github.com/minio/pkg/v3/ldap"
    	"github.com/minio/pkg/v3/policy"
    	"github.com/puzpuzpuz/xsync/v3"
    )
    
    const (
    	srStatePrefix = minioConfigPrefix + "/site-replication"
    	srStateFile   = "state.json"
    )
    
    const (
    	srStateFormatVersion1 = 1
    )
    
    var (
    	errSRCannotJoin = SRError{
    		Cause: errors.New("this site is already configured for site-replication"),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    // TestMonitorNodeHealthMarkPodsNotReady with a large number of nodes/pods and
    // varying numbers of workers.
    func TestMonitorNodeHealthMarkPodsNotReadyWithWorkerSize(t *testing.T) {
    	const numNodes = 50
    	const podsPerNode = 100
    	makeNodes := func() []*v1.Node {
    		nodes := make([]*v1.Node, numNodes)
    		// Node created long time ago, with status updated by kubelet exceeds grace period.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/routing.go

    )
    
    const originateTLSTmpl = `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "{{.VirtualServiceHost|replace "*" "wild"}}"
      namespace: "{{.IngressNamespace}}"
    spec:
      host: "{{.VirtualServiceHost}}"
      trafficPolicy:
        tls:
          mode: SIMPLE
          insecureSkipVerify: true
    ---
    `
    
    const httpVirtualServiceTmpl = `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	}
    }
    func rewriteValueMIPS64_OpConst16(v *Value) bool {
    	// match: (Const16 [val])
    	// result: (MOVVconst [int64(val)])
    	for {
    		val := auxIntToInt16(v.AuxInt)
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    func rewriteValueMIPS64_OpConst32(v *Value) bool {
    	// match: (Const32 [val])
    	// result: (MOVVconst [int64(val)])
    	for {
    		val := auxIntToInt32(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
Back to top