Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Verbosity (0.32 sec)

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

      format: json
      flushFrequency: 1s
      verbosity: 10
      vmodule:
      - filePattern: foo.go
        verbosity: 6
      - filePattern: bar.go
        verbosity: 8
    `
    	expectedLoggingConfig := logsapi.LoggingConfiguration{
    		Format:         "json",
    		FlushFrequency: logsapi.TimeOrMetaDuration{Duration: metav1.Duration{Duration: time.Second}, SerializeAsString: true},
    		Verbosity:      10,
    		VModule: []logsapi.VModuleItem{
    			{
    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",
    		"ImageGCLowThresholdPercent",
    		"ImageMinimumGCAge.Duration",
    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. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.cc

    }
    
    absl::Status MaybeEnableIrPrinting(mlir::PassManager& pm,
                                       absl::string_view file_name_prefix) {
      if (!VLOG_IS_ON(1)) {
        LOG(INFO) << "Verbosity level too low to enable IR printing.";
        return absl::OkStatus();
      }
    
      EnableIrPrinting(pm, file_name_prefix);
    
      LOG(INFO) << "IR dump for TensorFlow quantization pipeline enabled.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:38:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_generator.go

    			return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    		}
    
    		detailedMsg := volumeToMount.GenerateMsgDetailed("MountVolume.SetUp succeeded", "")
    		verbosity := klog.Level(1)
    		if isRemount {
    			verbosity = klog.Level(4)
    		}
    		klog.V(verbosity).InfoS(detailedMsg, "pod", klog.KObj(volumeToMount.Pod))
    		resizeOptions.DeviceMountPath = volumeMounter.GetPath()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_volumes.go

    		}
    		if cleanupFailed {
    			errorPods++
    		}
    	}
    
    	logSpew := func(errs []error) {
    		if len(errs) > 0 {
    			klog.ErrorS(errs[0], "There were many similar errors. Turn up verbosity to see them.", "numErrs", len(errs))
    			for _, err := range errs {
    				klog.V(5).InfoS("Orphan pod", "err", err)
    			}
    		}
    	}
    	logSpew(orphanVolumeErrors)
    	logSpew(orphanRemovalErrors)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. build/root/Makefile

    ifndef GOFLAGS
    GOFLAGS := $(KUBE_GOFLAGS)
    unexport KUBE_GOFLAGS
    else
    $(error Both KUBE_GOFLAGS and GOFLAGS are set. Please use just GOFLAGS)
    endif
    endif
    
    # This controls the verbosity of the build.  Higher numbers mean more output.
    KUBE_VERBOSE ?= 1
    
    define ALL_HELP_INFO
    # Build code.
    #
    # Args:
    #   WHAT: Directory or Go package names to build.  If any of these directories
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    [[sec:command_line_logging]]
    == Logging options
    
    === Setting log level
    You can customize the <<logging.adoc#logging,verbosity>> of Gradle logging with the following options, ordered from least verbose to most verbose.
    
    `-Dorg.gradle.logging.level=(quiet,warn,lifecycle,info,debug)`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            ),
            op_set=quant_opts_pb2.TF,
            force_graph_mode_calibration=True,
        )
    
        with self.assertLogs(level='INFO') as info_logs:
          # Save the logger verbosity.
          prev_log_level = logging.get_verbosity()
          logging.set_verbosity(logging.INFO)
    
          try:
            quantize_model.quantize(
                self._input_saved_model_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/compile.go

    //   - the order of b.Values is the order to emit the Values in each Block
    //   - f has a non-nil regAlloc field
    func Compile(f *Func) {
    	// TODO: debugging - set flags to control verbosity of compiler,
    	// which phases to dump IR before/after, etc.
    	if f.Log() {
    		f.Logf("compiling %s\n", f.Name)
    	}
    
    	var rnd *rand.Rand
    	if checkEnabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    +
    _Default is `false`._
    
    `org.gradle.console=(auto,plain,rich,verbose)`::
    Customize <<command_line_interface.adoc#sec:command_line_logging,console output>> coloring or verbosity.
    +
    _Default depends on how Gradle is invoked._
    
    `org.gradle.continue=(true,false)`::
    If enabled, continue task execution after a task failure, else stop task execution after a task failure.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top