Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 719 for VModule (0.23 sec)

  1. cmd/kube-proxy/app/server_test.go

    				return c
    			}(),
    		},
    		"flags": {
    			flags: []string{
    				"-v=7",
    				"--vmodule", "goo.go=8",
    			},
    			expected: func() *kubeproxyconfig.KubeProxyConfiguration {
    				c := expected.DeepCopy()
    				c.Logging.Verbosity = 7
    				c.Logging.VModule = append(c.Logging.VModule, logsapi.VModuleItem{
    					FilePattern: "goo.go",
    					Verbosity:   8,
    				})
    				return c
    			}(),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/helpers_test.go

    		"Logging.Options.Text.OutputRoutingOptions.InfoBufferSize.Quantity.s",
    		"Logging.Options.Text.OutputRoutingOptions.SplitStream",
    		"Logging.VModule[*].FilePattern",
    		"Logging.VModule[*].Verbosity",
    		"Logging.Verbosity",
    		"TLSCipherSuites[*]",
    		"TLSMinVersion",
    		"IPTablesDropBit",
    		"IPTablesMasqueradeBit",
    		"ImageGCHighThresholdPercent",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. cmd/kube-proxy/app/server.go

    // unmodified. For fields that have multiple values (like vmodule), the values from
    // the flags get joined so that the command line flags have priority.
    //
    // TODO (pohly): move this to logsapi
    func copyLogsFromFlags(from *pflag.FlagSet, to *logsapi.LoggingConfiguration) error {
    	var cloneFS pflag.FlagSet
    	logsapi.AddFlags(to, &cloneFS)
    	vmodule := to.VModule
    	to.VModule = nil
    	var err error
    	cloneFS.VisitAll(func(f *pflag.Flag) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

          ${cloud_config_arg} \
          "${advertise_address}" \
          "${node_port_range}" \
          --v="${LOG_LEVEL}" \
          --vmodule="${LOG_SPEC}" \
          --audit-policy-file="${AUDIT_POLICY_FILE}" \
          --audit-log-path="${LOG_DIR}/kube-apiserver-audit.log" \
          --cert-dir="${CERT_DIR}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tfcompile.bzl

            "--target_triple=" + ctx.attr.target_triple,
        ] + cpu_flags + output_flags + ctx.attr.extra_flags + dfsan_flags
    
        post_command = ""
        if ctx.attr.gen_compiler_log:
            post_command += " --vmodule=cpu_compiler=5 2> >(tee -a " + compiler_log_file.path + " >&2) "
    
        full_cmd = (
            ctx.executable.tfcompile_tool.path + " " + " ".join(flags) + " " + ctx.attr.flags + post_command
        )
        ctx.actions.run_shell(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. cmd/kubelet/app/options/options.go

    		// LoggingConfiguration (long-term goal, more complete
    		// configuration file) but deprecating the flags seemed
    		// premature.
    		notDeprecated := map[string]bool{
    			"v":                   true,
    			"vmodule":             true,
    			"log-flush-frequency": true,
    			"provider-id":         true,
    		}
    		fs.VisitAll(func(f *pflag.Flag) {
    			if notDeprecated[f.Name] {
    				return
    			}
    			f.Deprecated = deprecated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: remove the EXPERIMENTAL tag from the phase "kubeadm join control-plane-prepare...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. module.xml

    		</get>
    		<unzip dest="${modules.dir}/${module.name}" src="${target.dir}/${module.name.prefix}${module.name}-${module.zip.version}.zip">
    			<patternset>
    				<include name="**" />
    			</patternset>
    			<cutdirsmapper dirs="1" />
    		</unzip>
    	</target>
    
    	<target name="remove.jars" if="with.fess">
    		<delete>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 16 07:10:50 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/Module.java

        /**
         * Returns the modules required by this module.
         */
        Set<Module> getRequiredModules();
    
        /**
         * Returns the transitive closure of all modules required by this module, including the module itself.
         */
        Set<Module> getAllRequiredModules();
    
        /**
         * Returns the implementation + runtime classpath of the transitive closure of all modules required by this module, including the module itself.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/module/module.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package module defines the module.Version type along with support code.
    //
    // The [module.Version] type is a simple Path, Version pair:
    //
    //	type Version struct {
    //		Path string
    //		Version string
    //	}
    //
    // There are no restrictions imposed directly by use of this structure,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top