Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,130 for _default_ (0.23 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/configuration/DaemonParametersTest.groovy

        }
    
        def "configuring jvmargs replaces the defaults"() {
            when:
            parameters.setJvmArgs(["-Xmx17m"])
    
            then:
            parameters.effectiveJvmArgs.intersect(parameters.DEFAULT_JVM_ARGS).empty
        }
    
        def "does not apply defaults when jvmargs already specified"() {
            when:
            parameters.setJvmArgs(["-Xmx17m"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/ztunnel-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
    - 12.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/godebug.go

    			}
    			m[k] = v
    		}
    	}
    	if v, ok := m["default"]; ok {
    		delete(m, "default")
    		v = strings.TrimPrefix(v, "go")
    		if gover.IsValid(v) {
    			goVersion = v
    		}
    	}
    
    	defaults := godebugForGoVersion(goVersion)
    	if defaults != nil {
    		// Apply m on top of defaults.
    		for k, v := range m {
    			defaults[k] = v
    		}
    		m = defaults
    	}
    
    	var keys []string
    	for k := range m {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         */
        @Console
        public boolean isListFiles() {
            return listFiles;
        }
    
        /**
         * Sets whether to log the files to be compiled. Defaults to {@code false}.
         */
        public void setListFiles(boolean listFiles) {
            this.listFiles = listFiles;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.buildinit.tasks.InitBuild.xml

                    <td><literal>defaults to 'warn'</literal></td>
                </tr>
                <tr>
                    <td>allowFileOverwrite</td>
                    <td><literal>defaults to 'false'</literal></td>
                </tr>
                <tr>
                    <td>packageName</td>
                    <td />
                </tr>
                <tr>
                    <td>projectName</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:24:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. doc/next/7-ports.md

    The `GOARM64` environment variable defaults to `v8.0`.
    
    ### RISC-V {#riscv}
    
    <!-- go.dev/issue/61476, CL 541135 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/flags.h

        // Defaults to false.
        bool enabled_for_xla_launch_;
    
        // If true, uses Device API (PjRt) for compiling and executing ops one by
        // one in "on-demand" mode. Defaults to false.
        bool enabled_for_compile_on_demand_;
    
        // If true, uses Device API (PjRt) for compilation and execution when
        // auto-clustering is enabled. Defaults to false.
        bool enabled_for_compile_and_run_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. cmd/kube-scheduler/app/server_test.go

    apiVersion: v1
    kind: Config
    clusters:
    - cluster:
        insecure-skip-tls-verify: true
        server: %s
      name: default
    contexts:
    - context:
        cluster: default
        user: default
      name: default
    current-context: default
    users:
    - name: default
      user:
        username: config
    `, server.URL)), os.FileMode(0600)); err != nil {
    		t.Fatal(err)
    	}
    
    	// plugin config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top