Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 161 for Dumps (0.15 sec)

  1. pkg/test/framework/components/echo/kube/templates/deployment.yaml

      ($.OverlayIstioProxy)
    }}
          - name: istio-proxy
            image: auto
            imagePullPolicy: {{ $.ImagePullPolicy }}
            securityContext: # to allow core dumps
              readOnlyRootFilesystem: false
    {{- end }}
    {{- if $.IncludeExtAuthz }}
          - name: ext-authz
            image: {{ $.ImageHub }}/ext-authz:{{ $.ImageTag }}
            imagePullPolicy: {{ $.ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-plugin-performance/src/performanceTest/groovy/org/gradle/performance/BuildScanPluginPerformanceTest.groovy

                def spoolDir = this.spoolDir()
                if (context.phase == Phase.MEASURE && (context.iteration == invocationSettings.buildCount) && spoolDir.exists()) {
                    def targetDirectory = new File("build/scan-dumps/$testId")
                    targetDirectory.deleteDir()
                    FileUtils.moveToDirectory(spoolDir, targetDirectory, true)
                }
            }
    
            private File spoolDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 09:04:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

    function setCTM(element, matrix) {
    	var s = "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")";
    
    	element.setAttribute("transform", s);
    }
    
    /**
     * Dumps a matrix to a string (useful for debug).
     */
    function dumpMatrix(matrix) {
    	var s = "[ " + matrix.a + ", " + matrix.c + ", " + matrix.e + "\n  " + matrix.b + ", " + matrix.d + ", " + matrix.f + "\n  0, 0, 1 ]";
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. pkg/test/framework/scope.go

    	s.mu.Lock()
    	skip := s.skipDump
    	s.mu.Unlock()
    	if skip {
    		return
    	}
    	st := time.Now()
    	defer func() {
    		l := scopes.Framework.Debugf
    		if time.Since(st) > time.Second*10 {
    			// Log slow dumps at higher level
    			l = scopes.Framework.Infof
    		}
    		l("Done dumping: %s for %s (%v)", s.id, ctx.ID(), time.Since(st))
    	}()
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	if recursive {
    		for _, c := range s.children {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 21:55:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

        DEBUGGER_TYPE_UNSPECIFIED = 0;
        // DEBUGGER_TYPE_WHOLE_MODEL creates two tf.Savedmodel - unquantized and
        // quantized model with DumpTensor added to outputs of quantizable layers.
        // The DumpTensor dumps entire value of its input to a specified file. When
        // DEBUGGER_TYPE_WHOLE_MODEL is used unquantized_dump_model_path has to be
        // specified.
        DEBUGGER_TYPE_WHOLE_MODEL = 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller_debug.go

    )
    
    const (
    	queryIncludeRequestDetails = "includeRequestDetails"
    )
    
    func (cfgCtlr *configController) Install(c *mux.PathRecorderMux) {
    	// TODO(yue9944882): handle "Accept" header properly
    	// debugging dumps a CSV content for three levels of granularity
    	// 1. row per priority-level
    	c.UnlistedHandleFunc("/debug/api_priority_and_fairness/dump_priority_levels", cfgCtlr.dumpPriorityLevels)
    	// 2. row per queue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. pkg/test/framework/suitecontext.go

    }
    
    // RequestTestDump is called by the test context for a failed test to request a full
    // dump of the system state. Returns true if the dump may proceed, or false if the
    // maximum number of dumps has been exceeded for this suite.
    func (c *suiteContext) RequestTestDump() bool {
    	return c.dumpCount.Inc() < c.settings.MaxDumps
    }
    
    func (c *suiteContext) ID() string {
    	return c.globalScope.id
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crd/conversion.go

    // response.
    //
    // NOTE: This function only decodes a subset of the complete k8s
    // ObjectMeta as identified by the fields in model.Meta. This
    // would typically only be a problem if a user dumps an configuration
    // object with kubectl and then re-ingests it.
    func ParseInputs(inputs string) ([]config.Config, []IstioKind, error) {
    	return parseInputsImpl(inputs, true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. hack/ginkgo-e2e.sh

    # the CLI.
    suite_args=()
    if [ "${E2E_TEST_DEBUG_TOOL:-ginkgo}" != "ginkgo" ]; then
      for arg in "${ginkgo_args[@]}"; do
        suite_args+=("--ginkgo.${arg#--}")
      done
    fi
    
    # Generate full dumps of the test result and progress in <report-dir>/ginkgo/,
    # using the Ginkgo-specific JSON format and JUnit XML. Ignored if --report-dir
    # is not used.
    suite_args+=(--report-complete-ginkgo --report-complete-junit)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. src/runtime/histogram.go

    	subBucket := uint(duration>>(bucketBit-1-timeHistSubBucketBits)) % timeHistNumSubBuckets
    	h.counts[bucket*timeHistNumSubBuckets+subBucket].Add(1)
    }
    
    // write dumps the histogram to the passed metricValue as a float64 histogram.
    func (h *timeHistogram) write(out *metricValue) {
    	hist := out.float64HistOrInit(timeHistBuckets)
    	// The bottom-most bucket, containing negative values, is tracked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top