Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,392 for Compiled (0.21 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftCompilerDetectingApp.groovy

                #if swift(>=5.0)
                    print("Compiled using Swift 5.x compiler")
                #elseif swift(>=4.0)
                    print("Compiled using Swift 4.x compiler")
                #elseif swift(>=3.0)
                    print("Compiled using Swift 3.x compiler")
                #else
                    print("Compiled using unknown compiler")
                #endif
            """)
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

    public interface KaCompiledFile {
        /**
         * Path of the compiled file relative to the root of the output directory.
         */
        public val path: String
    
        /**
         * Source files that were compiled to produce this file.
         */
        public val sourceFiles: List<File>
    
        /**
         * Content of the compiled file.
         */
        public val content: ByteArray
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/GroovyParametersMetadataIntegrationTest.groovy

            file("src/main/groovy/compile/test/Person.groovy") << """
                package parameters.test
                class Person {
                    void setFullName(String fullName) {
                        // no-op
                    }
                }
            """.stripIndent()
    
            expect:
            succeeds 'compileGroovy'
            def compiled = groovyClassFile("parameters/test/Person.class")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_list_compiled_concurrent.txt

    env GO111MODULE=on
    
    [short] skip
    [!cgo] skip
    
    # Regression test for golang.org/issue/29667:
    # spurious 'failed to cache compiled Go files' errors.
    
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    go list -json -compiled -test=false -export=false -deps=true -- . &
    go list -json -compiled -test=false -export=false -deps=true -- . &
    wait
    
    -- go.mod --
    module sandbox/bar
    -- bar.go --
    package bar
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 401 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_find.txt

    # dependencies are, so it's can't construct the same action IDs.
    [short] skip
    go list -find -compiled net
    go list -find -compiled -x net
    ! stderr 'cgo'
    
    -- x/y/z/z.go --
    package z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 748 bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/defs.h

    namespace tensorflow {
    
    // Name of attribute used to tag operators for compilation with XLA
    
    // Implies must-compile semantics: either it will be compiled
    // with XLA, or an error will be thrown.
    extern const char* const kXlaMustCompileAttr;  // "_XlaMustCompile"
    
    // Implies auto-clustering: tagged nodes will be clustered and compiled with XLA
    // on a best-effort basis.
    extern const char* const kXlaCompileAttr;  // "_XlaCompile"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 07 01:03:32 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-groovy/src/crossVersionTest/groovy/org/gradle/integtests/StaticGroovyTaskSubclassingBinaryCompatibilityCrossVersionSpec.groovy

    /**
     * Tests that task classes compiled against earlier versions of Gradle using the static Groovy compiler are still compatible.
     *
     * <p>Note: Groovy introduced static compilation ({@link groovy.transform.CompileStatic}) in Groovy 2.0.0.
     * We switched to using Groovy 2.3.3 from 1.8.6 in Gradle 2.0. However, Groovy 2.3.3 shipped with Gradle 2.0 had a bug that prevents the test to be compiled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:37:02 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_compilation_profiler.h

    #include <cstdint>
    #include <string>
    
    #include "tensorflow/compiler/jit/xla_compile_util.h"
    #include "tensorflow/core/framework/attr_value.pb.h"
    
    namespace tensorflow {
    
    // Tracks statistics for device compilation and uses these to determine whether
    // the given cluster should be compiled or not.
    class DeviceCompilationProfiler : public ResourceBase {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tpu_host_computation_expansion.cc

    #include "mlir/Pass/PassRegistry.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    
    namespace mlir {
    namespace TFTPU {
    
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/list_compiled_imports.txt

    cd x
    go list -f '{{.Imports}}'
    ! stdout runtime/cgo
    ! stdout unsafe
    ! stdout syscall
    stdout C
    stdout unicode
    stdout unicode/utf16
    
    # go list -compiled should report imports in compiled files as well,
    # adding "runtime/cgo", "unsafe", and "syscall" but not dropping "C".
    go list -compiled -f '{{.Imports}}'
    stdout runtime/cgo
    stdout unsafe
    stdout syscall
    stdout C
    stdout unicode
    stdout unicode/utf16
    
    -- x/x.go --
    package x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 19:57:03 UTC 2019
    - 681 bytes
    - Viewed (0)
Back to top