Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 737 for pieces (0.29 sec)

  1. src/cmd/link/internal/ld/asmb.go

    	"fmt"
    	"runtime"
    	"sync"
    )
    
    // Assembling the binary is broken into two steps:
    //   - writing out the code/data/dwarf Segments, applying relocations on the fly
    //   - writing out the architecture specific pieces.
    //
    // This function handles the first part.
    func asmb(ctxt *Link) {
    	// TODO(jfaller): delete me.
    	if thearch.Asmb != nil {
    		thearch.Asmb(ctxt, ctxt.loader)
    		return
    	}
    
    	if ctxt.IsELF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationRunner.java

    package org.gradle.internal.operations;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    /**
     * Runs build operations: the pieces of work that make up a build.
     * Build operations can be nested inside other build operations.
     */
    @ServiceScope(Scope.Global.class)
    public interface BuildOperationRunner {
        /**
         * Runs the given build operation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowScope.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Augments the cached work graph with {@link FlowAction dataflow actions}, anonymous, parameterized and
     * isolated pieces of work that are triggered solely based on the availability of their input parameters.
     *
     * @since 8.1
     */
    @Incubating
    @ServiceScope(Scope.Build.class)
    public interface FlowScope {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/Instantiator.java

     *
     * <li>An implementation may accept abstract classes or interfaces and provide implementations for the missing pieces, for example providing an implementation of ExtensionAware.
     *
     * <li>An implementation may provide injection of services and other dependencies into the instances it creates, for example exposing services via a getter method.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/ast.go

    func commentText(g *ast.CommentGroup) string {
    	var pieces []string
    	for _, com := range g.List {
    		c := com.Text
    		// Remove comment markers.
    		// The parser has given us exactly the comment text.
    		switch c[1] {
    		case '/':
    			//-style comment (no newline at the end)
    			c = c[2:] + "\n"
    		case '*':
    			/*-style comment */
    			c = c[2 : len(c)-2]
    		}
    		pieces = append(pieces, c)
    	}
    	return strings.Join(pieces, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/README.adoc

    include::sample[dir="groovy",files="build.gradle[]"]
    ====
    
    The `login` task declares an input property and connects it with a credentials provider.
    The credentials provider will fetch the credentials pieces from the link:{userManualPath}/build_environment.html#sec:project_properties[project properties].
    
    Credentials can be passed to a task in multiple ways:
    
     * via command-line properties:
    =====
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/sym/segment.go

    // THE SOFTWARE.
    
    package sym
    
    // Terrible but standard terminology.
    // A segment describes a block of file to load into memory.
    // A section further describes the pieces of that block for
    // use in debuggers and such.
    
    type Segment struct {
    	Rwx      uint8  // permission as usual unix bits (5 = r-x etc)
    	Vaddr    uint64 // virtual address
    	Length   uint64 // length in memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 05:32:52 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/build.gradle.kts

        api(project(":tooling-api"))
    
        // This project contains the Gradle client, daemon and tooling API provider implementations.
        // It should be split up, but for now, add dependencies on both the client and daemon pieces
        api(project(":client-services"))
        api(project(":daemon-services"))
    
        api(libs.guava)
        api(libs.jsr305)
    
        implementation(project(":build-configuration"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/flag/example_test.go

    	// set a usage message.
    	flag.Var(&intervalFlag, "deltaT", "comma-separated list of intervals to use between events")
    }
    
    func Example() {
    	// All the interesting pieces are with the variables declared above, but
    	// to enable the flag package to see the flags defined there, one must
    	// execute, typically at the start of main (not init!):
    	//	flag.Parse()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 18:59:00 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    	present                bool
    	startBlock, startValue ID
    	// The location of each piece of the variable, in the same order as the
    	// SlotIDs in varParts.
    	pieces []VarLoc
    }
    
    func (e *pendingEntry) clear() {
    	e.present = false
    	e.startBlock = 0
    	e.startValue = 0
    	for i := range e.pieces {
    		e.pieces[i] = VarLoc{}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top