Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for _assembles_ (0.22 sec)

  1. platforms/ide/tooling-api/buildship.gradle

     * It can be used to compile and execute Buildship from an Eclipse workspace.
     *
     * To generate the Eclipse project, execute the 'buildshipEclipseProject' task. The task
     * takes the shaded Jar, analyzes its content, and assembles an Eclipse plug-in
     * project in the ${layout.buildDirectory}/buildshipProject folder.
     *
     * The $buildDir/buildshipProject folder can be imported into Eclipse by using the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/assembler/plugins/internal/AssembleTaskConfig.java

        }
    
        private void configureAssembleTask(Assemble task, final NativeBinarySpecInternal binary, final LanguageSourceSetInternal sourceSet) {
            task.setDescription("Assembles the " + sourceSet + " of " + binary);
    
            task.getToolChain().set(binary.getToolChain());
            task.getTargetPlatform().set(binary.getTargetPlatform());
    
            task.source(sourceSet.getSource());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    (CMPconst [0] z:((NEG|CNTLZD|RLDICL) x)) && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    // Note: ADDCCconst only assembles to 1 instruction for int16 constants.
    (CMPconst [0] z:(ADDconst [c] x)) && int64(int16(c)) == c && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/storage/storage_codec.go

    	Config            storagebackend.Config
    
    	EncoderDecoratorFn func(runtime.Encoder) runtime.Encoder
    	DecoderDecoratorFn func([]runtime.Decoder) []runtime.Decoder
    }
    
    // NewStorageCodec assembles a storage codec for the provided storage media type, the provided serializer, and the requested
    // storage and memory versions.
    func NewStorageCodec(opts StorageCodecConfig) (runtime.Codec, runtime.GroupVersioner, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 15:03:23 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Zip.java

    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.Optional;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.annotation.Nullable;
    import java.nio.charset.Charset;
    
    /**
     * Assembles a ZIP archive.
     *
     * The default is to compress the contents of the zip.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class Zip extends AbstractArchiveTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 08:29:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/asmb.go

    	}
    	buf.Write32b(uint32(spSize))
    	buf.Write32b(uint32(lcSize))
    	// amd64 includes the entry at the beginning of the symbol table.
    	if is64Bit {
    		buf.Write64b(uint64(entry))
    	}
    }
    
    // asmbPlan9 assembles a plan 9 binary.
    func asmbPlan9(ctxt *Link) {
    	if !*FlagS {
    		*FlagS = true
    		symo := int64(Segdata.Fileoff + Segdata.Filelen)
    		ctxt.Out.SeekSet(symo)
    		asmbPlan9Sym(ctxt)
    	}
    	ctxt.Out.SeekSet(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/CreateStaticLibrary.java

    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    
    /**
     * Assembles a static library from object files.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class CreateStaticLibrary extends DefaultTask implements ObjectFilesToBinary {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/ear_plugin.adoc

    [[sec:ear_tasks]]
    == Tasks
    
    The Ear plugin adds the following tasks to the project.
    
    `ear` — link:{groovyDslPath}/org.gradle.plugins.ear.Ear.html[Ear]::
    _Depends on_: `compile` (only if the Java plugin is also applied)
    +
    Assembles the application EAR file.
    
    === Dependencies added to other tasks
    
    The Ear plugin adds the following dependencies to tasks added by the <<base_plugin.adoc#base_plugin,Base Plugin>>.
    
    `assemble`::
    _Depends on_: `ear`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    [[sec:war_tasks]]
    == Tasks
    
    The War plugin adds and modifies the following tasks:
    
    `war` — link:{groovyDslPath}/org.gradle.api.tasks.bundling.War.html[War]::
    _Depends on_: `compile`
    +
    Assembles the application WAR file.
    
    `assemble` - _lifecycle task_::
    _Depends on_: `war`
    
    The War plugin adds the following dependencies to tasks added by the Java plugin;
    
    .War plugin - tasks
    image::warPluginTasks.png[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/base_plugin.adoc

    `build__Configuration__` — task rule::
    Assembles those artifacts attached to the named configuration. For example, `buildRuntimeElements` will execute any task that is required to create any artifact attached to the `runtimeElements` configuration.
    
    `clean__Task__` — task rule::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top