Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for 1_8000 (0.14 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	STA_FREQHOLD  = 0x80
    	STA_PPSSIGNAL = 0x100
    	STA_PPSJITTER = 0x200
    	STA_PPSWANDER = 0x400
    	STA_PPSERROR  = 0x800
    	STA_CLOCKERR  = 0x1000
    	STA_NANO      = 0x2000
    	STA_MODE      = 0x4000
    	STA_CLK       = 0x8000
    )
    
    const (
    	TIME_OK    = 0x0
    	TIME_INS   = 0x1
    	TIME_DEL   = 0x2
    	TIME_OOP   = 0x3
    	TIME_WAIT  = 0x4
    	TIME_ERROR = 0x5
    	TIME_BAD   = 0x5
    )
    
    type Rlimit struct {
    	Cur uint64
    	Max uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

                defaultMap.put(FessConfig.PAGE_DOCBOOST_MAX_FETCH_SIZE, "1000");
                defaultMap.put(FessConfig.PAGE_KEYMATCH_MAX_FETCH_SIZE, "1000");
                defaultMap.put(FessConfig.PAGE_LABELTYPE_MAX_FETCH_SIZE, "1000");
                defaultMap.put(FessConfig.PAGE_ROLETYPE_MAX_FETCH_SIZE, "1000");
                defaultMap.put(FessConfig.PAGE_USER_MAX_FETCH_SIZE, "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)
  3. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	{0x0fbf0ed0, 0x0eb00ac0, 4, VABS_EQ_F32, 0x8011c04, instArgs{arg_Sd_Dd, arg_Sm_Dm}},                           // VABS<c>.F<32,64> <Sd,Dd>, <Sm,Dm> cond:4|1|1|1|0|1|D|1|1|0|0|0|0|Vd:4|1|0|1|sz|1|1|M|0|Vm:4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.24.md

    - Existing InTree AzureFile PVs which don't have a secret namespace defined will now work properly after enabling CSI migration - the namespace will be obtained from ClaimRef. ([#108000](https://github.com/kubernetes/kubernetes/pull/108000), [@RomanBednar](https://github.com/RomanBednar))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  5. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/x-atari-floppy-disk-image">
        <tika:link>http://fileformats.archiveteam.org/wiki/ATR</tika:link>
        <magic priority="50">
          <match value="0x9602" offset="0">
            <match value="0x8000" offset="4">
              <match value="0x00000000" offset="11"/>
            </match>
            <match value="0x0001" offset="4">
              <match value="0x00000000" offset="11"/>
            </match>
          </match>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.21.md

    - Existing InTree AzureFile PVs which don't have a secret namespace defined will now work properly after enabling CSI migration - the namespace will be obtained from ClaimRef. ([#108000](https://github.com/kubernetes/kubernetes/pull/108000), [@RomanBednar](https://github.com/RomanBednar)) [SIG Cloud Provider and Storage]
    
    ## Dependencies
    
    ### Added
    _Nothing has changed._
    
    ### Changed
    _Nothing has changed._
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.14.md

    - The apiserver, including both the kube-apiserver and apiservers built with the generic apiserver library, will now return 413 RequestEntityTooLarge error if a json patch contains more than 10,000 operations. ([#74000](https://github.com/kubernetes/kubernetes/pull/74000), [@caesarxuchao](https://github.com/caesarxuchao))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (2)
  8. src/cmd/compile/internal/ssa/rewrite386.go

    		v0.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (MOVWLSX (ANDLconst [c] x))
    	// cond: c & 0x8000 == 0
    	// result: (ANDLconst [c & 0x7fff] x)
    	for {
    		if v_0.Op != Op386ANDLconst {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		x := v_0.Args[0]
    		if !(c&0x8000 == 0) {
    			break
    		}
    		v.reset(Op386ANDLconst)
    		v.AuxInt = int32ToAuxInt(c & 0x7fff)
    		v.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.23.md

    ### API Change
    
    - Fix OpenAPI serialization of the x-kubernetes-validations field ([#108030](https://github.com/kubernetes/kubernetes/pull/108030), [@liggitt](https://github.com/liggitt)) [SIG API Machinery]
    
    ### Feature
    
    - Kubernetes is now built with Golang 1.17.7 ([#108100](https://github.com/kubernetes/kubernetes/pull/108100), [@xmudrii](https://github.com/xmudrii)) [SIG Cloud Provider, Instrumentation, Release and Testing]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.22.md

    - Existing InTree AzureFile PVs which don't have a secret namespace defined will now work properly after enabling CSI migration - the namespace will be obtained from ClaimRef. ([#108000](https://github.com/kubernetes/kubernetes/pull/108000), [@RomanBednar](https://github.com/RomanBednar)) [SIG Cloud Provider and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
Back to top