Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 491 for Generating (0.21 sec)

  1. tensorflow/c/experimental/ops/README.md

    operator in the script should be in the "math" category, and it will be
    generated in the output file `c/experimental/ops/math_ops.cc`.
    
    Running this script should be a no-op, generating identical code other than
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 17:21:01 UTC 2021
    - 993 bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/DefaultTestReport.java

        public void generateReport(TestResultsProvider resultsProvider, File reportDir) {
            LOG.info("Generating HTML test report...");
    
            Timer clock = Time.startTimer();
            AllTestResults model = loadModelFromProvider(resultsProvider);
            generateFiles(model, resultsProvider, reportDir);
            LOG.info("Finished generating test html results ({}) into: {}", clock.getElapsed(), reportDir);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:58:15 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/fiat/generate.go

    		log.Fatal(err)
    	}
    
    	for _, c := range curves {
    		log.Printf("Generating %s.go...", c.Prefix)
    		f, err := os.Create(c.Prefix + ".go")
    		if err != nil {
    			log.Fatal(err)
    		}
    		if err := t.Execute(f, c); err != nil {
    			log.Fatal(err)
    		}
    		if err := f.Close(); err != nil {
    			log.Fatal(err)
    		}
    
    		log.Printf("Generating %s_fiat64.go...", c.Prefix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  4. src/go/doc/comment/print.go

    	DocLinkBaseURL string
    
    	// TextPrefix is a prefix to print at the start of every line
    	// when generating text output using the Text method.
    	TextPrefix string
    
    	// TextCodePrefix is the prefix to print at the start of each
    	// preformatted (code block) line when generating text output,
    	// instead of (not in addition to) TextPrefix.
    	// If TextCodePrefix is the empty string, it defaults to TextPrefix+"\t".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testing/jacoco-quickstart/groovy/build.gradle

    // tag::testtask-dependency[]
    test {
        finalizedBy jacocoTestReport // report is always generated after tests run
    }
    jacocoTestReport {
        dependsOn test // tests are required to run before generating the report
    }
    // end::testtask-dependency[]
    
    // tag::report-configuration[]
    jacocoTestReport {
        reports {
            xml.required = false
            csv.required = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 18:21:45 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/JavadocOutputLevel.java

     */
    public enum JavadocOutputLevel {
        /**
         * -verbose
         *
         * Provides more detailed messages while javadoc is running. Without the verbose option,
         * messages appear for loading the source files, generating the documentation (one message per source file), and sorting.
         * The verbose option causes the printing of additional messages specifying the number of milliseconds to parse each java source file.
         */
        VERBOSE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. test/fixedbugs/issue24799.go

    // occur if an 8 byte load is used to load a go.string that is
    // not aligned to 4 bytes due to the type of relocation that
    // is generated for the instruction. A fix was made to avoid
    // generating an instruction with DS relocation for go.strings
    // since their alignment is not known until link time. 
    
    // This problem only affects go.string since other types have
    // correct alignment.
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 20 16:16:47 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateWorkspaceSettingsFileTask.java

    import org.gradle.internal.Cast;
    import org.gradle.plugins.ide.api.PropertyListGeneratorTask;
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Task for generating a Xcode workspace settings file (e.g. {@code Foo.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings}).
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/MissingLockStateException.java

                "To create the lock state, run a task that performs dependency resolution and add '--write-locks' to the command line.",
                new DocumentationRegistry().getDocumentationRecommendationFor("information on generating lock state", "dependency_locking", "generating_and_updating_dependency_locks"));
        }
        public MissingLockStateException(DisplayName displayName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. cmd/sts-errors.go

    // descriptions for all the error responses.
    var stsErrCodes = stsErrorCodeMap{
    	ErrSTSAccessDenied: {
    		Code:           "AccessDenied",
    		Description:    "Generating temporary credentials not allowed for this request.",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrSTSMissingParameter: {
    		Code:           "MissingParameter",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top