Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 125 for Compilation (0.14 sec)

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

        void setClassesToCompile(Set<String> classes);
    
        /**
         * Classes to compile are all classes that we know from Java sources that will be compiled.
         * These classes are deleted before a compilation and are not passed to Java compiler (their sources are passed to a compiler).
         * We only need them in {@link CompilationClassBackupService} so we know what files don't need a backup.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationInDynamicGroovyIntegrationTest.groovy

         * {@code [varInitializer, processCreator, expectedPwdSuffix, expectedEnvVar]}.
         * @return the list of test cases
         */
        abstract def testCases()
    
        /**
         * Produces a list of indy compilation modes. Each test case from {@link #testCases()} will run in every mode from the returned list.
         * @return the list of indy modes
         */
        def indyModes() {
            return [true, false]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/ZincScalaCompilerOutputNormalizerTest.groovy

    """.trim()
    
        def "successfully normalizes Scala compiler output"() {
            given:
            String input = """
    > Task :app:compileJava NO-SOURCE
    > Task :app:compileScala
    Scala Compiler interface compilation took 1 hrs 20 mins 41.884 secs
    
    > Task :app:processResources NO-SOURCE
    > Task :app:classes
    > Task :app:jar
    > Task :app:startScripts
    > Task :app:distTar
    > Task :app:distZip
    > Task :app:assemble
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/quantity_test.go

    					if !matchedCompileErrs.Has(i) {
    						unmatchedErrs = append(unmatchedErrs, *issue)
    					}
    				}
    				require.Empty(t, unmatchedErrs, "unexpected compilation errors")
    			}
    		}
    
    		require.Empty(t, missingCompileErrs, "expected compilation errors")
    		return
    	} else if len(issues.Errors()) > 0 {
    		errorStrings := []string{}
    		source := common.NewTextSource(expr)
    		for _, issue := range issues.Errors() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslRegressionsTest.kt

                    }
                }
            """)
    
            val result = buildAndFail("classes")
    
            result.assertHasFailure("Execution failed for task ':compileKotlin'.") {
                it.assertHasCause("Compilation error. See log for more details")
            }
            result.assertHasErrorOutput("src/main/kotlin/code.kt:7:25 Unresolved reference. None of the following candidates is applicable because of receiver type mismatch")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:57:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/update_control_dependencies.cc

    };
    
    void ClearControlInputs(Operation* op, int& num_control_inputs_removed) {
      // We only call this function for island or fetch ops. The second pair of
      // parentheses is needed for successful compilation.
      assert((isa<IslandOp, FetchOp>(op)));
      if (auto island = dyn_cast<IslandOp>(op)) {
        num_control_inputs_removed += island.getControlInputs().size();
        island.getControlInputsMutable().clear();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 07:53:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/initializer/initializer.go

    }
    
    // New creates an instance of admission plugins initializer.
    // This constructor is public with a long param list so that callers immediately know that new information can be expected
    // during compilation when they update a level.
    func New(
    	extClientset kubernetes.Interface,
    	dynamicClient dynamic.Interface,
    	extInformers informers.SharedInformerFactory,
    	authz authorizer.Authorizer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. architecture/runtimes.md

    - Worker processes. Long-running daemon processes that the Gradle daemon starts to run specific kinds of work, such as compilation or test execution.
    
    The diagram below shows the relationships between the different processes:
    
    ```mermaid
        graph LR
            
            gradle["Gradle CLI client"]
        
            gradlew["Gradlew CLI client"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/CrossCompilationIntegrationTest.groovy

            })
            fails("build")
    
            then:
            failure.assertHasDescription("Execution failed for task ':compileJava'.")
            failure.assertHasCause("Compilation failed with exit code")
    
            when:
            sourceFile.replace("() -> { }", "new Runnable() { public void run() { } }")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 08:31:21 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/testing/fixture/GroovyCoverage.groovy

        static {
            SUPPORTED_BY_JDK = groovyVersionsSupportedByJdk(JavaVersion.current())
            SUPPORTS_GROOVYDOC = VersionCoverage.versionsAtLeast(SUPPORTED_BY_JDK, "1.6.9")
            // Indy compilation doesn't work in 2.2.2 and before
            SUPPORTS_INDY = VersionCoverage.versionsAtLeast(SUPPORTED_BY_JDK, "2.3.0")
            SUPPORTS_TIMESTAMP = VersionCoverage.versionsAtLeast(SUPPORTED_BY_JDK, "2.4.6")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top