Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 408 for Asm (0.02 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/SimpleGeneratedJavaClassCompilerTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.junit.Rule
    import org.objectweb.asm.ClassReader
    import org.objectweb.asm.ClassVisitor
    import org.objectweb.asm.Opcodes
    import spock.lang.Specification
    
    import static org.gradle.util.internal.TextUtil.normaliseLineSeparators
    
    class SimpleGeneratedJavaClassCompilerTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassDetector.java

    import org.gradle.api.internal.tasks.testing.detection.TestClassVisitor;
    import org.gradle.api.internal.tasks.testing.detection.TestFrameworkDetector;
    import org.objectweb.asm.AnnotationVisitor;
    import org.objectweb.asm.MethodVisitor;
    
    import java.util.Set;
    
    class TestNGTestClassDetector extends TestClassVisitor {
        private static final Set<String> TEST_METHOD_ANNOTATIONS =
            ImmutableSet.<String>builder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/toolexec.txt

    # each package once, and link the main package once.
    # Don't check the entire output at once, because the order in which the tools
    # are run is irrelevant here.
    # Finally, note that asm and cgo are run twice.
    
    go build -toolexec=$PWD/mytool
    [GOARCH:amd64] stderr -count=2 '^asm'${GOEXE}' TOOLEXEC_IMPORTPATH="test/main/withasm"$'
    stderr -count=1 '^compile'${GOEXE}' TOOLEXEC_IMPORTPATH="test/main/withasm"$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/build.gradle.kts

        api(project(":messaging"))
        api(project(":persistent-cache"))
        api(project(":snapshots"))
    
        api(libs.asm)
        api(libs.jsr305)
        api(libs.inject)
        api(libs.groovy)
        api(libs.guava)
    
        implementation(project(":base-services-groovy"))
        implementation(project(":base-asm"))
    
        implementation(libs.kotlinStdlib)
        implementation(libs.slf4jApi)
        implementation(libs.commonsLang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/test/groovy/org/gradle/process/internal/worker/child/SerializableMockHelper.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    
    
    package org.gradle.process.internal.worker.child
    
    import groovyjarjarasm.asm.ClassVisitor
    import groovyjarjarasm.asm.ClassWriter
    import org.codehaus.groovy.ast.ClassNode
    import org.codehaus.groovy.control.CompilationUnit
    import org.codehaus.groovy.control.CompilationUnit.ClassgenCallback
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/line_test.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package asm
    
    import (
    	"cmd/asm/internal/lex"
    	"strings"
    	"testing"
    )
    
    type badInstTest struct {
    	input, error string
    }
    
    func TestAMD64BadInstParser(t *testing.T) {
    	testBadInstParser(t, "amd64", []badInstTest{
    		// Test AVX512 suffixes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/go/doc/synopsis_test.go

    	{"All Rights reserved. Package foo does bar.", 20, ""},
    	{"All rights reserved. Package foo does bar.", 20, ""},
    	{"Authors: ******@****.***. Package foo does bar.", 21, ""},
    	{"typically invoked as ``go tool asm'',", 37, "typically invoked as “go tool asm”,"},
    }
    
    func TestSynopsis(t *testing.T) {
    	for _, e := range tests {
    		fs := firstSentence(e.txt)
    		if fs != e.txt[:e.fsl] {
    			t.Errorf("firstSentence(%q) = %q, want %q", e.txt, fs, e.txt[:e.fsl])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/SortingAnnotationVisitor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.normalization.java.impl;
    
    import org.objectweb.asm.AnnotationVisitor;
    import org.objectweb.asm.Opcodes;
    
    import java.util.LinkedList;
    import java.util.List;
    
    public class SortingAnnotationVisitor extends AnnotationVisitor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/GeneratedSourcesIntegrationTest.groovy

            def app = new MixedLanguageHelloWorldApp(AbstractInstalledToolChainIntegrationSpec.toolChain)
            def asmSources = app.sourceFiles.findAll({it.path == 'asm'})
            def mainSources = app.headerFiles + app.sourceFiles.findAll({it.path != 'asm'})
            mainSources.removeAll {it.path == 'asm'}
            mainSources*.writeToDir(file("src/main"))
            asmSources*.writeToDir(file("src/input"))
            degenerateInputSources()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  10. src/cmd/internal/goobj/mkbuiltin.go

    	// compiler backend inserted calls
    	{"gcWriteBarrier", 1},
    	{"duffzero", 1},
    	{"duffcopy", 1},
    
    	// assembler backend inserted calls
    	{"morestack", 0},        // asm function, ABI0
    	{"morestackc", 0},       // asm function, ABI0
    	{"morestack_noctxt", 0}, // asm function, ABI0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top