Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 213 for asms (0.04 sec)

  1. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/GroovyCompileTransformingClassLoader.java

    import org.gradle.internal.classloader.TransformingClassLoader;
    import org.gradle.internal.classpath.ClassPath;
    import org.objectweb.asm.AnnotationVisitor;
    import org.objectweb.asm.ClassReader;
    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.ClassWriter;
    import org.objectweb.asm.Type;
    
    import java.util.ArrayList;
    import java.util.List;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioFiltersFileTest.groovy

            then:
            Node sourceFiles = itemGroup('Filters').Filter.find({it.'@Include' == 'Source Files'}) as Node
            sourceFiles.Extensions[0].text() == 'cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx'
    
            Node headerFiles = itemGroup('Filters').Filter.find({it.'@Include' == 'Header Files'}) as Node
            headerFiles.Extensions[0].text() == 'h;hpp;h++;hxx;hm;inl;inc;xsd'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 17:02:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/bytecode/AsmExtensions.kt

    import org.jetbrains.org.objectweb.asm.ClassVisitor
    import org.jetbrains.org.objectweb.asm.ClassWriter
    import org.jetbrains.org.objectweb.asm.Label
    import org.jetbrains.org.objectweb.asm.MethodVisitor
    import org.jetbrains.org.objectweb.asm.Opcodes
    import org.jetbrains.org.objectweb.asm.Opcodes.T_BYTE
    import org.jetbrains.org.objectweb.asm.Type
    
    import kotlin.reflect.KClass
    
    
    fun publicClass(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

    import org.gradle.internal.util.Trie;
    import org.gradle.process.internal.worker.GradleWorkerMain;
    import org.objectweb.asm.ClassReader;
    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.ClassWriter;
    import org.objectweb.asm.Type;
    import org.objectweb.asm.commons.ClassRemapper;
    import org.objectweb.asm.commons.Remapper;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.BufferedOutputStream;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/workerApi/waitForCompletion/kotlin/sources/hemingway.txt

    for whom the bell tolls
    the sun also rises
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 62 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/workerApi/workerDaemon/kotlin/sources/hemingway.txt

    for whom the bell tolls
    the sun also rises
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 62 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/workerApi/noIsolation/groovy/sources/hemingway.txt

    for whom the bell tolls
    the sun also rises
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 62 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_index.yaml

            performance machine learning models in TensorFlow and similar ML frameworks. This project
            will include the application of HPC techniques, along with integration of
            search algorithms like reinforcement learning. MLIR aims to reduce the
            cost to bring up new hardware, and improve usability for existing
            TensorFlow users.
    
        - code_block: |
            <pre class = "prettyprint">
            // Syntactically similar to LLVM:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  9. architecture/ambient/ztunnel.md

    The `Workload` aims to represent everything about a workload (generally a `Pod` or `WorkloadEntry`).
    This includes things like its IP address, identity, metadata (name, namespace, app, version, etc), and whether it has a waypoint proxy associated.
    
    The `Service` aims to represent everything about a service (generally a `Service` or `ServiceEntry`).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateMixedSameBaseNamesTestApp.groovy

        def functionalSourceSets = [asm:'**/*.s', c:'**/*.c', cpp:'**/*.cpp']
    
        @Override
        public List<SourceFile> getSourceFiles() {
            [sourceFile("c", "main.c", """
                #include <stdio.h>
                #include "hello.h"
    
                // Ensure consistent asm name mapping on all platforms
                #if !defined(_MSC_VER)
                extern void sayFooFromAsm() asm("_sayFooFromAsm");
                #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top