Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for Paging (0.39 sec)

  1. src/main/resources/fess_config.properties

    #                                                     Paging
    #                                                     ------
    # The size of one page for paging
    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
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    			}
    
    			numEvald++
    
    			// free kv early. Long lists can take O(seconds) to decode.
    			getResp.Kvs[i] = nil
    		}
    
    		// no more results remain or we didn't request paging
    		if !hasMore || !paging {
    			break
    		}
    		// we're paging but we have filled our bucket
    		if int64(v.Len()) >= opts.Predicate.Limit {
    			break
    		}
    
    		if limit < maxLimit {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. cmd/object_api_suite_test.go

    	}
    
    	uploadContent := "The specified multipart upload does not exist. The upload ID might be invalid, or the multipart upload might have been aborted or completed."
    	var opts ObjectOptions
    	// check before paging occurs.
    	for i := 0; i < 5; i++ {
    		key := "obj" + strconv.Itoa(i)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 25 */
        String PAGING_PAGE_SIZE = "paging.page.size";
    
        /** The key of the configuration. e.g. 5 */
        String PAGING_PAGE_RANGE_SIZE = "paging.page.range.size";
    
        /** The key of the configuration. e.g. true */
        String PAGING_PAGE_RANGE_FILL_LIMIT = "paging.page.range.fill.limit";
    
        /** The key of the configuration. e.g. 1000 */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  5. src/runtime/malloc.go

    	// to this, since the generated code can be more efficient,
    	// but comes at the cost of having a large L2 mapping.
    	//
    	// We use the L1 map on 64-bit Windows because the arena size
    	// is small, but the address space is still 48 bits, and
    	// there's a high cost to having a large L2.
    	arenaL1Bits = 6 * (_64bit * goos.IsWindows)
    
    	// arenaL2Bits is the number of bits of the arena number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. schema/naming.go

    }
    
    // Replacer replacer interface like strings.Replacer
    type Replacer interface {
    	Replace(name string) string
    }
    
    var _ Namer = (*NamingStrategy)(nil)
    
    // NamingStrategy tables, columns naming strategy
    type NamingStrategy struct {
    	TablePrefix         string
    	SingularTable       bool
    	NameReplacer        Replacer
    	NoLowerCase         bool
    	IdentifierMaxLength int
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. releasenotes/notes/50933.yaml

    apiVersion: release-notes/v2
    
    # This YAML file describes the format for specifying a release notes entry for Istio.
    # This should be filled in for all user facing changes.
    
    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 13:58:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. releasenotes/notes/apko-distroless.yaml

    kind: feature
    area: installation
    releaseNotes:
      - |
        **Updated** the [`distroless`](/docs/ops/configuration/security/harden-docker-images/) images to be based on [Wolfi](https://wolfi.dev).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 267 bytes
    - Viewed (0)
  9. releasenotes/notes/16585.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 16585
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 406 bytes
    - Viewed (0)
  10. releasenotes/notes/49700.yaml

    apiVersion: release-notes/v2
    
    # This YAML file describes the format for specifying a release notes entry for Istio.
    # This should be filled in for all user facing changes.
    
    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top