Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 68 of 68 for _assembles_ (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    `assemble` - Task (lifecycle)::
    Depends on: `linkDebug` when linkage includes `shared` or `createDebug` otherwise.
    ::
    Aggregate task that assembles the debug variant of the shared library (if available) for the current host (if present) in the project.
    This task is added by the <<base_plugin.adoc#base_plugin,Base Plugin>>.
    
    `check` - Task (lifecycle)::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/arm/asm.go

    //         ldr r0, .Lmoduledata
    // .Lloadfrom:
    //         ldr r0, [r0]
    //         b runtime.addmoduledata@plt
    // .align 2
    // .Lmoduledata:
    //         .word local.moduledata(GOT_PREL) + (. - (.Lloadfrom + 4))
    // assembles to:
    //
    // 00000000 <local.dso_init>:
    //    0:        e59f0004        ldr     r0, [pc, #4]    ; c <local.dso_init+0xc>
    //    4:        e5900000        ldr     r0, [r0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/pcln.go

    	ctxt.loader.SetAttrReachable(s, true)
    	ctxt.loader.SetCarrierSym(s, state.carrier)
    	ctxt.loader.SetAttrNotInSymbolTable(s, true)
    	return s
    }
    
    // makePclntab makes a pclntab object, and assembles all the compilation units
    // we'll need to write pclntab. Returns the pclntab structure, a slice of the
    // CompilationUnits we need, and a slice of the function symbols we need to
    // generate pclntab.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/ppc64.s

    	// Hex constant 0xFFFFFFFE00000001
    	MOVD $-8589934591, R5           // 38a0ffff or 0602000038a00001
    
    	// For #66955. Verify this opcode turns into a load and assembles.
    	MOVD $-6795364578871345152, R5  // 3ca00000e8a50000 or 04100000e4a00000
    
    	MOVD 8(R3), R4                  // e8830008
    	MOVD (R3)(R4), R5               // 7ca4182a
    	MOVD (R3)(R0), R5               // 7ca0182a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

    [Service]
    TasksMax=infinity
    EOF
    
        systemctl daemon-reload
        echo "Docker command line is updated. Restart docker to pick it up"
        systemctl restart docker
    }
    
    # This function assembles the kubelet systemd service file and starts it
    # using systemctl.
    function start-kubelet {
      echo "Start kubelet"
    
      local kubelet_bin="${KUBE_HOME}/bin/kubelet"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

    import java.util.stream.Collectors;
    
    import static java.util.Collections.singletonList;
    import static org.gradle.buildinit.plugins.internal.SimpleGlobalFilesBuildSettingsDescriptor.PLUGINS_BUILD_LOCATION;
    
    /**
     * Assembles the parts of a build script.
     */
    @SuppressWarnings("UnusedReturnValue")
    public class BuildScriptBuilder {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * <h3>Lifecycle</h3>
     *
     * <p>There is a one-to-one relationship between a <code>Project</code> and a <code>{@value #DEFAULT_BUILD_FILE}</code>
     * file. During build initialisation, Gradle assembles a <code>Project</code> object for each project which is to
     * participate in the build, as follows:</p>
     *
     * <ul>
     *
     * <li>Create a {@link org.gradle.api.initialization.Settings} instance for the build.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    	infoEpilog  loader.Sym
    
    	// Outputs for a given unit.
    	linesyms   []loader.Sym
    	infosyms   []loader.Sym
    	locsyms    []loader.Sym
    	rangessyms []loader.Sym
    }
    
    // dwUnitPortion assembles the DWARF content for a given compilation
    // unit: debug_info, debug_lines, debug_ranges, debug_loc (debug_frame
    // is handled elsewhere). Order is important; the calls to writelines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top