Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for dumphdr (0.12 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

        }
    
        /**
         * Path to dump all class files the agent sees are dumped to. Defaults to no dumps.
         *
         * @since 3.4
         */
        @Nullable
        @Optional
        @LocalState
        public File getClassDumpDir() {
            return classDumpDir;
        }
    
        /**
         * Sets path to dump all class files the agent sees are dumped to. Defaults to no dumps.
         *
         * @since 3.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_jax_random.cc

    // The full pipeline of converting jax random include 2 steps.
    // 1. Rename the jax random functions to tflite wrapped functions with the aid
    //    of "jax.named_call". For example, in the dumped hlo, the
    //    jax.random.uniform will have name "tfl_wrapped_jax_random_uniform".
    // 2. Replace the body of "tfl_wrapped_jax_random_uniform" and
    //    "tfl_wrapped_jax_random_normal" with tfl.CustomOp("RandomUniform") and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. .idea/kotlinTestDataPluginTestDataPaths.xml

            <option value="$PROJECT_DIR$/plugins/atomicfu/atomicfu-compiler/testData" />
            <option value="$PROJECT_DIR$/plugins/fir-plugin-prototype/testData" />
            <option value="$PROJECT_DIR$/plugins/imports-dumper/testData" />
            <option value="$PROJECT_DIR$/plugins/jvm-abi-gen/testData" />
            <option value="$PROJECT_DIR$/plugins/kapt3/kapt3-base/testData" />
            <option value="$PROJECT_DIR$/plugins/kapt3/kapt3-cli/testData" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 15:09:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.cc

      std::unique_ptr<llvm::raw_ostream> os;
      std::string filepath;
      if (CreateFileForDumping(name, &os, &filepath).ok()) {
        print_callback(*os);
        LOG(INFO) << "Dumped MLIR module to " << filepath;
      }
    }
    
    void BridgeLoggerConfig::printBeforeIfEnabled(mlir::Pass* pass,
                                                  mlir::Operation* op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

        private final Map<String, String> mappingCache = [:].withDefault {
            def size = mappingCache.size()
            size >WORDS.size() ? "word${size}" : WORDS[size]
        }
    
        /**
         * Converts an operation dumped as JSON into code which can be used to
         * check the result, to be used in {@link NormalizingExcludeFactory}
         *
         * @param json
         * @return
         */
        String toCode(String json) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/flags.cc

           "it is expected to be in the proto binary format."},
          {"dump_fetch_nodes", &flags->dump_fetch_nodes,
           "If set, only flags related to fetches are processed, and the resulting "
           "fetch nodes will be dumped to stdout in a comma-separated list.  "
           "Typically used to format arguments for other tools, e.g. "
           "freeze_graph."},
          // Flags controlling the XLA ahead-of-time compilation, that correspond to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  7. src/os/exec_posix.go

    			res += " (trap " + itoa.Itoa(status.TrapCause()) + ")"
    		}
    	case status.Continued():
    		res = "continued"
    	}
    	if status.CoreDump() {
    		res += " (core dumped)"
    	}
    	return res
    }
    
    // ExitCode returns the exit code of the exited process, or -1
    // if the process hasn't exited or was terminated by a signal.
    func (p *ProcessState) ExitCode() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/installer.go

    	testenv "istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    var _ resource.Dumper = &installer{}
    
    type installArgs struct {
    	ComponentName string
    	Revision      string
    	Files         []string
    	Set           []string
    }
    
    func (args *installArgs) AppendSet(key, value string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. 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)
  10. pkg/test/kube/dump.go

    			})
    		}
    	}
    	_ = errG.Wait()
    }
    
    // DumpPods runs each dumper with the selected pods in the given namespace.
    // If selectors is empty, all pods in the namespace will be dumpped.
    // If no dumpers are provided, their resource state, events, container logs and Envoy information will be dumped.
    func DumpPods(ctx resource.Context, workDir, namespace string, selectors []string, dumpers ...PodDumper) {
    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