Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 443 for Paging (0.16 sec)

  1. 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)
  2. guava/src/com/google/common/io/ByteStreams.java

       *       and virtual memory, this is not a problem - because it is mapped read-only, the kernel
       *       can always page it to disk "for free". However, on systems where killing processes
       *       happens all the time in normal conditions (i.e., android) the OS must make a tradeoff
       *       between paging memory and killing other processes - so allocating a gigantic buffer and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. src/syscall/zerrors_aix_ppc64.go

    	27:  "input device data",
    	28:  "window size changes",
    	29:  "power-failure",
    	30:  "user defined signal 1",
    	31:  "user defined signal 2",
    	32:  "profiling timer expired",
    	33:  "paging space low",
    	34:  "virtual timer expired",
    	35:  "signal 35",
    	36:  "signal 36",
    	37:  "signal 37",
    	38:  "signal 38",
    	39:  "signal 39",
    	48:  "signal 48",
    	49:  "signal 49",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{29, "SIGPWR", "power-failure"},
    	{30, "SIGUSR1", "user defined signal 1"},
    	{31, "SIGUSR2", "user defined signal 2"},
    	{32, "SIGPROF", "profiling timer expired"},
    	{33, "SIGDANGER", "paging space low"},
    	{34, "SIGVTALRM", "virtual timer expired"},
    	{35, "SIGMIGRATE", "signal 35"},
    	{36, "SIGPRE", "signal 36"},
    	{37, "SIGVIRT", "signal 37"},
    	{38, "SIGTALRM", "signal 38"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	{29, "SIGPWR", "power-failure"},
    	{30, "SIGUSR1", "user defined signal 1"},
    	{31, "SIGUSR2", "user defined signal 2"},
    	{32, "SIGPROF", "profiling timer expired"},
    	{33, "SIGDANGER", "paging space low"},
    	{34, "SIGVTALRM", "virtual timer expired"},
    	{35, "SIGMIGRATE", "signal 35"},
    	{36, "SIGPRE", "signal 36"},
    	{37, "SIGVIRT", "signal 37"},
    	{38, "SIGTALRM", "signal 38"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  6. releasenotes/notes/gateway-naming.yaml

    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
      **Improved** Gateway naming conventions to be concatenation of `Name` and `GatewayClassName`. 
      Deployment also now deploys with its own Service Account, rather than using the `default` token. 
      Naming convention affects name of Deployment, Service and Service Account.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 06 14:56:19 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apimachinery/pkg/api/apitesting/naming/naming.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package naming
    
    import (
    	"encoding/json"
    	"fmt"
    	"reflect"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/files/copy/kotlin/src/main/webapp/draft-staging.html

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6 bytes
    - Viewed (0)
Back to top