Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 140 for hamster (0.15 sec)

  1. src/crypto/tls/ticket.go

    	// TLS 1.0–1.2 might be earlier than the current session) and the time at
    	// which the ticket was received on the client.
    	createdAt         uint64 // seconds since UNIX epoch
    	secret            []byte // master secret for TLS 1.2, or the PSK for TLS 1.3
    	extMasterSecret   bool
    	peerCertificates  []*x509.Certificate
    	activeCertHandles []*activeCert
    	ocspResponse      []byte
    	scts              [][]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/net/fd_windows.go

    	case *syscall.SockaddrInet6:
    		isloopback = ra.Addr == [16]byte(IPv6loopback)
    	default:
    		panic("unexpected type in connect")
    	}
    	if isloopback {
    		// This makes ConnectEx() fails faster if the target port on the localhost
    		// is not reachable, instead of waiting for 2s.
    		params := windows.TCP_INITIAL_RTO_PARAMETERS{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1/types.go

    // GroupSubject holds detailed information for group-kind subject.
    type GroupSubject struct {
    	// name is the user group that matches, or "*" to match all user groups.
    	// See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some
    	// well-known group names.
    	// Required.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    // EgressSelection provides the configuration for a single egress selection client.
    type EgressSelection struct {
    	// name is the name of the egress selection.
    	// Currently supported values are "controlplane", "master", "etcd" and "cluster"
    	// The "master" egress selector is deprecated in favor of "controlplane"
    	Name string `json:"name"`
    
    	// connection is the exact information used to configure the egress selection
    	Connection Connection `json:"connection"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⟿":                        "\u27ff",
    	"⩷":                           "\u2a77",
    	"≑":                            "\u2251",
    	"é":                          "\u00e9",
    	"⩮":                          "\u2a6e",
    	"ě":                          "\u011b",
    	"≖":                            "\u2256",
    	"ê":                           "\u00ea",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  6. pkg/kubelet/winstats/perfcounter_nodestats.go

    	// This converts perf counter data which is cpu percentage for all cores into nanoseconds.
    	// The formula is (cpuPercentage / 100.0) * #cores * 1e+9 (nano seconds). More info here:
    	// https://github.com/kubernetes/heapster/issues/650
    	newValue := p.nodeMetrics.cpuUsageCoreNanoSeconds + uint64((float64(cpuValue)/100.0)*float64(cpuCores)*1e9)
    	return newValue
    }
    
    func (p *perfCounterNodeStatsClient) getCPUUsageNanoCores() uint64 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conditions.go

    		// condition ListenerInvalid, the status will be set to StatusFalse. If an error is reported, it
    		// will be inverted to StatusTrue to indicate listeners are invalid. See
    		// https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties
    		// for more information
    		if cond.error != nil {
    			existingConditions = setter(existingConditions, metav1.Condition{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loadelf/ldelf.go

    	"cmd/link/internal/sym"
    	"debug/elf"
    	"encoding/binary"
    	"fmt"
    	"io"
    	"log"
    	"strings"
    )
    
    /*
    Derived from Plan 9 from User Space's src/libmach/elf.h, elf.c
    https://github.com/9fans/plan9port/tree/master/src/libmach/
    
    	Copyright © 2004 Russ Cox.
    	Portions Copyright © 2008-2010 Google Inc.
    	Portions Copyright © 2010 The Go Authors.
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  9. pkg/apis/batch/types.go

    )
    
    const (
    	// Unprefixed labels are reserved for end-users
    	// so we will add a batch.kubernetes.io to designate these labels as official Kubernetes labels.
    	// See https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#label-selector-and-annotation-conventions
    	labelPrefix = "batch.kubernetes.io/"
    	// JobTrackingFinalizer is a finalizer for Job's pods. It prevents them from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. pkg/test/framework/components/prometheus/kube.go

    }
    
    func getPrometheusYaml() (string, error) {
    	yamlBytes, err := os.ReadFile(filepath.Join(env.IstioSrc, "samples/addons/prometheus.yaml"))
    	if err != nil {
    		return "", err
    	}
    	yaml := string(yamlBytes)
    	// For faster tests, drop scrape interval
    	yaml = strings.ReplaceAll(yaml, "scrape_interval: 15s", "scrape_interval: 5s")
    	yaml = strings.ReplaceAll(yaml, "scrape_timeout: 10s", "scrape_timeout: 5s")
    	return yaml, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top