Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for docbook (0.23 sec)

  1. platforms/documentation/docs/README.md

    ## Groovy DSL Reference
    
    The DSL reference is authored in Docbook syntax, with sources under `src/docs/dsl`.
    Much of the content is extracted from code doc comments.
    
    To build it, run:
    
    ```bash
    ./gradlew :docs:dslHtml
    ```
    
    The output is available under `build/working/dsl`.
    
    ### Useful docbook tags
    
    See the [docbook reference](http://docbook.org/tdg/en/html/part2.html) for a list of all available tags.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. gradle/verification-metadata.xml

                <pgp value="5B131E826582CF79510DAA11CD3E539F208832D0"/>
             </artifact>
          </component>
          <component group="net.sf.docbook" name="docbook-xsl" version="1.75.2">
             <artifact name="docbook-xsl-1.75.2-resources.zip">
                <sha256 value="eea2df391d11dcf3732d2b9ac1c344d527c955984824c08da4afdcd5acf92d03" origin="Verified" reason="Artifact is not signed"/>
             </artifact>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    // release-note files under docFS. It checks that the files exist and that they have
    // some minimal content (see [CheckFragment]).
    // The docRoot argument is the path from the repo or project root to the root of docFS.
    // It is used only for error messages.
    func CheckAPIFile(apiFS fs.FS, filename string, docFS fs.FS, docRoot string) error {
    	features, err := parseAPIFile(apiFS, filename)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/time/tick_test.go

    			// send racing with the Reset/Stop+drain that arrives after
    			// the first drain1 has pulled the value out.
    			// This is rare, but it does happen on overloaded builder machines.
    			// It can also be reproduced on an M3 MacBook Pro using:
    			//
    			//	go test -c strings
    			//	stress ./strings.test &   # chew up CPU
    			//	go test -c -race time
    			//	stress -p 48 ./time.test -test.count=10 -test.run=TestChan/asynctimerchan=1/Ticker
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_config.properties

    paging.page.size = 25
    
    # The size of page range for paging
    paging.page.range.size = 5
    
    # The option 'fillLimit' of page range for paging
    paging.page.range.fill.limit = true
    
    # fetch page size
    page.docboost.max.fetch.size=1000
    page.keymatch.max.fetch.size=1000
    page.labeltype.max.fetch.size=1000
    page.roletype.max.fetch.size=1000
    page.user.max.fetch.size=1000
    page.role.max.fetch.size=1000
    page.group.max.fetch.size=1000
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    func TestGoroutineSwitch(t *testing.T) {
    	if runtime.Compiler == "gccgo" {
    		t.Skip("not applicable for gccgo")
    	}
    	// How much to try. These defaults take about 1 seconds
    	// on a 2012 MacBook Pro. The ones in short mode take
    	// about 0.1 seconds.
    	tries := 10
    	count := 1000000
    	if testing.Short() {
    		tries = 1
    	}
    	for try := 0; try < tries; try++ {
    		var prof bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'page.docboost.max.fetch.size'. <br>
         * The value is, e.g. 1000 <br>
         * comment: fetch page size
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getPageDocboostMaxFetchSize();
    
        /**
         * Get the value for the key 'page.docboost.max.fetch.size' as {@link Integer}. <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
Back to top