Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 145 for Here (0.04 sec)

  1. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/main/SimpleAnalysisEvaluator.kt

        private
        val conventionStorage = ConventionStorage()
    
        private
        val analysisContext = AnalysisStepContext(
            supportedDocumentChecks = emptyList(), // TODO: move the settings blocks check here,
            supportedResolutionResultHandlers = listOf(ConventionDefinitionCollector(conventionStorage), ConventionApplicationHandler(conventionStorage))
        )
    
        fun evaluate(
            scriptFileName: String,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginEndOfBuildCallbackIntegrationTest.groovy

            when:
            fails failingTaskName
    
            then:
            // Note: we test less of the exception here because it's different in a build where configuration came from cache
            // In the non cache case, the exception points to the build file. In the from cache case it does not.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest_prod.h

    //   void MyMethod();
    //   FRIEND_TEST(MyClassTest, MyMethod);
    // };
    //
    // class MyClassTest : public testing::Test {
    //   // ...
    // };
    //
    // TEST_F(MyClassTest, MyMethod) {
    //   // Can call MyClass::MyMethod() here.
    // }
    
    #define FRIEND_TEST(test_case_name, test_name)\
    friend class test_case_name##_##test_name##_Test
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/AbstractTestDescriptor.java

        }
    
        @Override
        public String getClassName() {
            return null;
        }
    
        /**
         * Returns the method name for this test, if any.
         * It should be in TestDescriptor, but moved here for backward compatibility
         *  TODO: move it to TestDescriptor interface with 9.0
         *
         * @return The method name. May return null.
         * @since 8.8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. testing/internal-architecture-testing/src/main/java/org/gradle/internal/architecture/PackageCycleTest.java

            SlicesRuleDefinition.slices().assignedFrom(GRADLE_SLICE_ASSIGNMENT)
                .should()
                .beFreeOfCycles()
                // Some projects exclude all classes, that is why we allow empty here
                .allowEmptyShould(true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/fixtures/ScalaCoverage.groovy

        }
    
        private static Set<String> scala2VersionsSupportedByJdk(JavaVersion javaVersion) {
            // There are finer grained version requirements, but we don't need to worry about them here, as we use latest patch versions
            if (javaVersion.isCompatibleWith(JavaVersion.VERSION_1_9)) {
                // All latest patches of 2.13 work on Java 9+
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. gradlew

            # changing the positional parameters here affects neither the number of
            # iterations, nor the values presented in `arg`.
            shift                   # remove old arg
            set -- "$@" "$arg"      # push replacement arg
        done
    fi
    
    
    # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/resolution.kt

        data object UnresolvedAssignmentLhs : ErrorReason // TODO: report candidate with rejection reasons
        data object UnresolvedAssignmentRhs : ErrorReason // TODO: resolution trace here, too?
        data object UnitAssignment : ErrorReason
        data object DanglingPureExpression : ErrorReason
    }
    
    
    class DefaultOperationGenerationId(override val ordinal: Int) : OperationGenerationId {
        companion object {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/AbstractInitIntegrationSpec.groovy

        TestFile containerDir
        TestFile targetDir
        TestFile subprojectDir
    
        abstract String subprojectName()
    
        def setup() {
            file("settings.gradle") << """
                // This is here to prevent Gradle searching up to find the build's settings.gradle
            """
            initializeIntoTestDir()
        }
    
        void initializeIntoTestDir() {
            containerDir = testDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:17:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/windowsStartScript.txt

    set APP_BASE_NAME=%~n0
    set APP_HOME=%DIRNAME%${appHomeRelativePath}
    
    @rem Resolve any "." and ".." in APP_HOME to make it shorter.
    for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
    
    @rem Add default JVM options here. You can also use JAVA_OPTS and ${optsEnvironmentVar} to pass JVM options to this script.
    set DEFAULT_JVM_OPTS=${defaultJvmOpts}
    
    @rem Find java.exe
    if defined JAVA_HOME goto findJavaFromJavaHome
    
    set JAVA_EXE=java.exe
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 13:16:41 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top