Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for mezery (0.22 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

       * 2^n}, its memory usage is only {@code O(n)}. When the power set is constructed, the input set
       * is merely copied. Only as the power set is iterated are the individual subsets created, and
       * these subsets themselves occupy only a small constant amount of memory.
       *
       * @param set the set of elements to construct a power set from
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Sets.java

       * 2^n}, its memory usage is only {@code O(n)}. When the power set is constructed, the input set
       * is merely copied. Only as the power set is iterated are the individual subsets created, and
       * these subsets themselves occupy only a small constant amount of memory.
       *
       * @param set the set of elements to construct a power set from
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// large zeroing
    		// arg0 = address of memory to zero (in R16 aka arm64.REGRT1, changed as side effect)
    		// arg1 = address of the last 16-byte unit to zero
    		// arg2 = mem
    		// returns mem
    		//	STP.P	(ZR,ZR), 16(R16)
    		//	CMP	Rarg1, R16
    		//	BLE	-2(PC)
    		// Note: the-end-of-the-memory may be not a valid pointer. it's a problem if it is spilled.
    		// the-end-of-the-memory - 16 is with the area to zero, ok to spill.
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    //     to contain every module that provides any package imported (or merely
    //     required) by any other module.
    //  2. Each root appears only once, at the selected version of its path
    //     (if rs.graph is non-nil) or at the highest version otherwise present as a
    //     root (otherwise).
    //  3. Every module path that appears as a root in rs remains a root.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// Compare and swap.
    		// arg0 = pointer, arg1 = old value, arg2 = new value, arg3 = memory.
    		// if *(arg0+auxint+aux) == arg1 {
    		//   *(arg0+auxint+aux) = arg2
    		//   return (true, memory)
    		// } else {
    		//   return (false, memory)
    		// }
    		// Note that these instructions also return the old value in arg1, but we ignore it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    	// has more than one use.
    	if load.Uses != 1 {
    		return false
    	}
    
    	mem := load.MemoryArg()
    
    	// We need the load's memory arg to still be alive at target. That
    	// can't be the case if one of target's args depends on a memory
    	// state that is a successor of load's memory arg.
    	//
    	// For example, it would be invalid to merge load into target in
    	// the following situation because newmem has killed oldmem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Iterators.java

        return cycle(Lists.newArrayList(elements));
      }
    
      /**
       * Returns an Iterator that walks the specified array, nulling out elements behind it. This can
       * avoid memory leaks when an element is no longer necessary.
       *
       * <p>This method accepts an array with element type {@code @Nullable T}, but callers must pass an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Iterators.java

        return cycle(Lists.newArrayList(elements));
      }
    
      /**
       * Returns an Iterator that walks the specified array, nulling out elements behind it. This can
       * avoid memory leaks when an element is no longer necessary.
       *
       * <p>This method accepts an array with element type {@code @Nullable T}, but callers must pass an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/Futures.java

       *       exceptions).
       * </ul>
       *
       * <p>The overall principle is to continue to treat every checked exception as a checked
       * exception, every unchecked exception as an unchecked exception, and every error as an error. In
       * addition, the cause of any {@code ExecutionException} is wrapped in order to ensure that the
       * new stack trace matches that of the current thread.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/Futures.java

       *       exceptions).
       * </ul>
       *
       * <p>The overall principle is to continue to treat every checked exception as a checked
       * exception, every unchecked exception as an unchecked exception, and every error as an error. In
       * addition, the cause of any {@code ExecutionException} is wrapped in order to ensure that the
       * new stack trace matches that of the current thread.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top