Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 78 of 78 for docbook (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-csh",
    				"application/x-debian-package",
    				"application/x-dex",
    				"application/x-director",
    				"application/x-doom",
    				"application/x-dtbncx+xml",
    				"application/x-dtbook+xml",
    				"application/x-dtbresource+xml",
    				"application/x-dvi",
    				"application/x-elc",
    				"application/x-elf",
    				"message/x-emlx",
    				"application/x-killustrator",
    				"application/x-object",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K 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)
  8. 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