Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 614 for mezery (0.71 sec)

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

     *       <i>deeply</i> immutable.
     * </ul>
     *
     * <h4>Performance notes</h4>
     *
     * <ul>
     *   <li>Implementations can be generally assumed to prioritize memory efficiency, then speed of
     *       access, and lastly speed of creation.
     *   <li>The {@code copyOf} methods will sometimes recognize that the actual copy operation is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/CompactHashSet.java

     * <p>This class should not be assumed to be universally superior to {@code java.util.HashSet}.
     * Generally speaking, this class reduces object allocation and memory consumption at the price of
     * moderately increased constant factors of CPU. Only use this class when there is a specific reason
     * to prioritize memory over CPU.
     *
     * @author Dimitris Andreou
     * @author Jon Noack
     */
    @GwtIncompatible // not worth using in GWT for now
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/branchelim.go

    			cost += other * 1
    		}
    		return cost < maxcost
    	}
    }
    
    // canSpeculativelyExecute reports whether every value in the block can
    // be evaluated without causing any observable side effects (memory
    // accesses, panics and so on) except for execution time changes. It
    // also ensures that the block does not contain any phis which we can't
    // speculatively execute.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/CompactHashMap.java

     * <p>This class should not be assumed to be universally superior to {@code java.util.HashMap}.
     * Generally speaking, this class reduces object allocation and memory consumption at the price of
     * moderately increased constant factors of CPU. Only use this class when there is a specific reason
     * to prioritize memory over CPU.
     *
     * @author Louis Wasserman
     * @author Jon Noack
     */
    @GwtIncompatible // not worth using in GWT for now
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/amd64error.s

    	VFPCLASSSS.BCST $0, (AX), K2, K1 // ERROR "unsupported broadcast"
    	// Broadcast without memory operand.
    	VADDPD.BCST X3, X2, K1, X1       // ERROR "illegal broadcast without memory argument"
    	VADDPD.BCST X3, X2, K1, X1       // ERROR "illegal broadcast without memory argument"
    	VADDPD.BCST X3, X2, K1, X1       // ERROR "illegal broadcast without memory argument"
    	// CLWB instructions:
    	CLWB BX                          // ERROR "invalid instruction"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/testdata/mod/rsc.io_!q!u!o!t!e_v1.5.2.txt

    	glass := "I CAN EAT GLASS AND IT DOESN'T HURT ME."
    	if out := GLASS(); out != glass {
    		t.Errorf("GLASS() = %q, want %q", out, glass)
    	}
    }
    
    func TestGO(t *testing.T) {
    	go1 := "DON'T COMMUNICATE BY SHARING MEMORY, SHARE MEMORY BY COMMUNICATING."
    	if out := GO(); out != go1 {
    		t.Errorf("GO() = %q, want %q", out, go1)
    	}
    }
    
    func TestOPT(t *testing.T) {
    	opt := "IF A PROGRAM IS TOO SLOW, IT MUST HAVE A LOOP."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 20 15:30:21 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/rsc.io_!q!u!o!t!e_v1.5.3-!p!r!e.txt

    	glass := "I CAN EAT GLASS AND IT DOESN'T HURT ME."
    	if out := GLASS(); out != glass {
    		t.Errorf("GLASS() = %q, want %q", out, glass)
    	}
    }
    
    func TestGO(t *testing.T) {
    	go1 := "DON'T COMMUNICATE BY SHARING MEMORY, SHARE MEMORY BY COMMUNICATING."
    	if out := GO(); out != go1 {
    		t.Errorf("GO() = %q, want %q", out, go1)
    	}
    }
    
    func TestOPT(t *testing.T) {
    	opt := "IF A PROGRAM IS TOO SLOW, IT MUST HAVE A LOOP."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 20 15:30:21 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180709162918-a91498bed0a7.txt

    	glass := "I can eat glass and it doesn't hurt me."
    	if out := Glass(); out != glass {
    		t.Errorf("Glass() = %q, want %q", out, glass)
    	}
    }
    
    func TestGo(t *testing.T) {
    	go1 := "Don't communicate by sharing memory, share memory by communicating."
    	if out := Go(); out != go1 {
    		t.Errorf("Go() = %q, want %q", out, go1)
    	}
    }
    
    func TestOpt(t *testing.T) {
    	opt := "If a program is too slow, it must have a loop."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
Back to top