Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 196 for MASK (0.11 sec)

  1. cmd/listen-notification-handlers.go

    	}
    
    	pattern := event.NewPattern(prefix, suffix)
    
    	var eventNames []event.Name
    	var mask pubsub.Mask
    	for _, s := range values[peerRESTListenEvents] {
    		eventName, err := event.ParseName(s)
    		if err != nil {
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    		mask.MergeMaskable(eventName)
    		eventNames = append(eventNames, eventName)
    	}
    
    	if bucketName != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/go/printer/testdata/comments2.golden

    	_ = yyyyyyyyyyyyyyyy			/* comment - should be aligned */
    
    	_ = xxxxxxxxxxxxxxxxxxxxxxxxxxxx	// comment
    	_ = yyyyyyyyyyyyyyyy			// comment - should be aligned
    
    	// test case from issue
    label:
    	mask := uint64(1)<<c - 1		// Allocation mask
    	used := atomic.LoadUint64(&h.used)	// Current allocations
    }
    
    // Test cases for issue 18782
    var _ = [][]int{
    	/*       a, b, c, d, e */
    	/* a */ {0, 0, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:50 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. src/go/printer/testdata/comments2.input

       _ = yyyyyyyyyyyyyyyy /* comment - should be aligned */
    
       _ = xxxxxxxxxxxxxxxxxxxxxxxxxxxx // comment
       _ = yyyyyyyyyyyyyyyy // comment - should be aligned
    
    // test case from issue
    label:
       mask := uint64(1)<<c - 1 // Allocation mask
       used := atomic.LoadUint64(&h.used) // Current allocations
    }
    
    // Test cases for issue 18782
    var _ = [][]int{
       /*       a, b, c, d, e */
       /* a */ {0, 0, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 00:06:54 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  4. src/image/draw/clip_test.go

    		image.Rectangle{},
    		image.Pt(44, 33),
    		image.Point{},
    		true,
    		image.Rect(0, 0, 36, 47),
    		image.Pt(44, 33),
    		image.Point{},
    	},
    
    	// The following tests all have a non-nil mask.
    	{
    		"basic mask",
    		image.Rect(0, 0, 80, 80),
    		image.Rect(20, 0, 100, 80),
    		image.Rect(0, 0, 50, 49),
    		image.Rect(0, 0, 46, 47),
    		image.Point{},
    		image.Point{},
    		false,
    		image.Rect(20, 0, 46, 47),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/math/DoubleUtils.java

        return -Math.nextUp(-d);
      }
    
      // The mask for the significand, according to the {@link
      // Double#doubleToRawLongBits(double)} spec.
      static final long SIGNIFICAND_MASK = 0x000fffffffffffffL;
    
      // The mask for the exponent, according to the {@link
      // Double#doubleToRawLongBits(double)} spec.
      static final long EXPONENT_MASK = 0x7ff0000000000000L;
    
      // The mask for the sign, according to the {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 28 15:37:52 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt

      internal const val B0_FLAG_RSV3 = 16
    
      /** Byte 0 mask for the frame opcode. */
      internal const val B0_MASK_OPCODE = 15
    
      /** Flag in the opcode which indicates a control frame. */
      internal const val OPCODE_FLAG_CONTROL = 8
    
      /**
       * Byte 1 flag for whether the payload data is masked.
       *
       * If this flag is set, the next four
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. pkg/volume/volume_linux.go

    	// is not what we want; thus, we skip chmod for symlinks.
    	if info.Mode()&os.ModeSymlink != 0 {
    		return nil
    	}
    
    	mask := rwMask
    	if readonly {
    		mask = roMask
    	}
    
    	if info.IsDir() {
    		mask |= os.ModeSetgid
    		mask |= execMask
    	}
    
    	err = os.Chmod(filename, info.Mode()|mask)
    	if err != nil {
    		klog.ErrorS(err, "chmod failed", "path", filename)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. src/math/sqrt.go

    		return x
    	case x < 0:
    		return NaN()
    	}
    	ix := Float64bits(x)
    	// normalize x
    	exp := int((ix >> shift) & mask)
    	if exp == 0 { // subnormal x
    		for ix&(1<<shift) == 0 {
    			ix <<= 1
    			exp--
    		}
    		exp++
    	}
    	exp -= bias // unbias exponent
    	ix &^= mask << shift
    	ix |= 1 << shift
    	if exp&1 == 1 { // odd exp, double x to make it even
    		ix <<= 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 15 17:07:57 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. src/runtime/mpagecache.go

    func (c *pageCache) allocN(npages uintptr) (uintptr, uintptr) {
    	i := findBitRange64(c.cache, uint(npages))
    	if i >= 64 {
    		return 0, 0
    	}
    	mask := ((uint64(1) << npages) - 1) << i
    	scav := sys.OnesCount64(c.scav & mask)
    	c.cache &^= mask // mark in-use bits
    	c.scav &^= mask  // clear scavenged bits
    	return c.base + uintptr(i*pageSize), uintptr(scav) * pageSize
    }
    
    // flush empties out unallocated free pages in the given cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. pkg/controller/nodeipam/config/v1alpha1/defaults.go

    func RecommendedDefaultNodeIPAMControllerConfiguration(obj *kubectrlmgrconfigv1alpha1.NodeIPAMControllerConfiguration) {
    	// The default mask size is not set here because we need to determine the cluster cidr family before setting the
    	// appropriate mask size.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 15 04:04:31 UTC 2019
    - 1.6K bytes
    - Viewed (0)
Back to top