Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,152 for VModule (0.11 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. hack/make-rules/test-e2e-node.sh

      if [[ -n ${instance_type} ]]; then
        echo "Instance Type: ${instance_type}"
      fi
      echo "Kubelet Config File: ${kubelet_config_file}"
    
      # Invoke the runner
      go run test/e2e_node/runner/remote/run_remote.go  --vmodule=*=4 --ssh-env="gce" \
        --zone="${zone}" --project="${project}" --gubernator="${gubernator}" \
        --hosts="${hosts}" --images="${images}" --cleanup="${cleanup}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. 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)
  4. hack/make-rules/test-integration.sh

      # KUBE_RACE and MAKEFLAGS are used in the downstream make, and we set them to
      # empty here to ensure that we aren't unintentionally consuming them from the
      # previous make invocation.
      KUBE_TEST_ARGS="${SHORT:--short=true} --vmodule=${KUBE_TEST_VMODULE} ${KUBE_TEST_ARGS}" \
          WHAT="${WHAT:-$(kube::test::find_integration_test_dirs | paste -sd' ' -)}" \
          GOFLAGS="${GOFLAGS:-}" \
          KUBE_TIMEOUT="${KUBE_TIMEOUT}" \
          KUBE_RACE="" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

     - set cpu_global_jit to true on this session's OptimizerOptions, or
     - use experimental_jit_scope, or
     - use tf.function(jit_compile=True).
    
    To confirm that XLA is active, pass --vmodule=xla_compilation_cache=1 (as a
    proper command-line flag, not via TF_XLA_FLAGS).)";
    
          MarkForCompilationPassFlags* flags = GetMarkForCompilationPassFlags();
          if (flags->tf_xla_cpu_global_jit) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. 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)
Back to top