Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for noComment (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    )
    
    const (
    	nArrayType = iota
    	nAssignStmt
    	nBadDecl
    	nBadExpr
    	nBadStmt
    	nBasicLit
    	nBinaryExpr
    	nBlockStmt
    	nBranchStmt
    	nCallExpr
    	nCaseClause
    	nChanType
    	nCommClause
    	nComment
    	nCommentGroup
    	nCompositeLit
    	nDeclStmt
    	nDeferStmt
    	nEllipsis
    	nEmptyStmt
    	nExprStmt
    	nField
    	nFieldList
    	nFile
    	nForStmt
    	nFuncDecl
    	nFuncLit
    	nFuncType
    	nGenDecl
    	nGoStmt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. src/compress/gzip/example_test.go

    	if err != nil {
    		log.Fatal(err)
    	}
    
    	if err := zw.Close(); err != nil {
    		log.Fatal(err)
    	}
    
    	zr, err := gzip.NewReader(&buf)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	fmt.Printf("Name: %s\nComment: %s\nModTime: %s\n\n", zr.Name, zr.Comment, zr.ModTime.UTC())
    
    	if _, err := io.Copy(os.Stdout, zr); err != nil {
    		log.Fatal(err)
    	}
    
    	if err := zr.Close(); err != nil {
    		log.Fatal(err)
    	}
    
    	// Output:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 22 16:24:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

                } catch (Exception e) {
                    throw new GradleException(String.format("Could not convert javadoc comment to docbook.%nClass: %s%nComment: %s", classMetaData, rawCommentText), e);
                }
            } finally {
                listener.finish();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 29.3K bytes
    - Viewed (0)
  7. docs/fr/docs/fastapi-people.md

    {% endfor %}
    
    </div>
    
    {% endfor %}
    {% endif %}
    
    ## À propos des données - détails techniques
    
    L'intention de cette page est de souligner l'effort de la communauté pour aider les autres.
    
    Notamment en incluant des efforts qui sont normalement moins visibles, et, dans de nombreux cas, plus difficile, comme aider d'autres personnes à résoudre des problèmes et examiner les Pull Requests de traduction.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. hack/update-vendor.sh

      go mod edit -fmt
    }
    
    function add_generated_comments() {
      local local_tmp_dir
      local_tmp_dir=$(mktemp -d "${TMP_DIR}/add_generated_comments.XXXX")
      local go_mod_nocomments="${local_tmp_dir}/go.mod.nocomments.tmp"
    
      # drop comments before the module directive
      awk "
         BEGIN           { dropcomments=1 }
         /^module /      { dropcomments=0 }
         dropcomments && /^\/\// { next }
         { print }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. pkg/kubelet/network/dns/dns_test.go

    		{"nameserver 1.2.3.4\nsearch foo\nnameserver 5.6.7.8\nsearch bar", []string{"1.2.3.4", "5.6.7.8"}, []string{"bar"}, []string{}, false},
    		{"#comment\nnameserver 1.2.3.4\n#comment\nsearch foo\ncomment", []string{"1.2.3.4"}, []string{"foo"}, []string{}, false},
    		{"options ", []string{}, []string{}, []string{}, false},
    		{"options ndots:5 attempts:2", []string{}, []string{}, []string{"ndots:5", "attempts:2"}, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  10. docs/fr/docs/index.md

    ```Python
    item_id: int
    ```
    
    ou pour un modèle `Item` plus complexe :
    
    ```Python
    item: Item
    ```
    
    ... et avec cette déclaration unique, vous obtenez :
    
    * Une assistance dans votre IDE, notamment :
        * la complétion.
        * la vérification des types.
    * La validation des données :
        * des erreurs automatiques et claires lorsque les données ne sont pas valides.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top