Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 554 for mdump (0.06 sec)

  1. pkg/test/framework/scope.go

    	}()
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	if recursive {
    		for _, c := range s.children {
    			c.dump(ctx, recursive)
    		}
    	}
    	wg := sync.WaitGroup{}
    	for _, c := range s.resources {
    		if d, ok := c.(resource.Dumper); ok {
    			d := d
    			wg.Add(1)
    			go func() {
    				d.Dump(ctx)
    				wg.Done()
    			}()
    		}
    	}
    	wg.Wait()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 21:55:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/kustomizevisitor_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package resource
    
    import (
    	"testing"
    
    	"k8s.io/apimachinery/pkg/util/dump"
    	"sigs.k8s.io/kustomize/api/konfig"
    	"sigs.k8s.io/kustomize/kyaml/filesys"
    )
    
    const (
    	kustomizationContent1 = `
    apiVersion: kustomize.config.k8s.io/v1beta1
    kind: Kustomization
    namePrefix: foo-
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/legalize-tf-assert.mlir

    // RUN: tf-opt %s -tfl-legalize-tf='preserve-assert-op=true' | FileCheck %s --dump-input=fail
    
    func.func @preserve_assert(%arg0: tensor<1xi32>, %arg1: tensor<1xi32>) -> tensor<1xi1> {
      %0 = "tf.LessEqual"(%arg0, %arg1) : (tensor<1xi32>, tensor<1xi32>) -> tensor<1xi1>
      "tf.Assert"(%0, %arg1) {summarize = 3} : (tensor<1xi1>, tensor<1xi32>) -> ()
      func.return %0 : tensor<1xi1>
      // CHECK-LABEL: preserve_assert
      // CHECK: tfl.less_equal
      // CHECK: Assert
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 14:24:59 UTC 2022
    - 481 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/debug/debug.cc

      void runBeforePass(mlir::Pass* pass, mlir::Operation* op) override {
        // Always print before the first pass.
        if (!printed_) {
          Dump("before_all", op);
          printed_ = true;
        }
    
        if (RE2::FullMatch(pass->getName(), *dump_pass_re_)) {
          Dump(absl::StrCat(absl::string_view(pass->getName()), "_before"), op,
               absl::StrCat(absl::Hex(pass_counter_, absl::kZeroPad8)));
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/fallback.mlir

    // RUN: tf-tfrt-opt -tf-to-tfrt %s | FileCheck %s --dump-input=fail --dump-input-filter=all
    // RUN: tf-tfrt-opt -pass-pipeline='builtin.module(tf-to-tfrt{target-tpurt=true tpu-use-core-selector=false})' %s | FileCheck %s --dump-input=fail --dump-input-filter=all
    
    // CHECK-LABEL: func @_tfrt_fallback_init
    // CHECK-SAME: {{.*}} !tfrt.chain
    // CHECK: tfrt_fallback_async.createop(%arg0) key(0) device("/device:CPU:0") "tf.ParseExampleV2"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/syscall/exec_windows_test.go

    		// in child process
    		dumpPath := os.Getenv("GO_WANT_HELPER_PROCESS_FILE")
    		if dumpPath == "" {
    			fmt.Fprintf(os.Stderr, "Dump file path cannot be blank.")
    			os.Exit(1)
    		}
    		err := os.WriteFile(dumpPath, []byte(fmt.Sprintf("%d", os.Getppid())), 0644)
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "Error writing dump file: %v", err)
    			os.Exit(2)
    		}
    		os.Exit(0)
    	}
    
    	// run parent process
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package dynamiccertificates
    
    import (
    	"reflect"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/util/dump"
    )
    
    var serverKey = []byte(`-----BEGIN RSA PRIVATE KEY-----
    MIIEowIBAAKCAQEA13f50PPWuR/InxLIoJjHdNSG+jVUd25CY7ZL2J023X2BAY+1
    M6jkLR6C2nSFZnn58ubiB74/d1g/Fg1Twd419iR615A013f+qOoyFx3LFHxU1S6e
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. util/print_surefire_reports.sh

    #!/bin/bash
    
    set -eu
    
    # Ignore passing tests.
    files=($(
      grep -e 'failures=.[^0]' -e 'errors=.[^0]' {android/,}*/target/surefire-reports/*.xml -l |
        sed -e 's/TEST-//; s/.xml$//'))
    
    for file in "${files[@]}"; do
      # Dump file-output.txt and file.txt.
      # Use tail to include a filename header before each (and maybe truncate).
      tail -n 9999 "${file}"*.txt
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Sep 29 13:44:26 UTC 2020
    - 366 bytes
    - Viewed (0)
  9. src/runtime/mcheckmark.go

    		printlock()
    		print("runtime: checkmarks found unexpected unmarked object obj=", hex(obj), "\n")
    		print("runtime: found obj at *(", hex(base), "+", hex(off), ")\n")
    
    		// Dump the source (base) object
    		gcDumpObject("base", base, off)
    
    		// Dump the object
    		gcDumpObject("obj", obj, ^uintptr(0))
    
    		getg().m.traceback = 2
    		throw("checkmark found unmarked object")
    	}
    
    	ai := arenaIndex(obj)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/tfxla_device_specific_transformations_gpu.mlir

    // RUN: tf-opt "--tfxla-device-specific-transforms=device-type=XLA_GPU_JIT" -verify-diagnostics -split-input-file %s | FileCheck -dump-input=fail %s
    
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 1399 : i32}} {
    
    // CHECK-LABEL: stateless_op
    func.func @stateless_op() -> tensor<i32> {
      // CHECK: %cst = "tf.Const"() <{value = dense<1> : tensor<i32>}> : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 515 bytes
    - Viewed (0)
Back to top