Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 196 for MASK (0.09 sec)

  1. src/vendor/golang.org/x/net/idna/trieval.go

    // table size significantly.
    //
    // The per-rune values have the following format:
    //
    //	if mapped {
    //	  if inlinedXOR {
    //	    15..13 inline XOR marker
    //	    12..11 unused
    //	    10..3  inline XOR mask
    //	  } else {
    //	    15..3  index into xor or mapping table
    //	  }
    //	} else {
    //	    15..14 unused
    //	    13     mayNeedNorm
    //	    12..11 attributes
    //	    10..8  joining type
    //	     7..3  category type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 04:45:15 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_s390x.s

    TEXT ·Or8(SB), NOSPLIT, $0-9
    	MOVD	ptr+0(FP), R3
    	MOVBZ	val+8(FP), R4
    	// We don't have atomic operations that work on individual bytes so we
    	// need to align addr down to a word boundary and create a mask
    	// containing v to OR with the entire word atomically.
    	MOVD	$(3<<3), R5
    	RXSBG	$59, $60, $3, R3, R5 // R5 = 24 - ((addr % 4) * 8) = ((addr & 3) << 3) ^ (3 << 3)
    	ANDW	$~3, R3              // R3 = floor(addr, 4) = addr &^ 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. src/os/types.go

    	ModeSticky     = fs.ModeSticky     // t: sticky
    	ModeIrregular  = fs.ModeIrregular  // ?: non-regular file; nothing else is known about this file
    
    	// Mask for the type bits. For regular files, none will be set.
    	ModeType = fs.ModeType
    
    	ModePerm = fs.ModePerm // Unix permission bits, 0o777
    )
    
    func (fs *fileStat) Name() string { return fs.name }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/PluginResolverFactory.java

         * </ol>
         * <p>
         * This order is optimized for both performance and to allow resolvers earlier in the order
         * to mask plugins which would have been found later in the order.
         */
        private void addDefaultResolvers(PluginArtifactRepositories pluginResolveContext, List<PluginResolver> resolvers) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/runtime/testdata/testprog/numcpu_freebsd.go

    			fmt.Printf("%s\n", err)
    			return
    		}
    	}
    	fmt.Println("OK")
    	return
    }
    
    func getList() ([]string, error) {
    	pid := syscall.Getpid()
    
    	// Launch cpuset to print a list of available CPUs: pid <PID> mask: 0, 1, 2, 3.
    	cmd := exec.Command("cpuset", "-g", "-p", strconv.Itoa(pid))
    	cmdline := strings.Join(cmd.Args, " ")
    	output, err := cmd.CombinedOutput()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 20:09:46 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. src/html/template/attr.go

    // license that can be found in the LICENSE file.
    
    package template
    
    import (
    	"strings"
    )
    
    // attrTypeMap[n] describes the value of the given attribute.
    // If an attribute affects (or can mask) the encoding or interpretation of
    // other content, or affects the contents, idempotency, or credentials of a
    // network message, then the value in this map is contentTypeUnsafe.
    // This map is derived from HTML5, specifically
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  7. src/net/interface_test.go

    		case *IPNet:
    			if ifa == nil || ifa.IP == nil || ifa.IP.IsMulticast() || ifa.Mask == nil {
    				return nil, fmt.Errorf("unexpected value: %#v", ifa)
    			}
    			if len(ifa.IP) != IPv6len {
    				return nil, fmt.Errorf("should be internal representation either IPv6 or IPv4-mapped IPv6 address: %#v", ifa)
    			}
    			prefixLen, maxPrefixLen := ifa.Mask.Size()
    			if ifa.IP.To4() != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. src/crypto/rand/util_test.go

    			}
    			expected := (i + 7) / 8
    			if reader.n != expected {
    				t.Errorf("Int(reader, %d) should read %d bytes, but it read: %d", max, expected, reader.n)
    			}
    		})
    	}
    }
    
    // Test that Int does not mask out valid return values
    func TestIntMask(t *testing.T) {
    	for max := 1; max <= 256; max++ {
    		t.Run(fmt.Sprintf("max=%d", max), func(t *testing.T) {
    			for i := 0; i < max; i++ {
    				if testing.Short() && i == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 01:35:39 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/rand/rand.go

    	// of "bad words" being formed.
    	alphanums = "bcdfghjklmnpqrstvwxz2456789"
    	// No. of bits required to index into alphanums string.
    	alphanumsIdxBits = 5
    	// Mask used to extract last alphanumsIdxBits of an int.
    	alphanumsIdxMask = 1<<alphanumsIdxBits - 1
    	// No. of random letters we can extract from a single int63.
    	maxAlphanumsPerInt = 63 / alphanumsIdxBits
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 11 11:02:01 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  10. src/internal/bytealg/indexbyte_arm64.s

    	VMOV	R5, V5.S4
    	ANDS	$0x1f, R0, R9
    	AND	$0x1f, R2, R10
    	BEQ	loop
    
    	// Input string is not 32-byte aligned. We calculate the
    	// syndrome value for the aligned 32 bytes block containing
    	// the first bytes and mask off the irrelevant part.
    	VLD1.P	(R3), [V1.B16, V2.B16]
    	SUB	$0x20, R9, R4
    	ADDS	R4, R2, R2
    	VCMEQ	V0.B16, V1.B16, V3.B16
    	VCMEQ	V0.B16, V2.B16, V4.B16
    	VAND	V5.B16, V3.B16, V3.B16
    	VAND	V5.B16, V4.B16, V4.B16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 3.3K bytes
    - Viewed (0)
Back to top