Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,084 for default_ (0.12 sec)

  1. src/cmd/go/internal/cache/default.go

    package cache
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"sync"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"internal/goexperiment"
    )
    
    // Default returns the default cache to use.
    // It never returns nil.
    func Default() Cache {
    	defaultOnce.Do(initDefaultCache)
    	return defaultCache
    }
    
    var (
    	defaultOnce  sync.Once
    	defaultCache Cache
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. istioctl/pkg/waypoint/testdata/waypoint/default-gateway

    NAME         REVISION     PROGRAMMED
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 21:30:40 UTC 2024
    - 68 bytes
    - Viewed (0)
  3. tests/integration/iop-ambient-test-defaults.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      profile: ambient
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
      values:
        cni:
          ambient:
            # Some of the tests require DNS capture
            # For that, DNS capture must be enabled in the CNI
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
  4. pkg/apis/storage/v1/defaults_test.go

    	} else if *outMode != defaultMode {
    		t.Errorf("Expected VolumeBindingMode to be defaulted to: %+v, got: %+v", defaultMode, outMode)
    	}
    }
    
    func TestSetDefaultCSIDriver(t *testing.T) {
    	enabled := true
    	disabled := false
    	tests := []struct {
    		desc     string
    		field    string
    		wantSpec *storagev1.CSIDriverSpec
    	}{
    		{
    			desc:     "AttachRequired default to true",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. build-logic/publishing/src/main/kotlin/gradlebuild.publish-defaults.gradle.kts

    Lóránt Pintér <******@****.***> 1717182260 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:58 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/values.yaml

        # CNI bin and conf dir override settings
        # defaults:
        cniBinDir: "" # Auto-detected based on version; defaults to /opt/cni/bin.
        cniConfDir: /etc/cni/net.d
        cniConfFileName: ""
        # This directory must exist on the node, if it does not, consult your container runtime
        # documentation for the appropriate path.
        cniNetnsDir: # Defaults to '/var/run/netns', in minikube/docker/others can be '/var/run/docker/netns'.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. doc/godebug.md

    This behavior is controlled by the `winreadlinkvolume` setting.
    For Go 1.23, it defaults to `winreadlinkvolume=1`.
    Previous versions default to `winreadlinkvolume=0`.
    
    Go 1.23 enabled the experimental post-quantum key exchange mechanism
    X25519Kyber768Draft00 by default. The default can be reverted using the
    [`tlskyber` setting](/pkg/crypto/tls/#Config.CurvePreferences).
    
    Go 1.23 changed the behavior of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. cluster/images/etcd/migrate/options.go

    		"etcd cluster member name. If unset fallbacks to defaults to ETCD_NAME env, if unset defaults to etcd-<ETCD_HOSTNAME> env, if unset defaults to etcd-<HOSTNAME> env.")
    	flags.Uint64Var(&opts.port, "port", 0,
    		"etcd client port to use during migration operations. "+
    			"This should be a different port than typically used by etcd to avoid clients accidentally connecting during upgrade/downgrade operations. "+
    			"If unset default to 18629 or 18631 depending on <data-dir>.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/pilot-dashboard.gen.json

          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Version number of each running instance",
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
                      "gradientMode": "hue",
                      "showPoints": "never"
                   }
                }
             },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/config.go

    	cmd := &cobra.Command{
    		Use:   fmt.Sprintf("%s-defaults", action),
    		Short: fmt.Sprintf("Print default %s configuration, that can be used for 'kubeadm %s'", action, action),
    		Long: fmt.Sprintf(dedent.Dedent(`
    			This command prints objects such as the default %s configuration that is used for 'kubeadm %s'.
    
    			Note that sensitive values like the Bootstrap Token fields are replaced with placeholder values like %q in order to pass validation but
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top