Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 151 for dumpling (0.17 sec)

  1. pkg/test/framework/testcontext.go

    	if c.suite.RequestTestDump() {
    		scopes.Framework.Debugf("Begin dumping testContext: %q", c.id)
    		// make sure we dump suite-level/top-level resources, but don't dump sibling tests or their children
    		for _, scope := range c.topLevelScopes() {
    			scope.dump(c, false)
    		}
    		c.scope.dump(c, true)
    		scopes.Framework.Debugf("Completed dumping testContext: %q", c.id)
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.cc

      Env* env = Env::Default();
      Status status = env->RecursivelyCreateDir(dir);
      if (!status.ok()) {
        LOG(WARNING) << "Failed to create '" << dir
                     << "' directory for dumping: " << status;
        return Status(absl::StatusCode::kUnavailable, "(unavailable)");
      }
      *filepath = io::JoinPath(dir, MakeUniqueFilename(std::string(name)));
    
      // Try to open the file and generate a raw_ostream.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/runtime/fastlog2.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    // fastlog2 implements a fast approximation to the base 2 log of a
    // float64. This is used to compute a geometric distribution for heap
    // sampling, without introducing dependencies into package math. This
    // uses a very rough approximation using the float64 exponent and the
    // first 25 bits of the mantissa. The top 5 bits of the mantissa are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 22:45:17 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  4. pkg/util/coverage/coverage.go

    	// or if it's empty we just use a default in /tmp
    	coverageFile = os.Getenv("KUBE_COVERAGE_FILE")
    	if coverageFile == "" {
    		coverageFile = "/tmp/k8s-" + name + ".cov"
    	}
    	fmt.Println("Dumping coverage information to " + coverageFile)
    
    	flushInterval := 5 * time.Second
    	requestedInterval := os.Getenv("KUBE_COVERAGE_FLUSH_INTERVAL")
    	if requestedInterval != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 21:00:21 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. src/runtime/libfuzzer_arm64.s

    	// multiples of 4.
    	AND	$-4, R8, R8
    	// Add the offset of the fake_pc-th ret.
    	ADD	R8, R30, R30
    	// Call the function by jumping to it and reusing all registers except
    	// for the modified return address register R30.
    	JMP	(R9)
    
    // The ret sled for ARM64 consists of 128 br instructions jumping to the
    // end of the function. Each instruction is 4 bytes long. The sled thus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 07 14:47:46 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/WithRuleBasedTasks.groovy

                }
            }
    
            class JumpTask extends DefaultTask {
                @Internal
                int height = 0
                @TaskAction
                void print() {
                    println "Jumping \$height centimeters"
                }
            }
    
            class BrokenTask extends DefaultTask {
                BrokenTask() { throw new RuntimeException() }
            }
    """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 13 15:22:15 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

      using '?' for unknown sizes. For example, `input-arg-shapes=1,2::1,?`
      expresses argument shapes `[1,2]`, `[]` and `[1,?]`.
    * `--e`: Elide large elements attrs while dumping the output StableHLO.
    * `--output_filename`: Path to the output file where the textual StableHLO MLIR
      module will be written (default: stdout).
    
    
    ### Examples
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. pilot/pkg/features/telemetry.go

    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/log"
    )
    
    // Define telemetry related features here.
    var (
    	traceSamplingVar = env.Register(
    		"PILOT_TRACE_SAMPLING",
    		1.0,
    		"Sets the mesh-wide trace sampling percentage. Should be 0.0 - 100.0. Precision to 0.01. "+
    			"Default is 1.0.",
    	)
    
    	TraceSampling = func() float64 {
    		f := traceSamplingVar.Get()
    		if f < 0.0 || f > 100.0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. docs/debugging/inspect/main.go

    		os.Exit(1)
    	}
    
    	// dump public key to file
    	publicKeyBytes := x509.MarshalPKCS1PublicKey(&privatekey.PublicKey)
    	if err != nil {
    		fmt.Printf("error when dumping publickey: %s n", err)
    		os.Exit(1)
    	}
    	publicKeyBlock := &pem.Block{
    		Type:  "PUBLIC KEY",
    		Bytes: publicKeyBytes,
    	}
    	publicPem, err := os.Create("support_public.pem")
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. pkg/test/kube/dump.go

    	stdout, _, err := ik.Invoke(args)
    	if err != nil {
    		scopes.Framework.Warnf("failed dumping %s (cluster %s): %v", endpoint, c.Name(), err)
    		return
    	}
    	outputs := map[string]string{}
    	if err := json.Unmarshal([]byte(stdout), &outputs); err != nil {
    		scopes.Framework.Warnf("failed dumping %s (cluster %s): %v", endpoint, c.Name(), err)
    		return
    	}
    	for istiod, out := range outputs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top