Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 74 for livable (0.36 sec)

  1. pilot/pkg/features/xds.go

    	EnableCDSCaching = env.Register("PILOT_ENABLE_CDS_CACHE", true,
    		"If true, Pilot will cache CDS responses. Note: this depends on PILOT_ENABLE_XDS_CACHE.").Get()
    
    	// EnableRDSCaching determines if RDS caching is enabled. This is explicitly split out of ENABLE_XDS_CACHE,
    	// so that in case there are issues with the RDS cache we can just disable the RDS cache.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/telemetrycmd/telemetry.go

    (https://policies.google.com/privacy).
    
    To view the current telemetry mode, run "go telemetry".
    To disable telemetry uploading, but keep local data collection, run
    "go telemetry local".
    To enable both collection and uploading, run “go telemetry on”.
    To disable both collection and uploading, run "go telemetry off".
    
    See https://go.dev/doc/telemetry for more information on telemetry.
    `,
    	Run: runTelemetry,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/runtime/security_unix.go

    	if !isSecureMode() {
    		return
    	}
    
    	// When secure mode is enabled, we do one thing: enforce specific
    	// environment variable values (currently we only force GOTRACEBACK=none)
    	//
    	// Other packages may also disable specific functionality when secure mode
    	// is enabled (determined by using linkname to call isSecureMode).
    
    	secureEnv()
    }
    
    func secureEnv() {
    	var hasTraceback bool
    	for i := 0; i < len(envs); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 866 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/versions/features.go

    	}
    	return Compare(Lang(v), Lang(release)) >= 0
    }
    
    // Before reports whether the file version v is strictly before a Go release.
    //
    // Use this predicate to disable a behavior once a certain Go release
    // has happened (and stays enabled in the future).
    func Before(v, release string) bool {
    	if v == Future {
    		return false // an unknown future version happens after y.
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. cni/pkg/repair/repair.go

    	"istio.io/istio/cni/pkg/scopes"
    	"istio.io/istio/pkg/kube"
    )
    
    var repairLog = scopes.CNIAgent
    
    func StartRepair(ctx context.Context, cfg config.RepairConfig) {
    	if !cfg.Enabled {
    		repairLog.Info("CNI repair is disable.")
    		return
    	}
    	repairLog.Info("Start CNI race condition repair.")
    
    	client, err := clientSetup()
    	if err != nil {
    		repairLog.Fatalf("CNI repair could not construct clientSet: %s", err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. cmd/main.go

    		Hidden: true,
    	},
    	cli.StringFlag{
    		Name:  "certs-dir, S",
    		Value: defaultCertsDir.Get(),
    		Usage: "path to certs directory",
    	},
    	cli.BoolFlag{
    		Name:  "quiet",
    		Usage: "disable startup and info messages",
    	},
    	cli.BoolFlag{
    		Name:  "anonymous",
    		Usage: "hide sensitive information from logging",
    	},
    	cli.BoolFlag{
    		Name:  "json",
    		Usage: "output logs in JSON format",
    	},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. src/internal/cpu/cpu_arm64_hwcap.go

    	ARM64.HasSHA512 = isSet(HWCap, hwcap_SHA512)
    
    	// The Samsung S9+ kernel reports support for atomics, but not all cores
    	// actually support them, resulting in SIGILL. See issue #28431.
    	// TODO(elias.naur): Only disable the optimization on bad chipsets on android.
    	ARM64.HasATOMICS = isSet(HWCap, hwcap_ATOMICS) && os != "android"
    
    	// Check to see if executing on a Neoverse core and in order to do that,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	// This annotation is beta-level and is only honored when PodDeletionCost feature is enabled.
    	PodDeletionCost = "controller.kubernetes.io/pod-deletion-cost"
    
    	// DeprecatedAnnotationTopologyAwareHints can be used to enable or disable
    	// Topology Aware Hints for a Service. This may be set to "Auto" or
    	// "Disabled". Any other value is treated as "Disabled". This annotation has
    	// been deprecated in favor of the "service.kubernetes.io/topology-mode"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. tests/integration/telemetry/api/setup_test.go

    		Setup(SetupSuite).
    		Run()
    }
    
    func setupConfig(_ resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    	cfg.ControlPlaneValues = `
    meshConfig:
      accessLogFile: "" # disable from install, we will enable via Telemetry layer
    `
    	cfg.RemoteClusterValues = cfg.ControlPlaneValues
    	cfg.Values["global.logging.level"] = "xdsproxy:debug,wasm:debug"
    }
    
    // SetupSuite set up echo app for stats testing.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/admission_test.go

    		{
    			expectedResult: true,
    		},
    
    		// scenario 1: set both `--enable-admission-plugins` `--disable-admission-plugins`
    		{
    			setEnablePlugins:  []string{"pluginA", "pluginB"},
    			setDisablePlugins: []string{"pluginC"},
    			expectedResult:    true,
    		},
    
    		// scenario 2: set invalid `--enable-admission-plugins` `--disable-admission-plugins`
    		{
    			setEnablePlugins:  []string{"pluginA", "pluginB"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top