Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 140 for hamster (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    	"k8s.io/component-base/metrics/legacyregistry"
    	"k8s.io/klog/v2"
    )
    
    /*
     * By default, all the following metrics are defined as falling under
     * ALPHA stability level https://github.com/kubernetes/enhancements/blob/master/keps/sig-instrumentation/1209-metrics-stability/kubernetes-control-plane-metrics-stability.md#stability-classes)
     *
     * Promoting the stability level of the metric is a responsibility of the component owner, since it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. pilot/pkg/features/tuning.go

    	).Get()
    
    	PushThrottle = func() int {
    		v := env.Register(
    			"PILOT_PUSH_THROTTLE",
    			0,
    			"Limits the number of concurrent pushes allowed. On larger machines this can be increased for faster pushes. "+
    				"If set to 0 or unset, the max will be automatically determined based on the machine size",
    		).Get()
    		if v > 0 {
    			return v
    		}
    		procs := runtime.GOMAXPROCS(0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/doc.go

    // permutation. For a detailed specification see http://keccak.noekeon.org/
    //
    // # Guidance
    //
    // If you aren't sure what function you need, use SHAKE256 with at least 64
    // bytes of output. The SHAKE instances are faster than the SHA3 instances;
    // the latter have to allocate memory to conform to the hash.Hash interface.
    //
    // If you need a secret-key MAC (message authentication code), prepend the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/os/stat_windows.go

    	}
    	namep, err := syscall.UTF16PtrFromString(fixLongPath(name))
    	if err != nil {
    		return nil, &PathError{Op: funcname, Path: name, Err: err}
    	}
    
    	// Try GetFileAttributesEx first, because it is faster than CreateFile.
    	// See https://golang.org/issues/19922#issuecomment-300031421 for details.
    	var fa syscall.Win32FileAttributeData
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    					IncrementEnvoyFilterMetric(lp.Key(), Listener, false)
    					continue
    				}
    				// clone before append. Otherwise, subsequent operations on this listener will corrupt
    				// the master value stored in CP.
    				listeners = append(listeners, proto.Clone(lp.Value).(*listener.Listener))
    				IncrementEnvoyFilterMetric(lp.Key(), Listener, true)
    			}
    		}
    	}
    	if listenersRemoved {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	go wait.UntilWithContext(ctx, nc.doNoExecuteTaintingPass, scheduler.NodeEvictionPeriod)
    
    	// Incorporate the results of node health signal pushed from kubelet to master.
    	go wait.UntilWithContext(ctx, func(ctx context.Context) {
    		if err := nc.monitorNodeHealth(ctx); err != nil {
    			logger.Error(err, "Error monitoring node health")
    		}
    	}, nc.nodeMonitorPeriod)
    
    	<-ctx.Done()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			// We don't use SSA by default for performance reasons
    			// (https://github.com/kubernetes/kubernetes/issues/113700#issuecomment-1698563918)
    			// because most of the time an Update doesn't encounter
    			// a conflict and is faster.
    			//
    			// We could return an error here and rely on
    			// backoff+retry, but scheduling attempts are expensive
    			// and the backoff delay would cause a (small)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. src/net/dnsclient_unix.go

    // license that can be found in the LICENSE file.
    
    // DNS client: see RFC 1035.
    // Has to be linked into package net for Dial.
    
    // TODO(rsc):
    //	Could potentially handle many outstanding lookups faster.
    //	Random UDP source port (net.Dial should do that for us).
    //	Random request IDs.
    
    package net
    
    import (
    	"context"
    	"errors"
    	"internal/bytealg"
    	"internal/itoa"
    	"io"
    	"os"
    	"runtime"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    				// (cannot call b.Fatal in goroutine)
    				panic(fmt.Errorf("accept: %v", err))
    			}
    			serverConfig := testConfig.Clone()
    			serverConfig.CipherSuites = nil // the defaults may prefer faster ciphers
    			serverConfig.DynamicRecordSizingDisabled = dynamicRecordSizingDisabled
    			srv := Server(sconn, serverConfig)
    			if err := srv.Handshake(); err != nil {
    				panic(fmt.Errorf("handshake: %v", err))
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. pkg/kubelet/nodestatus/setters.go

    ) Setter {
    	return func(ctx context.Context, node *v1.Node) error {
    		// NOTE(aaronlevy): NodeReady condition needs to be the last in the list of node conditions.
    		// This is due to an issue with version skewed kubelet and master components.
    		// ref: https://github.com/kubernetes/kubernetes/issues/16961
    		currentTime := metav1.NewTime(nowFunc())
    		newNodeReadyCondition := v1.NodeCondition{
    			Type:              v1.NodeReady,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top