Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for fooer2 (0.11 sec)

  1. platforms/documentation/docs/src/main/resources/footer.html

                    </form>
                </div>
            </section>
        </nav>
    </footer>
    
    </div>
    <!-- end div class="content" -->
    
    
    </main>
    
    <div class="site-footer-secondary">
        <div class="site-footer-secondary__contents">
            <div class="site-footer__copy">© <a href="https://gradle.com">Gradle Inc.</a>
                <time>2023</time>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. test/escape2n.go

    	N int64
    }
    
    func LimitFooer(r Fooer, n int64) Fooer { // ERROR "leaking param: r$"
    	return &LimitedFooer{r, n} // ERROR "&LimitedFooer{...} escapes to heap$"
    }
    
    func foo90(x *int) map[*int]*int { // ERROR "leaking param: x$"
    	return map[*int]*int{nil: x} // ERROR "map\[\*int\]\*int{...} escapes to heap$"
    }
    
    func foo91(x *int) map[*int]*int { // ERROR "leaking param: x$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-name-bug.pbtxt

    # library contains "foo1", "foo2", ..., "foo20", from which "foo1" and "foo11"
    # were mapped to the same name "foo110" in the bug.
    node {
      name: "unnamed"
      op: "foo1"
    }
    node {
      name: "unnamed1"
      op: "foo11"
    }
    library {
      function {
        signature {
          name: "foo1"
        }
      }
      function {
        signature {
          name: "foo2"
        }
      }
      function {
        signature {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			jobs: []runtime.Object{
    				&batchv1.Job{ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "foo-ns"}},
    				&batchv1.Job{ObjectMeta: metav1.ObjectMeta{Name: "foo1", Namespace: "foo-ns",
    					OwnerReferences: []metav1.OwnerReference{{Name: "fooer", Controller: &trueRef}}}},
    				&batchv1.Job{ObjectMeta: metav1.ObjectMeta{Name: "foo2", Namespace: "foo-ns"}},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  5. src/testing/newcover.go

    	if mode == "" {
    		return
    	}
    	cover2.mode = mode
    	cover2.tearDown = tearDown
    	cover2.snapshotcov = snapcov
    }
    
    // coverReport2 invokes a callback in _testmain.go that will
    // emit coverage data at the point where test execution is complete,
    // for "go test -cover" runs.
    func coverReport2() {
    	if !goexperiment.CoverageRedesign {
    		panic("unexpected")
    	}
    	if errmsg, err := cover2.tearDown(*coverProfile, *gocoverdir); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDocOptions.java

        }
    
        /**
         * Returns the HTML text to appear in the footer for each page.
         */
        @Nullable @Optional @Input
        public String getFooter() {
            return footer;
        }
    
        /**
         * Sets the HTML text to appear in the footer for each page.
         */
        public void setFooter(@Nullable String footer) {
            this.footer = footer;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/validation/PublicationWarningsCollector.java

        private final String footer;
        private final String disableMethod;
        private final Map<String, VariantWarningCollector> variantToWarnings;
    
        public PublicationWarningsCollector(
            Map<String, VariantWarningCollector> variantToWarnings,
            Logger logger,
            String unsupportedFeature,
            String incompatibleFeature,
            String footer,
            String disableMethod
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/javadoc/Groovydoc.java

        }
    
        /**
         * Returns the HTML footer for each page. Set to {@code null} when there is no footer.
         */
        @Nullable
        @Optional
        @Input
        public String getFooter() {
            return footer;
        }
    
        /**
         * Sets footer text for each page (optional).
         *
         * @param footer the footer as HTML
         */
        public void setFooter(@Nullable String footer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractProjectBasedReportTask.java

        protected abstract void generateReportFor(ProjectDetails project, T model);
    
        /**
         * Provides a means of printing a customizable footer section below the per-project details body
         * of the report.
         * <p>
         * By default, there is no footer information printed.
         *
         * @param modelsByProjectDetails information about the projects under report
         * @since 8.9
         */
        @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

        public String getFooter() {
            return footer.getValue();
        }
    
        public void setFooter(@Nullable String footer) {
            this.footer.setValue(footer);
        }
    
        public StandardJavadocDocletOptions footer(String footer) {
            setFooter(footer);
            return this;
        }
    
        /**
         * -bottom text
         * <p>
         * Specifies the text to be placed at the bottom of each output file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top