Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 269 for printuint (0.23 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractProjectBasedReportTask.java

                );
            }
            return new ProjectBasedReportModel<>(map);
        }
    
        protected abstract T calculateReportModelFor(Project project);
    
        /**
         * Provides a means of printing a customizable header section above the per-project details body
         * of the report.
         * <p>
         * By default, there is no header information printed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/dump_graph.h

      MlirDumpConfig& elide_large_attributes(int large_element_limit = 16) {
        this->op_printing_flags.elideLargeElementsAttrs(large_element_limit);
        return *this;
      }
    
      // Enable printing of debug information. If 'pretty_form' is set to true,
      // debug information is printed in a more readable 'pretty' form but this
      // pretty form is not parsable (so only for human readability).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 24 09:43:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      // converted to BiggestInt, we print it as a BiggestInt.
      //
      // Most likely T is an enum type (either named or unnamed), in which
      // case printing it as an integer is the desired behavior.  In case
      // T is not an enum, printing it as an integer is the best we can do
      // given that it has no user-defined printer.
      static void PrintValue(const T& value, ::std::ostream* os) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      // converted to BiggestInt, we print it as a BiggestInt.
      //
      // Most likely T is an enum type (either named or unnamed), in which
      // case printing it as an integer is the desired behavior.  In case
      // T is not an enum, printing it as an integer is the best we can do
      // given that it has no user-defined printer.
      static void PrintValue(const T& value, ::std::ostream* os) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. testing/integ-test/src/integTest/groovy/org/gradle/integtests/DependencyResolutionFromTaskContextIntegrationTest.groovy

                    Set<File> classpath = project.configurations["myconf"].files
                    BadTask() {
                        println("creating bad task")
                    }
                    @TaskAction
                    void printIt() {
                        def outputFile = getOutputFile().get().asFile
                        outputFile.text = "bad"
                    }
                }
    
                abstract class GoodTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ParallelStaleOutputIntegrationTest.groovy

                    Set<File> classpath = project.configurations["myconf"].files
                    BadTask() {
                        println("creating bad task")
                    }
                    @TaskAction
                    void printIt() {
                        def outputFile = getOutputFile().get().asFile
                        outputFile.text = "bad"
                    }
                }
    
                abstract class GoodTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tasks/taskConstructorArgs-onTaskContainer/groovy/build.gradle

        @Inject
        CustomTask(String message, int number) {
            this.message = message
            this.number = number
        }
    // end::inject-task-constructor[]
    
        @TaskAction
        void printIt() {
            println("$message $number")
        }
    // tag::inject-task-constructor[]
    }
    // end::inject-task-constructor[]
    
    // tag::on-task-container[]
    tasks.register('myTask', CustomTask, 'hello', 42)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 559 bytes
    - Viewed (0)
  8. test/fixedbugs/issue11053.dir/p_test.go

    	s.Add(out) // not inlined.
    	return out
    }
    
    var s T
    
    func main() {
    	println("Starting")
    	fmt.Sprint(new(int32))
    	resp := F(s).(*P)
    	println("Before, *resp.V=", *resp.V) // Trashes *resp.V in process of printing.
    	println("After,  *resp.V=", *resp.V)
    	if got, want := *resp.V, int32(42); got != want {
    		fmt.Printf("FAIL, got %v, want %v", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 828 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/modfile/print.go

    	// remove trailing blank lines
    	b := pr.Bytes()
    	for len(b) > 0 && b[len(b)-1] == '\n' && (len(b) == 1 || b[len(b)-2] == '\n') {
    		b = b[:len(b)-1]
    	}
    	return b
    }
    
    // A printer collects the state during printing of a file or expression.
    type printer struct {
    	bytes.Buffer           // output buffer
    	comment      []Comment // pending end-of-line comments
    	margin       int       // left margin (indent), a number of tabs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 00:48:59 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/FailurePrinterListener.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.problems.failure;
    
    /**
     * Listener for steps in the process of printing a failure by {@link FailurePrinter}.
     */
    public interface FailurePrinterListener {
    
        FailurePrinterListener NO_OP = new FailurePrinterListener() {
            @Override
            public void beforeFrames() {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:45:41 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top