Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 658 for COMMENT (0.19 sec)

  1. src/main/java/org/codelibs/fess/es/user/bsentity/BsRole.java

    import java.time.LocalDateTime;
    import java.util.HashMap;
    import java.util.Map;
    
    import org.codelibs.fess.es.user.allcommon.EsAbstractEntity;
    import org.codelibs.fess.es.user.bsentity.dbmeta.RoleDbm;
    
    /**
     * ${table.comment}
     * @author ESFlute (using FreeGen)
     */
    public class BsRole extends EsAbstractEntity {
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. JavadocStyleGuide.md

    Basic formatting rules:
    
    - The first line contains the begin-comment delimiter ( `/**`).
    - The first sentence is a summary.
    - Notice the inline tag `{@link URL}`, which converts to an HTML hyperlink pointing to the documentation for the URL class.
    - If you have more than one paragraph in the doc comment, separate the paragraphs with a `<p>` paragraph tag, as shown.
    - Insert a blank comment line between the description and the list of tags, as shown.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/math/unsafe.go

    // Notable members of the hall of shame include:
    //   - gitee.com/quant1x/num
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    // Note that this comment is not part of the doc comment.
    //
    //go:linkname Float32bits
    
    // Float32bits returns the IEEE 754 binary representation of f,
    // with the sign bit of f and the result in the same bit position.
    // Float32bits(Float32frombits(x)) == x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. pkg/kubelet/network/dns/dns_test.go

    		{"\t\n\t", []string{}, []string{}, []string{}, false},
    		{"#comment\n", []string{}, []string{}, []string{}, false},
    		{" #comment\n", []string{}, []string{}, []string{}, false},
    		{"#comment\n#comment", []string{}, []string{}, []string{}, false},
    		{"#comment\nnameserver", []string{}, []string{}, []string{}, true},                           // nameserver empty
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/log/bsentity/BsUserInfo.java

    import java.time.LocalDateTime;
    import java.util.HashMap;
    import java.util.Map;
    
    import org.codelibs.fess.es.log.allcommon.EsAbstractEntity;
    import org.codelibs.fess.es.log.bsentity.dbmeta.UserInfoDbm;
    
    /**
     * ${table.comment}
     * @author ESFlute (using FreeGen)
     */
    public class BsUserInfo extends EsAbstractEntity {
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginHtmlReportIntegrationTest.groovy

            barViolations[1] == ["error", "Missing a Javadoc comment.", "5"]
    
            // Foo.java violations
            fileViolations[1].selectFirst("h3").text().endsWith("Foo.java")
    
            def fooViolations = parseTable(fileViolations[1].selectFirst(".violationlist"))
            fooViolations[0] == ["Severity", "Description", "Line Number"]
            fooViolations[1] == ["error", "Missing a Javadoc comment.", "5"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 22:34:07 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. src/runtime/mbarrier.go

    		// Pass nil for the type. ptr does not point to value of type typ,
    		// but rather points into one so it's not safe to apply the optimization.
    		// See the comment on this function in the reflect package and the
    		// comment on bulkBarrierPreWrite.
    		bulkBarrierPreWrite(uintptr(ptr), 0, size, nil)
    	}
    	memclrNoHeapPointers(ptr, size)
    }
    
    //go:linkname reflect_typedarrayclear reflect.typedarrayclear
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/ipset.go

    				name = name[:31]
    			}
    		}
    	}
    	set := &IPSet{
    		IPSet: utilipset.IPSet{
    			Name:       name,
    			SetType:    setType,
    			HashFamily: hashFamily,
    			Comment:    comment,
    		},
    		activeEntries: sets.New[string](),
    		handle:        handle,
    	}
    	return set
    }
    
    func (set *IPSet) validateEntry(entry *utilipset.Entry) bool {
    	return entry.Validate(&set.IPSet)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/stdlib_test.go

    		// get per-file instructions
    		expectErrors := false
    		filename := filepath.Join(path, f.Name())
    		goVersion := ""
    		if comment := firstComment(filename); comment != "" {
    			if strings.Contains(comment, "-goexperiment") {
    				continue // ignore this file
    			}
    			fields := strings.Fields(comment)
    			switch fields[0] {
    			case "skip", "compiledir":
    				continue // ignore this file
    			case "errorcheck":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/misc/DynamicProperties.java

        }
    
        @Override
        public void storeToXML(final OutputStream os, final String comment, final String encoding) throws IOException {
            getProperties().storeToXML(os, comment, encoding);
        }
    
        @Override
        public void storeToXML(final OutputStream os, final String comment) throws IOException {
            getProperties().storeToXML(os, comment);
        }
    
        @Override
        public Set<String> stringPropertyNames() {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top