Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,101 for compiledir (0.35 sec)

  1. src/go/types/stdlib_test.go

    	}
    
    	testTestDir(t, filepath.Join(testenv.GOROOT(t), "test"),
    		"cmplxdivide.go", // also needs file cmplxdivide1.go - ignore
    		"directive.go",   // tests compiler rejection of bad directive placement - ignore
    		"directive2.go",  // tests compiler rejection of bad directive placement - ignore
    		"embedfunc.go",   // tests //go:embed
    		"embedvers.go",   // tests //go:embed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/stdlib_test.go

    	}
    
    	testTestDir(t, filepath.Join(testenv.GOROOT(t), "test"),
    		"cmplxdivide.go", // also needs file cmplxdivide1.go - ignore
    		"directive.go",   // tests compiler rejection of bad directive placement - ignore
    		"directive2.go",  // tests compiler rejection of bad directive placement - ignore
    		"embedfunc.go",   // tests //go:embed
    		"embedvers.go",   // tests //go:embed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

         * @return this
         */
        SourceSet resources(Action<? super SourceDirectorySet> configureAction);
    
        /**
         * Returns the Java source which is to be compiled by the Java compiler into the class output directory.
         *
         * @return the Java source. Never returns null.
         */
        SourceDirectorySet getJava();
    
        /**
         * Configures the Java source for this set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

            this.verbose = verbose;
        }
    
        /**
         * Tells whether to print which source files are to be compiled. Defaults to {@code false}.
         */
        @Console
        public boolean isListFiles() {
            return listFiles;
        }
    
        /**
         * Sets whether to print which source files are to be compiled. Defaults to {@code false}.
         */
        public void setListFiles(boolean listFiles) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/AbstractNativeCompileTask.java

            Class<T> specType = Cast.uncheckedCast(spec.getClass());
            Compiler<T> baseCompiler = platformToolProvider.newCompiler(specType);
            Compiler<T> incrementalCompiler = this.incrementalCompiler.createCompiler(baseCompiler);
            Compiler<T> loggingCompiler = BuildOperationLoggingCompilerDecorator.wrap(incrementalCompiler);
            return loggingCompiler.execute(spec);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         * <p>
         * The source path indicates the location of source files that <i>may</i> be compiled if necessary.
         * It is effectively a complement to the class path, where the classes to be compiled against are in source form.
         * It does <b>not</b> indicate the actual primary source being compiled.
         * <p>
         * The source path feature of the Java compiler is rarely needed for modern builds that use dependency management.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

    #include "mlir/Pass/Pass.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/ir/tf_ops_n_z.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/parallel_execute_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_compiler.h

    #include "absl/types/span.h"
    #include "tensorflow/compiler/jit/device_compilation_cache.h"
    #include "tensorflow/compiler/jit/device_compilation_cluster_signature.h"
    #include "tensorflow/compiler/jit/device_compilation_profiler.h"
    #include "tensorflow/compiler/jit/device_compiler_client.h"
    #include "tensorflow/compiler/jit/device_executable_persistor.h"
    #include "tensorflow/compiler/jit/flags.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

    #include "tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_structs.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/device_util.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.h"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/SwiftCompile.java

            return toolChain;
        }
    
        /**
         * The platform being compiled for.
         *
         * @since 4.7
         */
        @Nested
        public Property<NativePlatform> getTargetPlatform() {
            return targetPlatform;
        }
    
        /**
         * Returns the source files to be compiled.
         *
         * @since 4.4
         */
        @InputFiles
        @SkipWhenEmpty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top