Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 284 for Compilation (0.22 sec)

  1. tensorflow/compiler/jit/xla_platform_info_test.cc

      core::ScopedUnref xla_device_compiler_ref(xla_device_compiler);
    
      EXPECT_EQ(xla_device_compiler->device_type(), compilation_device_type);
      // Check to make sure compilation cache path is empty.
      EXPECT_TRUE(
          xla_device_compiler->persistor()->persistent_cache_directory().empty());
    }
    
    // TODO(b/255826209): Look into using an actual TPU device for the unit test,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jan 14 15:17:12 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

                assertSingleFileReport(ReportSeverity.WARNING, EditorMessages.buildConfigurationFailedUsingPrevious)
            }
        }
    
        @Test
        fun `do not report file warning on script compilation failure in currently edited script`() {
            val editedScript = withBuildScript(
                """
                doNotExists()
                """
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            SharedNameTable are actually ever reused. It has been fixed for JDK9 and we should consider not using this option with JDK9 as not using it  will quite probably improve the
            performance of compilation.
            Using this option leads to significant performance improvements when using daemon and compiling java sources with JDK7 and JDK8.*/
            args.add(USE_UNSHARED_COMPILER_TABLE_OPTION);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

        instrumentedPluginsClasspath --> buildscriptClasspath
        
        invocation --> originalBuildscriptSource(Buildscript source)
        originalBuildscriptSource --> buildscriptCompilation{{"Compilation and instrumentation\n(Execution engine)"}}
        buildscriptCompilation --> buildscriptClasses(Buildscript classes*)
        buildscriptClasses --> buildscriptClasspath
    ```
    
    
    #### Transformation of plugins classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResultTest.groovy

    ---> 0% CONFIGURING [1s]\u001B[m\u001B[35D\u001B[1B\u001B[1m> root project > Compiling /Users/ghale/repos/gradle/build/tmp/teŝt files/RichConsoleBasicGroupedTaskLoggingFunctionalTest/long_running_task_o...ter_delay/w661/build.gradle into local compilation cache > Compiling build file '/Users/ghale/repos/gradle/build/tmp/test files/RichConsoleBasicGroupedTaskLoggingFunctionalTest/long_running_task_o...ter_delay/w661/build.gradle' to cross build script cache\u001B[m\u001B[400D\u001B[1B\u001B[2A\u0...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. subprojects/core/build.gradle.kts

        optionalProjects.add("gradle-runtime-api-info")
    }
    
    // Instrumentation interceptors for tests
    // Separated from the test source set since we don't support incremental annotation processor with Java/Groovy joint compilation
    sourceSets {
        val testInterceptors = create("testInterceptors") {
            compileClasspath += sourceSets.main.get().output
            runtimeClasspath += sourceSets.main.get().output
        }
        getByName("test") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. .teamcity/performance-tests-ci.json

        "groups" : [ {
          "testProject" : "largeJavaMultiProject",
          "comment" : "We only test the multi-project here since for the monolithic project we would have no cache hits. This would mean we actually would test incremental compilation.",
          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        } ]
      }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    `compile__Variant__Cpp` (e.g. `compileDebugCpp` and `compileReleaseCpp`)  - link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html[CppCompile]::
    Depends on: All tasks that contribute source files to the compilation
    ::
    Compiles {cpp} source files using the selected compiler.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  9. src/cmd/internal/src/pos.go

    	// and on iteration).  Proper treatment of non-gofmt input with multiple simple statements on a single
    	// line is TBD.
    	//
    	// Optimizing compilation will move instructions around, and some of these will become known-bad as
    	// step targets for debugging purposes (examples: register spills and reloads; code generated into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysis.java

         *
         * If incremental annotation processing encountered issues in the previous compilation, a full recompilation is required.
         * If any inlineable constants have changed and the compiler does not support exact constant dependency tracking, then a full recompilation is required.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top