Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 392 for Compilation (0.61 sec)

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

    /**
     * A service that backups a class just before new version of a class is generated.
     * This is used for restoring compiler outputs on compilation failure.
     *
     * Service only backups classes that:
     * - exists before compilation
     * - were not deleted before compilation
     * - javac tries to overwrite during compilation.
     *
     * This service is called by compiler through Compiler API.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/structured/namedresources/namedresourcesmodel.go

    	c := &Controller{}
    	if filter != nil {
    		compilation := cel.Compiler.CompileCELExpression(filter.Selector, environment.StoredExpressions)
    		if compilation.Error != nil {
    			// Shouldn't happen because of validation.
    			return nil, fmt.Errorf("compile class filter CEL expression: %w", compilation.Error)
    		}
    		c.filter = &compilation
    	}
    	for _, request := range requests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:16 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsResourceGeneratorTest.groovy

                    ) {
                    }
                }
            """
    
            when:
            Compilation compilation = compile(givenSource)
    
            then:
            assertThat(compilation).succeededWithoutWarnings()
            assertThat(compilation)
                .generatedFile(CLASS_OUTPUT, "META-INF/services/org.gradle.internal.classpath.intercept.FilterableCallInterceptor")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:46:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/IncrementalCompileOptions.java

    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.LocalState;
    
    import javax.inject.Inject;
    
    /**
     * Options for incremental compilation of Scala code. Only used for compilation with Zinc.
     *
     * This is not sent to the compiler daemon as options.
     */
    public abstract class IncrementalCompileOptions {
        private final RegularFileProperty analysisFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationFatalException.java

    /**
     * Indicates a fatal error during compilation. Gradle will not try to recover output files from a previous compilation.
     */
    public class CompilationFatalException extends RuntimeException implements CompilationFailedIndicator {
    
        public CompilationFatalException(Throwable cause) {
            super("Unrecoverable compilation error: " + cause.getMessage(), cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_compilation_profiler.cc

                << " because it is megamorphic.";
        return false;
      }
    
      // TODO(b/255826209): Figure out if Lazy compilation is still needed given
      // that we always compile a cluster the first time it is executed (explained
      // below) regardless of compilation mode. If it is not, clean up the related
      // logic.
      // We always compile a cluster the very first time it is executed.  This is an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/groovy/compilationAvoidance/kotlin/ast-transformation-consumer/build.gradle.kts

    }
    
    dependencies {
        implementation(localGroovy())
    }
    
    // tag::groovy-compilation-avoidance[]
    val astTransformation by configurations.creating
    dependencies {
        astTransformation(project(":ast-transformation"))
    }
    tasks.withType<GroovyCompile>().configureEach {
        astTransformationClasspath.from(astTransformation)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 385 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/groovy/crossCompilation/groovy/build.gradle

    }
    
    dependencies {
        implementation 'org.codehaus.groovy:groovy-all:2.4.15'
        testImplementation 'junit:junit:4.13'
    }
    
    // tag::groovy-cross-compilation[]
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(7)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 355 bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_compile_util.h

    #include <memory>
    #include <string>
    
    #include "tensorflow/compiler/tf2xla/xla_argument.h"
    #include "tensorflow/core/graph/graph.h"
    
    namespace tensorflow {
    // The number of compiler threads to use for asynchronous device compilation.
    inline constexpr int64_t kNumAsyncDeviceCompilerThreads = 10;
    
    enum class DeviceCompileMode {
      kLazy,
      kStrict,
      kAsync,
    };
    
    enum class DeviceCompileState {
      kUncompiled,
      kCompiling,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compilation_profiler.h

      // cluster and also determines whether the cluster has gone megamorphic (and
      // sets the megamorphic bit accordingly).
      void RegisterExecution(const NameAttrList& function);
    
      // Registers a cluster compilation. Increments the compilation count and
      // accumulates the compile time for the given cluster. Also broadcasts an
      // XlaJitCompilationActivity.
      virtual Status RegisterCompilation(const NameAttrList& function,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top