Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for Dumps (0.04 sec)

  1. src/internal/trace/testdata/cmd/gotraceeventstats/main.go

    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "Supported modes:")
    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "* size  - dumps size stats\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		flag.PrintDefaults()
    	}
    	log.SetFlags(0)
    }
    
    func main() {
    	log.SetPrefix("")
    	flag.Parse()
    
    	if flag.NArg() != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_to_string.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // Dumps a TFLite flatbuffer to a textual output format.
    // This tool is intended to be used to simplify unit testing/debugging.
    
    #include <stddef.h>
    #include <stdint.h>
    
    #include <fstream>
    #include <iostream>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 15:52:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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