Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,552 for pats (0.12 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/VariantNameBuilder.java

            if (parts.size() == 1) {
                return Describables.of(parts.get(0));
            }
            return new MultipleVariantName(parts);
        }
    
        private static class MultipleVariantName implements DisplayName {
            private final List<String> parts;
    
            private MultipleVariantName(List<String> parts) {
                this.parts = parts;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.cc

      int64_t GetPassNumber(mlir::Pass* pass) {
        if (!pass_to_number_map_.contains(pass)) {
          pass_to_number_map_[pass] = mlir_pass_count_++;
        }
        return pass_to_number_map_[pass];
      }
    
      void Dump(mlir::Pass* pass, PrintCallbackFn print_callback, bool is_before) {
        auto& pass_to_dump_file_map = is_before ? pass_to_dump_file_before_map_
                                                : pass_to_dump_file_after_map_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:38:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. pkg/volume/flexvolume/probe.go

    	// this may be called with an actual absolute path on Windows (with a C:\ prefix).
    	// But the prober.fs.Walk below will execute filepath.Join(fs.root, filenameAbove), which
    	// will result in an incorrect path, you can't join C:\path and C:\another\path.
    	filename = strings.TrimPrefix(filename, `C:\`)
    	addWatch := func(path string, info os.FileInfo, err error) error {
    		if err == nil && info.IsDir() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. pkg/config/analysis/local/analyze_test.go

    	g.Expect(err).To(Not(BeNil()))
    }
    
    const (
    	yamlSeparator = "---\n"
    )
    
    // JoinString joins the given yaml parts into a single multipart document.
    func JoinString(parts ...string) string {
    	var st strings.Builder
    
    	var lastIsNewLine bool
    	for _, p := range parts {
    		if len(p) == 0 {
    			continue
    		}
    		if st.Len() != 0 {
    			if !lastIsNewLine {
    				_, _ = st.WriteString("\n")
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    	Run:  runBuildTag,
    }
    
    func runBuildTag(pass *analysis.Pass) (interface{}, error) {
    	for _, f := range pass.Files {
    		checkGoFile(pass, f)
    	}
    	for _, name := range pass.OtherFiles {
    		if err := checkOtherFile(pass, name); err != nil {
    			return nil, err
    		}
    	}
    	for _, name := range pass.IgnoredFiles {
    		if strings.HasSuffix(name, ".go") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Pass/PassOptions.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    
    namespace mlir {
    
    // Creates a pass that breaks up an island with multiple ops into multiple
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag_old.go

    	Run:  runBuildTag,
    }
    
    func runBuildTag(pass *analysis.Pass) (interface{}, error) {
    	for _, f := range pass.Files {
    		checkGoFile(pass, f)
    	}
    	for _, name := range pass.OtherFiles {
    		if err := checkOtherFile(pass, name); err != nil {
    			return nil, err
    		}
    	}
    	for _, name := range pass.IgnoredFiles {
    		if strings.HasSuffix(name, ".go") {
    			f, err := parser.ParseFile(pass.Fset, name, nil, parser.ParseComments)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/scripts/JavaAppStartScriptGenerationDetails.java

        List<String> getClasspath();
    
        /**
         * The module path, relative to the application home directory.
         *
         * @since 6.4
         */
        List<String> getModulePath();
    
        /**
         * The path of the script, relative to the application home directory.
         */
        String getScriptRelPath();
    
        /**
         * This system property to use to pass the script name to the application. May be null.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/DescribablesTest.groovy

            Describables.of(123).displayName == "123"
            Describables.of(123).toString() == "123"
            Describables.of(123).capitalizedDisplayName == "123"
        }
    
        def "creates from parts"() {
            expect:
            Describables.of("one", "two").displayName == "one two"
            Describables.of("one", "two").toString() == "one two"
            Describables.of("one", "two").capitalizedDisplayName == "One two"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/metrics/error_collector_inst.h

      // Instrumentation hooks. These hooks don't need to be thread-safe. The pass
      // manager runs each pass for the entire module, then it walks through
      // each op in the module and runs the pass on them, may be in async mode.
      void runBeforePass(Pass *pass, Operation *module) override;
      void runAfterPass(Pass *pass, Operation *module) override;
      void runAfterPassFailed(Pass *pass, Operation *module) override;
    
      // The handler to capture error messages.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 01:48:36 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top