Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for doccomment (0.19 sec)

  1. 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)
  2. 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)
  3. dbflute_fess/dfprop/classificationDefinitionMap.dfprop

        #; Flg = list:{
        #    ; map:{topComment=general boolean classification for every flg-column; codeType=Number}
        #    ; map:{code=1; name=True ; alias=Checked  ; comment=means yes; sisterCode=true}
        #    ; map:{code=0; name=False; alias=Unchecked; comment=means no ; sisterCode=false}
        #}
        # example for table classification
        #; MemberStatus = list:{
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            }
    
            private void println(String s) {
                if (!indent.isEmpty()) {
                    writer.print(indent);
                }
                if (eolComment != null) {
                    writer.println(s + eolComment);
                    eolComment = null;
                } else {
                    writer.println(s);
                }
                hasSeparatorLine = false;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/printer.go

    		fmt.Fprintf(&buf, "<<< ERROR: %s", err)
    	}
    	return buf.String()
    }
    
    type ctrlSymbol int
    
    const (
    	none ctrlSymbol = iota
    	semi
    	blank
    	newline
    	indent
    	outdent
    	// comment
    	// eolComment
    )
    
    type whitespace struct {
    	last token
    	kind ctrlSymbol
    	//text string // comment text (possibly ""); valid if kind == comment
    }
    
    type printer struct {
    	output     io.Writer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. src/encoding/csv/reader_test.go

    	Output: [][]string{{" a", "  b", "   c"}},
    }, {
    	Name:    "Comment",
    	Input:   "#1,2,3\n§a,§b,§c\n#comment",
    	Output:  [][]string{{"a", "b", "c"}},
    	Comment: '#',
    }, {
    	Name:   "NoComment",
    	Input:  "§#1,§2,§3\n¶§a,§b,§c",
    	Output: [][]string{{"#1", "2", "3"}, {"a", "b", "c"}},
    }, {
    	Name:       "LazyQuotes",
    	Input:      `§a "word",§"1"2",§a",§"b`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 04:25:13 UTC 2022
    - 19.1K bytes
    - Viewed (0)
Back to top