Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 74 for Dumps (0.03 sec)

  1. manifests/charts/istio-control/istio-discovery/values.yaml

          # not set, then the global "logLevel" will be used.
          componentLogLevel: "misc:error"
    
          # If set, newly injected sidecars will have core dumps enabled.
          enableCoreDump: false
    
          # istio ingress capture allowlist
          # examples:
          #     Redirect only selected ports:            --includeInboundPorts="80,8080"
          excludeInboundPorts: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/runtime/panic.go

    	d.sp = getcallersp()
    
    	// deferproc returns 0 normally.
    	// a deferred func that stops a panic
    	// makes the deferproc return 1.
    	// the code the compiler generates always
    	// checks the return value and jumps to the
    	// end of the function if deferproc returns != 0.
    	return0()
    	// No code can go here - the C return register has
    	// been set and must not be clobbered.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

      if quantization_options.HasField('debugger_config'):
        if not quantization_options.debugger_config.log_dir_path:
          quantization_options.debugger_config.log_dir_path = '/tmp/dumps'
    
        if (
            quantization_options.debugger_config.debugger_type
            == stablehlo_quant_config_pb2.DebuggerConfig.DebuggerType.DEBUGGER_TYPE_UNSPECIFIED
        ):
          raise ValueError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/inline/inlheur/scoring.go

    	// for most cases.
    	return maxBudget
    }
    
    var allCallSites CallSiteTab
    
    // DumpInlCallSiteScores is invoked by the inliner if the debug flag
    // "-d=dumpinlcallsitescores" is set; it dumps out a human-readable
    // summary of all (potentially) inlinable callsites in the package,
    // along with info on call site scoring and the adjustments made to a
    // given score. Here profile is the PGO profile in use (may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. cluster/log-dump/log-dump.sh

          proc=${max_dump_processes}
          wait
        fi
      done
      # Wait for any remaining processes.
      if [[ proc -gt 0 && proc -lt ${max_dump_processes} ]]; then
        wait
      fi
    }
    
    # Dumps logs from nodes in the cluster. Linux nodes to dump logs from can be
    # specified via $1 or $use_custom_instance_list. If not specified then the nodes
    # to dump logs for will be detected using detect-node-names(); if Windows nodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  6. pkg/kube/inject/inject.go

    	// InitContainerName is the name of the init container that deploys iptables
    	InitContainerName = "istio-init"
    
    	// EnableCoreDumpName is the name of the init container that allows core dumps
    	EnableCoreDumpName = "enable-core-dump"
    )
    
    const (
    	// ImageTypeDebug is the suffix of the debug image.
    	ImageTypeDebug = "debug"
    	// ImageTypeDistroless is the suffix of the distroless image.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/builtins.go

    			check.errorf(call, Test, "%v failed", call)
    			// compile-time assertion failure - safe to continue
    		}
    		// result is constant - no need to record signature
    
    	case _Trace:
    		// trace(x, y, z, ...) dumps the positions, expressions, and
    		// values of its arguments. The result of trace is the value
    		// of the first argument.
    		// Note: trace is only available in self-test mode.
    		// (no argument evaluated yet)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. src/go/types/builtins.go

    			check.errorf(call, Test, "%v failed", call)
    			// compile-time assertion failure - safe to continue
    		}
    		// result is constant - no need to record signature
    
    	case _Trace:
    		// trace(x, y, z, ...) dumps the positions, expressions, and
    		// values of its arguments. The result of trace is the value
    		// of the first argument.
    		// Note: trace is only available in self-test mode.
    		// (no argument evaluated yet)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster.go

    				// status received in EDS. With this setting, the DRAINING and UNHEALTHY endpoints are kept - both marked
    				// as UNHEALTHY ('coarse state'), which is what will show in config dumps.
    				// DRAINING/UNHEALTHY will not be used normally for new requests. They will be used if cookie/header
    				// selects them.
    				defaultCluster.cluster.CommonLbConfig.OverrideHostStatus = &core.HealthStatusSet{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. internal/config/config.go

    	for subSys, kvs := range kvsMap {
    		DefaultKVS[subSys] = kvs
    	}
    }
    
    // HelpSubSysMap - help for all individual KVS for each sub-systems
    // also carries a special empty sub-system which dumps
    // help for each sub-system key.
    var HelpSubSysMap = map[string]HelpKVS{}
    
    // RegisterHelpSubSys - this function saves
    // input help KVS for each sub-system globally,
    // this function should be called only once
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
Back to top