Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for docbook (0.42 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    Gradle marks the tasks for the production code as `UP-TO-DATE`, indicating that it remains unchanged since the last successful build:
    
    [source,text]
    ----
    $./gradlew :app:build
    
    lkassovic@MacBook-Pro temp1 % ./gradlew :app:build
    > Task :app:compileJava UP-TO-DATE
    > Task :app:processResources NO-SOURCE
    > Task :app:classes UP-TO-DATE
    > Task :app:jar UP-TO-DATE
    > Task :app:assemble UP-TO-DATE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. 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)
  3. src/encoding/gob/codec_test.go

    // Do not run the machine yet; instead do individual instructions crafted by hand.
    func TestScalarDecInstructions(t *testing.T) {
    	ovfl := errors.New("overflow")
    
    	// bool
    	{
    		var data bool
    		instr := &decInstr{decBool, 6, nil, ovfl}
    		state := newDecodeStateFromData(boolResult)
    		execDec(instr, state, t, reflect.ValueOf(&data))
    		if data != true {
    			t.Errorf("bool a = %v not true", data)
    		}
    	}
    	// int
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/x-doom">
        <glob pattern="*.wad"/>
      </mime-type>
      <mime-type type="application/x-dtbncx+xml">
        <glob pattern="*.ncx"/>
      </mime-type>
      <mime-type type="application/x-dtbook+xml">
        <glob pattern="*.dtb"/>
      </mime-type>
      <mime-type type="application/x-dtbresource+xml">
        <glob pattern="*.res"/>
      </mime-type>
    
      <mime-type type="application/x-dvi">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top