Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for MASK (0.08 sec)

  1. cmd/kube-controller-manager/app/options/options_test.go

    	"--min-resync-period=8h",
    	"--mirroring-concurrent-service-endpoint-syncs=2",
    	"--mirroring-max-endpoints-per-subset=1000",
    	"--namespace-sync-period=10m",
    	"--node-cidr-mask-size=48",
    	"--node-cidr-mask-size-ipv4=48",
    	"--node-cidr-mask-size-ipv6=108",
    	"--node-eviction-rate=0.2",
    	"--node-monitor-grace-period=30s",
    	"--node-monitor-period=10s",
    	"--node-startup-grace-period=30s",
    	"--profiling=false",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    // from stopped via the core dump bit.
    
    const (
    	mask    = 0x7F
    	core    = 0x80
    	exited  = 0x00
    	stopped = 0x7F
    	shift   = 8
    )
    
    func (w WaitStatus) Exited() bool { return w&mask == exited }
    
    func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != exited }
    
    func (w WaitStatus) Stopped() bool { return w&0xFF == stopped }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    // is set if ptrs[i] is reachable.
    func gcTestIsReachable(ptrs ...unsafe.Pointer) (mask uint64) {
    	// This takes the pointers as unsafe.Pointers in order to keep
    	// them live long enough for us to attach specials. After
    	// that, we drop our references to them.
    
    	if len(ptrs) > 64 {
    		panic("too many pointers for uint64 mask")
    	}
    
    	// Block GC while we attach specials and drop our references
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    		ret[n].Critical = template.PermittedDNSDomainsCritical
    
    		ipAndMask := func(ipNet *net.IPNet) []byte {
    			maskedIP := ipNet.IP.Mask(ipNet.Mask)
    			ipAndMask := make([]byte, 0, len(maskedIP)+len(ipNet.Mask))
    			ipAndMask = append(ipAndMask, maskedIP...)
    			ipAndMask = append(ipAndMask, ipNet.Mask...)
    			return ipAndMask
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    		toCheck = len(payload)
    	}
    
    	for i := 0; i < toCheck; i++ {
    		t := uint(paddingLen) - uint(i)
    		// if i <= paddingLen then the MSB of t is zero
    		mask := byte(int32(^t) >> 31)
    		b := payload[len(payload)-1-i]
    		good &^= mask&paddingLen ^ mask&b
    	}
    
    	// We AND together the bits of good and replicate the result across
    	// all the bits.
    	good &= good << 4
    	good &= good << 2
    	good &= good << 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    		if flushBgCredit {
    			gcFlushBgCredit(workDone)
    		}
    	}
    	return workDone
    }
    
    // markrootBlock scans the shard'th shard of the block of memory [b0,
    // b0+n0), with the given pointer mask.
    //
    // Returns the amount of work done.
    //
    //go:nowritebarrier
    func markrootBlock(b0, n0 uintptr, ptrmask0 *uint8, gcw *gcWork, shard int) int64 {
    	if rootBlockBytes%(8*goarch.PtrSize) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. docs/en/data/people.yml

      url: https://github.com/Ventura94
    - login: White-Mask
      count: 6
      avatarUrl: https://avatars.githubusercontent.com/u/31826970?u=8625355dc25ddf9c85a8b2b0b9932826c4c8f44c&v=4
      url: https://github.com/White-Mask
    - login: sehraramiz
      count: 5
      avatarUrl: https://avatars.githubusercontent.com/u/14166324?v=4
      url: https://github.com/sehraramiz
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    func (b *gcBits) bytep(n uintptr) *uint8 {
    	return addb(&b.x, n)
    }
    
    // bitp returns a pointer to the byte containing bit n and a mask for
    // selecting that bit from *bytep.
    func (b *gcBits) bitp(n uintptr) (bytep *uint8, mask uint8) {
    	return b.bytep(n / 8), 1 << (n % 8)
    }
    
    const gcBitsChunkBytes = uintptr(64 << 10)
    const gcBitsHeaderBytes = unsafe.Sizeof(gcBitsHeader{})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf.go

    //	  uint8_t cpr2_size;
    //	  /* The floating-point ABI.  */
    //	  uint8_t fp_abi;
    //	  /* Processor-specific extension.  */
    //	  uint32_t isa_ext;
    //	  /* Mask of ASEs used.  */
    //	  uint32_t ases;
    //	  /* Mask of general flags.  */
    //	  uint32_t flags1;
    //	  uint32_t flags2;
    //	} Elf_Internal_ABIFlags_v0;
    func elfWriteMipsAbiFlags(ctxt *Link) int {
    	sh := elfshname(".MIPS.abiflags")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ppc64/ssa.go

    		p := s.Prog(v.Op.Asm())
    		p.From.Type = obj.TYPE_CONST
    		p.From.Offset = v.AuxInt
    		p.Reg = v.Args[0].Reg()
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = v.Reg()
    
    		// Auxint holds encoded rotate + mask
    	case ssa.OpPPC64RLWINM, ssa.OpPPC64RLWMI:
    		sh, mb, me, _ := ssa.DecodePPC64RotateMask(v.AuxInt)
    		p := s.Prog(v.Op.Asm())
    		p.To = obj.Addr{Type: obj.TYPE_REG, Reg: v.Reg()}
    		p.Reg = v.Args[0].Reg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top