Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for livable (0.22 sec)

  1. pilot/pkg/networking/core/match/match.go

    	return &matcher.Matcher_OnMatch{
    		OnMatch: &matcher.Matcher_OnMatch_Matcher{
    			Matcher: match,
    		},
    	}
    }
    
    // BuildMatcher cleans the entire match tree to avoid empty maps and returns a viable top-level matcher.
    // Note: this mutates the internal mappers/matchers that make up the tree.
    func (m Mapper) BuildMatcher() *matcher.Matcher {
    	root := m
    	for len(root.Map) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/crypto/x509/root.go

    // panic.
    //
    // The fallback behavior can be forced on all platforms, even when there is a
    // system certificate pool, by setting GODEBUG=x509usefallbackroots=1 (note that
    // on Windows and macOS this will disable usage of the platform verification
    // APIs and cause the pure Go verifier to be used). Setting
    // x509usefallbackroots=1 without calling SetFallbackRoots has no effect.
    func SetFallbackRoots(roots *CertPool) {
    	if roots == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/server.go

    		"--authentication-kubeconfig", fakeKubeConfig.Name(),
    		"--authorization-kubeconfig", fakeKubeConfig.Name(),
    		"--kubeconfig", fakeKubeConfig.Name(),
    		// disable admission and filters that require talking to kube-apiserver
    		"--enable-priority-and-fairness=false",
    		"--disable-admission-plugins", "NamespaceLifecycle,MutatingAdmissionWebhook,ValidatingAdmissionWebhook,ValidatingAdmissionPolicy"},
    		flags...,
    	), nil)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/universe.go

    	_Copy:    {"copy", 2, false, statement},
    	_Delete:  {"delete", 2, false, statement},
    	_Imag:    {"imag", 1, false, expression},
    	_Len:     {"len", 1, false, expression},
    	_Make:    {"make", 1, true, expression},
    	// To disable max/min, remove the next two lines.
    	_Max:     {"max", 1, true, expression},
    	_Min:     {"min", 1, true, expression},
    	_New:     {"new", 1, false, expression},
    	_Panic:   {"panic", 1, false, statement},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. src/go/types/universe.go

    	_Copy:    {"copy", 2, false, statement},
    	_Delete:  {"delete", 2, false, statement},
    	_Imag:    {"imag", 1, false, expression},
    	_Len:     {"len", 1, false, expression},
    	_Make:    {"make", 1, true, expression},
    	// To disable max/min, remove the next two lines.
    	_Max:     {"max", 1, true, expression},
    	_Min:     {"min", 1, true, expression},
    	_New:     {"new", 1, false, expression},
    	_Panic:   {"panic", 1, false, statement},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. internal/config/errors.go

    		"MinIO only supports fresh drive paths",
    	)
    
    	ErrInvalidBrowserValue = newErrFn(
    		"Invalid console value",
    		"Please check the passed value",
    		"Environment can only accept `on` and `off` values. To disable Console access, set this value to `off`",
    	)
    
    	ErrInvalidFSOSyncValue = newErrFn(
    		"Invalid O_SYNC value",
    		"Please check the passed value",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 18 22:25:32 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/cmd/root.go

    		"Comma separated list of inbound ports for which traffic is to be redirected to Envoy (optional). "+
    			"The wildcard character \"*\" can be used to configure redirection for all ports. An empty list will disable.",
    		&cfg.InboundPortsInclude)
    
    	flag.BindEnv(fs, constants.LocalExcludePorts, "d",
    		"Comma separated list of inbound ports to be excluded from redirection to Envoy (optional). "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/internal/godebug/godebug.go

    // which is used for generating and checking various documentation.
    // If the name is not listed in that table, New will succeed but calling Value
    // on the returned Setting will panic.
    // To disable that panic for access to an undocumented setting,
    // prefix the name with a #, as in godebug.New("#gofsystrace").
    // The # is a signal to New but not part of the key used in $GODEBUG.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/sync/pool_test.go

    //
    //go:build !race
    
    package sync_test
    
    import (
    	"runtime"
    	"runtime/debug"
    	"slices"
    	. "sync"
    	"sync/atomic"
    	"testing"
    	"time"
    )
    
    func TestPool(t *testing.T) {
    	// disable GC so we can control when it happens.
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    	var p Pool
    	if p.Get() != nil {
    		t.Fatal("expected empty")
    	}
    
    	// Make sure that the goroutine doesn't migrate to another P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/fake_kuberuntime_manager.go

    		kubeRuntimeManager,
    		flowcontrol.NewBackOff(time.Second, 300*time.Second),
    		false,
    		utilpointer.Int32Ptr(0), // No limit on max parallel image pulls,
    		0,                       // Disable image pull throttling by setting QPS to 0,
    		0,
    		&fakePodPullingTimeRecorder{},
    	)
    	kubeRuntimeManager.runner = lifecycle.NewHandlerRunner(
    		&fakeHTTP{},
    		kubeRuntimeManager,
    		kubeRuntimeManager,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top