Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 733 for reportCmd (0.27 sec)

  1. src/cmd/go/internal/work/shell.go

    // Action, which it will be printed by the Builder.
    //
    // reportCmd formats the output as "# desc" followed by the given output. The
    // output is expected to contain references to 'dir', usually the source
    // directory for the package that has failed to build. reportCmd rewrites
    // mentions of dir with a relative path to dir when the relative path is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/cover.go

    func WriteCoveragePercent(b *Builder, runAct *Action, mf string, w io.Writer) error {
    	dir := filepath.Dir(mf)
    	output, cerr := b.CovData(runAct, "percent", "-i", dir)
    	if cerr != nil {
    		return b.Shell(runAct).reportCmd("", "", output, cerr)
    	}
    	_, werr := w.Write(output)
    	return werr
    }
    
    // WriteCoverageProfile writes out a coverage profile fragment for the
    // package whose test-run action is 'runAct'; content is written to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/gccgo.go

    	if err != nil {
    		return sh.run(p.Dir, p.ImportPath, nil, tools.ar(), arArgs, "rc", absAfile, absOfiles)
    	}
    
    	// Show the output if there is any even without errors.
    	return sh.reportCmd("", "", output, nil)
    }
    
    func (tools gccgoToolchain) link(b *Builder, root *Action, out, importcfg string, allactions []*Action, buildmode, desc string) error {
    	sh := b.Shell(root)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    			}
    			seen[key] = d.Pos
    		}
    	}
    	if len(msg) > 0 {
    		// We pass a non-nil error to reportCmd to trigger the failure reporting
    		// path, but the content of the error doesn't matter because msg is
    		// non-empty.
    		err := errors.New("invalid directive")
    		return b.Shell(a).reportCmd("", "", msg, err)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/gc.go

    		sh.ShowCmd(p.Dir, "%s # internal", joinUnambiguously(cmdline))
    	}
    	if cfg.BuildN {
    		return nil
    	}
    	if err := packInternal(absAfile, absOfiles); err != nil {
    		return sh.reportCmd("", "", nil, err)
    	}
    	return nil
    }
    
    func packInternal(afile string, ofiles []string) error {
    	dst, err := os.OpenFile(afile, os.O_WRONLY|os.O_APPEND, 0)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/CheckstyleInvoker.groovy

                        """.stripIndent()
            }
            return "\n"
        }
    
        private static boolean violationsExist(Node reportXml) {
            return reportXml != null && getErrorFileCount(reportXml) > 0
        }
    
        private static int getErrorFileCount(Node reportXml) {
            return reportXml.file.error.groupBy { it.parent().@name }.keySet().size()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 22:34:07 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/CachingChangeContainerTest.groovy

        def "caches all reported changes under cache size"() {
            when:
            cachingChanges.accept(new CollectingChangeVisitor())
    
            then:
            interaction {
                receivesChanges(change1, change2)
            }
            0 * _
    
            when:
            cachingChanges.accept(collectingVisitor)
            def reported = collectingVisitor.getChanges()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DynamicCallProblemReporting.kt

        /**
         * Checks if the problem identified by [problemKey] has already been reported in the current dynamic call.
         * Side effect: marks [problemKey] as a *reported* problem if it has not been reported yet.
         *
         * @return a value saying whether this problem has not been reported yet in the current dynamic call.
         */
        fun unreportedProblemInCurrentCall(problemKey: Any): Boolean
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/error_util.h

      // Returns Status corresponding to the diagnostics reported. This consumes
      // the diagnostics reported and returns a Status of type Unknown. It is
      // required to consume the error status, if there is one, before destroying
      // the object.
      Status ConsumeStatus();
    
      // Returns the combination of the passed in status and consumed diagnostics.
      // This consumes the diagnostics reported and either appends the diagnostics
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/attributes/IncubatingAttributesCheckerTest.groovy

        // region: Single Attribute tests
        def "attribute without any @Incubating is not reported"() {
            expect:
            !IncubatingAttributesChecker.isIncubating(Usage.USAGE_ATTRIBUTE)
        }
    
        def "attribute with @Incubating annotation on class is reported"() {
            expect:
            !IncubatingAttributesChecker.isIncubating(TestSuiteType.TEST_SUITE_TYPE_ATTRIBUTE)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 12 14:19:53 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top