Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for doccomment (0.6 sec)

  1. platforms/documentation/docs/src/docs/stylesheets/custom-highlight/groovy-hl.xml

      ~ limitations under the License.
      -->
    <highlighters>
        <highlighter type="multiline-comment">
            <start>/**</start>
            <end>*/</end>
            <style>doccomment</style>
        </highlighter>
        <highlighter type="multiline-comment">
            <start>/*</start>
            <end>*/</end>
        </highlighter>
        <highlighter type="oneline-comment">//</highlighter>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/stylesheets/custom-highlight/java-hl.xml

      ~ limitations under the License.
      -->
    <highlighters>
        <highlighter type="multiline-comment">
            <start>/**</start>
            <end>*/</end>
            <style>doccomment</style>
        </highlighter>
        <highlighter type="multiline-comment">
            <start>/*</start>
            <end>*/</end>
        </highlighter>
        <highlighter type="oneline-comment">//</highlighter>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/stylesheets/custom-highlight/kotlin-hl.xml

      ~ limitations under the License.
      -->
    <highlighters>
        <highlighter type="multiline-comment">
            <start>/**</start>
            <end>*/</end>
            <style>doccomment</style>
        </highlighter>
        <highlighter type="multiline-comment">
            <start>/*</start>
            <end>*/</end>
        </highlighter>
        <highlighter type="oneline-comment">//</highlighter>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt

    fun KtFile.ktClassOf(member: CtClass) =
        collectDescendantsOfType<KtClassOrObject> { it.fqName?.asString() == member.name }.singleOrNull()
    
    
    private
    fun KtDeclaration.isDocumentedAsSince(version: String) =
        docComment?.isSince(version) == true
    
    
    private
    fun KDoc.isSince(version: String) =
        text.contains("@since $version")
    
    
    // TODO:kotlin-dsl dedupe with KotlinTypeStrings.primitiveTypeStrings
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 20:38:19 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

        private
        val KtCallableDeclaration.receiverTypeString: String?
            get() = receiverTypeReference?.text
    
        private
        val KtNamedDeclaration.sinceVersion: String
            get() = docComment?.getDefaultSection()?.findTagsByName("since")?.singleOrNull()?.getContent()
                ?: versionNotFound
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jun 25 02:53:14 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/base.css

    .hl-string { color: #008000; }
    .hl-value { color: #660E7A; }
    .hl-number { color: #0000FF; }
    .hl-keyword { color: #000080; }
    .hl-word { font-style: italic; font-weight: bold; color: #D2691E; }
    .hl-comment, .hl-doccomment { font-style: italic; color: #808080; }
    .hl-annotation { color: #808000; }
    .hl-directive { color: #555; }
    
    /*
     * Single page html
     */
    .book .chapter {
        margin-top: 4em;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

        }
    
        /**
         * -nocomment.
         */
        @Input
        public boolean isNoComment() {
            return noComment.getValue();
        }
    
        public void setNoComment(boolean noComment) {
            this.noComment.setValue(noComment);
        }
    
        public StandardJavadocDocletOptions noComment(boolean noComment) {
            setNoComment(noComment);
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

              !ShapedType::isDynamic(std::get<1>(shape_elts.value()))) {
            shape.push_back(std::get<1>(shape_elts.value()));
            refined_shape = true;
            DCOMMENT("-> refining shape element #" << shape_elts.index());
          } else {
            DCOMMENT("-> not refining shape element #" << shape_elts.index());
            shape.push_back(std::get<0>(shape_elts.value()));
          }
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

    function setupHandlers(root){
    	setAttributes(root, {
    		"onmouseup" : "handleMouseUp(evt)",
    		"onmousedown" : "handleMouseDown(evt)",
    		"onmousemove" : "handleMouseMove(evt)",
    		//"onmouseout" : "handleMouseUp(evt)", // Decomment this to stop the pan functionality when dragging out of the SVG element
    	});
    
    	if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0)
    		window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

            assertEquals(options, options.noTimestamp());
            assertTrue(options.isNoTimestamp());
        }
    
        @Test
        public void testFluentNoComment() {
            assertEquals(options, options.noComment());
            assertTrue(options.isNoComment());
        }
    
        @After
        public void tearDown() {
            options = null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top