Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 145 for livable (0.09 sec)

  1. pkg/security/apparmor/validate.go

    // Note, this is intentionally only check the host at kubelet startup and never re-evaluates the host
    // as the expectation is that the kubelet restart will be needed to enable or disable AppArmor support.
    func (v *validator) ValidateHost() error {
    	return v.validateHostErr
    }
    
    // validateHost verifies that the host and runtime is capable of enforcing AppArmor profiles.
    func validateHost() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. pilot/pkg/features/tuning.go

    		"If set to a non-zero value, enables mutex profiling a rate of 1/MUTEX_PROFILE_FRACTION events."+
    			" For example, '1000' will record 0.1% of events. "+
    			"Set to 0 to disable entirely.").Get()
    
    	StatusUpdateInterval = env.Register(
    		"PILOT_STATUS_UPDATE_INTERVAL",
    		500*time.Millisecond,
    		"Interval to update the XDS distribution status.",
    	).Get()
    
    	StatusQPS = env.Register(
    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/net/tcpsockopt_windows.go

    	// zero will knock off any existing values of keep-alive.
    	// Unfortunately, Windows doesn't support retrieving current keep-alive
    	// settings in any form programmatically, which disable us to first retrieve
    	// the current keep-alive settings, then set it without unwanted corruption.
    	switch {
    	case idle < 0 && interval >= 0:
    		// Given that we can't set KeepAliveInterval alone, and this code path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/internal/poll/fd.go

    // internally and are not intended to be used outside the standard libraries,
    // Therefore, we make those APIs use internal types like poll.FD or poll.String
    // in their function signatures to disable the usability of these APIs from
    // external codebase.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:16:28 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/root.go

    	"istio.io/istio/pkg/version"
    )
    
    var (
    	baseVersion    = binversion.OperatorVersionString
    	setFlagHelpStr = `Override an IstioOperator value, e.g. to choose a profile
    (--set profile=demo), enable or disable components (--set components.cni.enabled=true), or override Istio
    settings (--set meshConfig.enableTracing=true). See documentation for more info:` + url.IstioOperatorSpec
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdversion/stdversion.go

    	RunDespiteErrors: true,
    	Run:              run,
    }
    
    func run(pass *analysis.Pass) (any, error) {
    	// Prior to go1.22, versions.FileVersion returns only the
    	// toolchain version, which is of no use to us, so
    	// disable this analyzer on earlier versions.
    	if !slicesContains(build.Default.ReleaseTags, "go1.22") {
    		return nil, nil
    	}
    
    	// Don't report diagnostics for modules marked before go1.21,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istioctl/kube.go

    	invokeMutex.Lock()
    	rootCmd := cmd.GetRootCmd(cmdArgs)
    	rootCmd.SetOut(&out)
    	rootCmd.SetErr(&err)
    	// istioctl will overwrite logs which we don't want.
    	// It happens to do this via PersistentPreRunE, which we can disable.
    	// We add an additional check in case someone refactors this away, to ensure we don't wipe out non-logging code.
    	if fmt.Sprintf("%p", rootCmd.PersistentPreRunE) != fmt.Sprintf("%p", cmd.ConfigureLogging) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/sync/pool.go

    func (p *Pool) Put(x any) {
    	if x == nil {
    		return
    	}
    	if race.Enabled {
    		if runtime_randn(4) == 0 {
    			// Randomly drop x on floor.
    			return
    		}
    		race.ReleaseMerge(poolRaceAddr(x))
    		race.Disable()
    	}
    	l, _ := p.pin()
    	if l.private == nil {
    		l.private = x
    	} else {
    		l.shared.pushHead(x)
    	}
    	runtime_procUnpin()
    	if race.Enabled {
    		race.Enable()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/storage/resource_config.go

    		// a preference about a version takes priority over the previously set resources
    		o.removeMatchingResourcePreferences(resourceMatcherForVersion(version))
    	}
    
    }
    
    // TODO this must be removed and we enable/disable individual resources.
    func (o *ResourceConfig) versionEnabled(version schema.GroupVersion) bool {
    	enabled, _ := o.GroupVersionConfigs[version]
    	return enabled
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types_encryption.go

    	APIVersion string
    	// name is the name of the KMS plugin to be used.
    	Name string
    	// cachesize is the maximum number of secrets which are cached in memory. The default value is 1000.
    	// Set to a negative value to disable caching. This field is only allowed for KMS v1 providers.
    	// +optional
    	CacheSize *int32
    	// endpoint is the gRPC server listening address, for example "unix:///var/run/kms-provider.sock".
    	Endpoint string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top