Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 313 for Fmask (0.07 sec)

  1. src/os/path.go

    import (
    	"internal/filepathlite"
    	"syscall"
    )
    
    // MkdirAll creates a directory named path,
    // along with any necessary parents, and returns nil,
    // or else returns an error.
    // The permission bits perm (before umask) are used for all
    // directories that MkdirAll creates.
    // If path is already a directory, MkdirAll does nothing
    // and returns nil.
    func MkdirAll(path string, perm FileMode) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSet.java

        Object[] table = new Object[tableSize];
        int mask = tableSize - 1;
        int hashCode = 0;
        int uniques = 0;
        for (int i = 0; i < n; i++) {
          Object element = checkElementNotNull(elements[i], i);
          int hash = element.hashCode();
          for (int j = Hashing.smear(hash); ; j++) {
            int index = j & mask;
            Object value = table[index];
            if (value == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSet.java

          requireNonNull(hashTable);
          int eHash = e.hashCode();
          int i0 = Hashing.smear(eHash);
          int mask = hashTable.length - 1;
          for (int i = i0; i - i0 < maxRunBeforeFallback; i++) {
            int index = i & mask;
            Object tableEntry = hashTable[index];
            if (tableEntry == null) {
              addDedupedElement(e);
              hashTable[index] = e;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/policy_static_test.go

    			stAssignments:   state.ContainerCPUAssignments{},
    			stDefaultCPUSet: cpuset.New(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11),
    			numRequested:    2,
    			socketMask: func() bitmask.BitMask {
    				mask, _ := bitmask.NewBitMask(0)
    				return mask
    			}(),
    			expCSet: cpuset.New(0, 6),
    		},
    		{
    			description:     "Request 2 CPUs, BitMask on Socket 1",
    			topo:            topoDualSocketHT,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256_asm.go

    	t2, b := bits.Sub64(s[2], 0xffffffffffffffff, b)
    	t3, b := bits.Sub64(s[3], 0xffffffff00000000, b)
    	tMask := b - 1 // zero if subtraction underflowed
    	s[0] ^= (t0 ^ s[0]) & tMask
    	s[1] ^= (t1 ^ s[1]) & tMask
    	s[2] ^= (t2 ^ s[2]) & tMask
    	s[3] ^= (t3 ^ s[3]) & tMask
    }
    
    // Add sets q = p1 + p2, and returns q. The points may overlap.
    func (q *P256Point) Add(r1, r2 *P256Point) *P256Point {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

            if (parameters.size() > 1 && parameters.get(parameters.size() - 2).getKind() == ParameterKindInfo.KOTLIN_DEFAULT_MASK) {
                // push the default mask equal to zero, meaning that no parameters have the default values
                code.add("// The interceptor expects a Kotlin default mask, add a zero argument:\n");
                code.addStatement("$N._ICONST_0()", METHOD_VISITOR_FIELD);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. src/runtime/arena.go

    	// Too many bits to fit in this word. Write the current word
    	// out and move on to the next word.
    
    	data := h.mask | bits<<h.valid       // mask for this word
    	h.mask = bits >> (ptrBits - h.valid) // leftover for next word
    	h.valid += valid - ptrBits           // have h.valid+valid bits, writing ptrBits of them
    
    	// Flush mask to the memory bitmap.
    	idx := h.offset / (ptrBits * goarch.PtrSize)
    	m := uintptr(1)<<h.low - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/config/validation.go

    		return fmt.Errorf("expected valid IPv4 loopback address in CIDR %s; found %v", cidr, ipp.Addr())
    	}
    
    	ones := ipp.Bits()
    	if ones < 8 || ones > 32 {
    		return fmt.Errorf("expected CIDR %s to have mask in range [8, 32]; found %v", cidr, ones)
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 11 02:38:28 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

      // perNodeHostBits defines the number of host bits to be configured per node.
      // A subnet mask determines how much of the address is used for network bits
      // and host bits. For example an IPv4 address of 192.168.0.0/24, splits the
      // address into 24 bits for the network portion and 8 bits for the host portion.
      // To allocate 256 IPs, set this field to 8 (a /24 mask for IPv4 or a /120 for IPv6).
      // Minimum value is 4 (16 IPs).
      // This field is immutable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/io/ioutil/ioutil.go

    func ReadFile(filename string) ([]byte, error) {
    	return os.ReadFile(filename)
    }
    
    // WriteFile writes data to a file named by filename.
    // If the file does not exist, WriteFile creates it with permissions perm
    // (before umask); otherwise WriteFile truncates it before writing, without changing permissions.
    //
    // Deprecated: As of Go 1.16, this function simply calls [os.WriteFile].
    func WriteFile(filename string, data []byte, perm fs.FileMode) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top