Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 170 for assemble64 (0.17 sec)

  1. src/encoding/base64/base64.go

    	}
    	return uint32(n1)<<26 |
    			uint32(n2)<<20 |
    			uint32(n3)<<14 |
    			uint32(n4)<<8,
    		true
    }
    
    // assemble64 assembles 8 base64 digits into 6 bytes.
    // Each digit comes from the decode map, and will be 0xff
    // if it came from an invalid character.
    func assemble64(n1, n2, n3, n4, n5, n6, n7, n8 byte) (dn uint64, ok bool) {
    	// Check that all the digits are valid. If any of them was 0xff, their
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/inl_test.go

    			"UseInterfaceSwitchCache",
    		},
    		"compress/flate": {
    			"byLiteral.Len",
    			"byLiteral.Less",
    			"byLiteral.Swap",
    			"(*dictDecoder).tryWriteCopy",
    		},
    		"encoding/base64": {
    			"assemble32",
    			"assemble64",
    		},
    		"unicode/utf8": {
    			"FullRune",
    			"FullRuneInString",
    			"RuneLen",
    			"AppendRune",
    			"ValidRune",
    		},
    		"unicode/utf16": {
    			"Decode",
    		},
    		"reflect": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    Build tasks
    -----------
    assemble - Assembles the outputs of this project.
    build - Assembles and tests this project.
    buildDependents - Assembles and tests this project and all projects that depend on it.
    buildNeeded - Assembles and tests this project and all projects it depends on.
    classes - Assembles main classes.
    clean - Deletes the build directory.
    jar - Assembles a jar archive containing the classes of the 'main' feature.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

    Build tasks
    -----------
    assemble - Assembles the outputs of this project.
    build - Assembles and tests this project.
    
    Documentation tasks
    -------------------
    javadoc - Generates Javadoc API documentation for the main source code.
    
    Other tasks
    -----------
    compileJava - Compiles main Java source.
    
    ...
    ----
    
    Many of these tasks, such as `assemble`, `build`, and `run`, should be familiar to a developer.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. doc/asm.html

    <!--{
    	"Title": "A Quick Guide to Go's Assembler",
    	"Path":  "/doc/asm"
    }-->
    
    <h2 id="introduction">A Quick Guide to Go's Assembler</h2>
    
    <p>
    This document is a quick outline of the unusual form of assembly language used by the <code>gc</code> Go compiler.
    The document is not comprehensive.
    </p>
    
    <p>
    The assembler is based on the input style of the Plan 9 assemblers, which is documented in detail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  6. src/cmd/internal/obj/ppc64/doc.go

    /*
    Package ppc64 implements a PPC64 assembler that assembles Go asm into
    the corresponding PPC64 instructions as defined by the Power ISA 3.0B.
    
    This document provides information on how to write code in Go assembler
    for PPC64, focusing on the differences between Go and PPC64 assembly language.
    It assumes some knowledge of PPC64 assembler. The original implementation of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProvider.java

        protected Compiler<AssembleSpec> createAssembler() {
            GccCommandLineToolConfigurationInternal assemblerTool = toolRegistry.getTool(ToolType.ASSEMBLER);
            // Disable command line file for now because some custom assemblers
            // don't understand the same arguments as GCC.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDeclaredSubstitutionsIntegrationTest.groovy

            mavenRepo.module("org.test", "plugin", "1.0").publish()
    
            given:
            buildA.buildFile << """
                task assembleB {
                    dependsOn gradle.includedBuild("buildB").task(":assemble")
                }
            """
            dependency buildB, "org.test:XXX:1.0"
            buildC.buildFile.text = """
                buildscript {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    Depends on: `link__Variant__`
    ::
    Aggregates tasks that assemble the specific variant of this application.
    
    [[sec:swift_application_lifecycle_tasks]]
    === Lifecycle Tasks
    
    The Swift Application Plugin attaches some of its tasks to the standard lifecycle tasks documented in the <<base_plugin.adoc#base_plugin,Base Plugin chapter>> — which the Swift Application Plugin applies automatically:
    
    `assemble` - Task (lifecycle)::
    Depends on: `linkDebug`
    ::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalBuildIntegrationTest.groovy

            result.assertTasksNotSkipped(assembleAppAndLibTasks)
            installation("app/build/install/main/debug").exec().out == app.alternateLibraryOutput
    
            when:
            succeeds "assemble"
    
            then:
            result.assertTasksExecuted(assembleAppAndLibTasks, ":assemble")
            result.assertTasksSkipped(assembleAppAndLibTasks, ":assemble")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 15.7K bytes
    - Viewed (0)
Back to top