Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 183 for MASK (0.06 sec)

  1. guava/src/com/google/common/cache/Striped64.java

       *
       * It is possible for a Cell to become unused when threads that
       * once hashed to it terminate, as well as in the case where
       * doubling the table causes no thread to hash to it under
       * expanded mask.  We do not try to detect or remove such cells,
       * under the assumption that for long-running instances, observed
       * contention levels will recur, so the cells will eventually be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/net/netip/netip.go

    		// the compiler doesn't know that, so mask with 63 to help it.
    		// Now truncate to 32 bits, because this is IPv4.
    		// If all the bits we care about are equal, the result will be zero.
    		return uint32((ip.addr.lo^p.ip.addr.lo)>>((32-p.Bits())&63)) == 0
    	} else {
    		// xor the IP addresses together.
    		// Mask away the bits we don't care about.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. src/crypto/rsa/rsa.go

    }
    
    // OAEPOptions is an interface for passing options to OAEP decryption using the
    // crypto.Decrypter interface.
    type OAEPOptions struct {
    	// Hash is the hash function that will be used when generating the mask.
    	Hash crypto.Hash
    
    	// MGFHash is the hash function used for MGF1.
    	// If zero, Hash is used instead.
    	MGFHash crypto.Hash
    
    	// Label is an arbitrary byte string that must be equal to the value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/Striped64.java

       *
       * It is possible for a Cell to become unused when threads that
       * once hashed to it terminate, as well as in the case where
       * doubling the table causes no thread to hash to it under
       * expanded mask.  We do not try to detect or remove such cells,
       * under the assumption that for long-running instances, observed
       * contention levels will recur, so the cells will eventually be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // End:          8,  65,   42
      // Stride:       1,   4,   -1
      // Begin mask:   0,   0,    1  (= 1)
      // End mask:     1,   0,    0  (= 4)
    
      // So result shape:
      // Dim #0: begin mask (1) -> begin = 0; end 8 canonicalized to 4: so 4
      // Dim #1: 4 to 65 stride 4: so 16
      // Dim #2: begin -3 + 1024 = 1021; end mask (1) -> end = -1: so 1022
      // result shape: [4, 16, 1022]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	    pathType: File
    //	  certSANs:
    //	  - "10.100.1.1"
    //	  - "ec2-10-100-0-1.compute-1.amazonaws.com"
    //	  timeoutForControlPlane: 4m0s
    //	controllerManager:
    //	  extraArgs:
    //	    "node-cidr-mask-size": "20"
    //	  extraVolumes:
    //	  - name: "some-volume"
    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	scheduler:
    //	  extraArgs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. src/runtime/slice.go

    		overflow = uintptr(newcap) > maxAlloc/goarch.PtrSize
    		newcap = int(capmem / goarch.PtrSize)
    	case isPowerOfTwo(et.Size_):
    		var shift uintptr
    		if goarch.PtrSize == 8 {
    			// Mask shift for better code generation.
    			shift = uintptr(sys.TrailingZeros64(uint64(et.Size_))) & 63
    		} else {
    			shift = uintptr(sys.TrailingZeros32(uint32(et.Size_))) & 31
    		}
    		lenmem = uintptr(oldLen) << shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/constants/constants.go

    	MinimumAddressesInPodSubnet = 14
    
    	// PodSubnetNodeMaskMaxDiff is limited to 16 due to an issue with uncompressed IP bitmap in core:
    	// xref: #44918
    	// The node subnet mask size must be no more than the pod subnet mask size + 16
    	PodSubnetNodeMaskMaxDiff = 16
    
    	// DefaultCertTokenDuration specifies the default amount of time that the token used by upload certs will be valid
    	// Default behaviour is 2 hours
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. cmd/globals.go

    	globalTrace = pubsub.New[madmin.TraceInfo, madmin.TraceType](8)
    
    	// global Listen system to send S3 API events to registered listeners
    	globalHTTPListen = pubsub.New[event.Event, pubsub.Mask](0)
    
    	// global console system to send console logs to
    	// registered listeners
    	globalConsoleSys *HTTPConsoleLoggerSys
    
    	// All unique drives for this deployment
    	globalEndpoints EndpointServerPools
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

              return WalkResult::interrupt();
          }
          return WalkResult::advance();
        });
    
        if (result.wasInterrupted()) return failure();
      }
      // Current UnidirectionalSequenceLSTMOp doesn't support mask input.
      if (lstm_func.getNumArguments() == 7) return failure();
    
      // We should know the batch size in advance for the lstm fusion.
      // A good indicator of batch size is both cell state and input state (indices
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top