Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for assembling (0.19 sec)

  1. android/guava/src/com/google/common/primitives/ImmutableIntArray.java

    import java.util.Arrays;
    import java.util.Collection;
    import java.util.List;
    import java.util.RandomAccess;
    import javax.annotation.CheckForNull;
    
    /**
     * An immutable array of {@code int} values, with an API resembling {@link List}.
     *
     * <p>Advantages compared to {@code int[]}:
     *
     * <ul>
     *   <li>All the many well-known advantages of immutability (read <i>Effective Java</i>, third
     *       edition, Item 17).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/ImmutableIntArray.java

    import java.util.Spliterators;
    import java.util.function.IntConsumer;
    import java.util.stream.IntStream;
    import javax.annotation.CheckForNull;
    
    /**
     * An immutable array of {@code int} values, with an API resembling {@link List}.
     *
     * <p>Advantages compared to {@code int[]}:
     *
     * <ul>
     *   <li>All the many well-known advantages of immutability (read <i>Effective Java</i>, third
     *       edition, Item 17).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    See the <<build_init_plugin#sec:pom_maven_conversion,Build Init Plugin chapter>> for a complete list of the automatic conversion features.
    
    One thing to keep in mind is that assemblies are not automatically converted.
    This additional conversion will required some manual work.
    Options include:
    
     * Using the <<distribution_plugin#distribution_plugin,Distribution Plugin>>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    	var ab AsmBuf
    	var n int
    	var c int32
    	errors := ctxt.Errors
    	var nops []nopPad // Padding for a particular assembly (reuse slice storage if multiple assemblies)
    	nrelocs0 := len(s.R)
    	for {
    		// This loop continues while there are reasons to re-assemble
    		// whole block, like the presence of long forward jumps.
    		reAssemble := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top