Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 739 for Sall (0.04 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformErrorHandler.java

                throw new ClassNotFoundException(
                    "A pending instrumentation exception prevented loading a class " + className + " in " + classLoaderName, lastError);
            }
        }
    
        /**
         * Call this when an error occurs during class loading.
         * This method only records the error but doesn't throw any exceptions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/app/build.gradle.kts

                setProperty("returnDefaultValues", true)
            }
        }
        kotlinOptions {
            jvmTarget = "1.8"
        }
    }
    
    project.afterEvaluate {
        // Grab all build types and product flavors
        val buildTypes = android.buildTypes.map { type ->
            type.name
        }
        // When no product flavors defined, use empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestFramework.java

            new DslObject(options).getConventionMapping().map("outputDirectory", new Callable<File>() {
                @Override
                public File call() {
                    return html.getOutputLocation().getAsFile().getOrNull();
                }
            });
        }
    
        @UsedByScanPlugin("test-retry")
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/work/AsyncWorkTracker.java

         */
        void registerWork(BuildOperationRef operation, AsyncWorkCompletion completion);
    
        /**
         * Blocks waiting for the completion of all items of asynchronous work associated with the provided build operation.
         * Only waits for work that has been registered at the moment the method is called.  In the event that there are failures in
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonLogsAnalyzer.groovy

            }
            return daemonLogsDir.listFiles().findAll { it.name.endsWith('.log') && !it.name.startsWith('hs_err') }.collect { daemonForLogFile(it) }
        }
    
        List<DaemonFixture> getVisible() {
            return registry.all.collect { daemonForLogFile(new File(daemonLogsDir, "daemon-${it.pid}.out.log")) }
        }
    
        DaemonFixture daemonForLogFile(File logFile) {
            def version = GradleVersion.version(version)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. testing/internal-architecture-testing/src/main/java/org/gradle/internal/architecture/PackageCycleTest.java

        public static final ArchRule there_are_no_package_cycles =
            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)
  7. platforms/jvm/language-java/src/main/java/org/gradle/language/java/internal/JavaLanguageServices.java

        private static class JavaProjectScopeServices implements ServiceRegistrationProvider {
            @Provides
            public ToolchainToolFactory createToolFactory(ExecActionFactory generator) {
                // TODO should we create all tools via this factory?
                return new ToolchainToolFactory() {
                    @Override
                    public <T> T create(Class<T> toolType, JavaToolchain toolchain) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            allowEmptySourcePath = false;
            return this;
        }
    
        /**
         * Returns a list with all Java compiler arguments as configured in this builder.
         * Returned arguments are guaranteed not to be null.
         *
         * @return a list containing all Java compiler arguments
         */
        public List<String> build() {
            args = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

                def mutable = new DefaultMutableVersionConstraint("")
                spec.delegate = mutable
                spec.resolveStrategy = Closure.DELEGATE_FIRST
                spec.call()
                def version = DefaultImmutableVersionConstraint.of(mutable)
                assert model.version == version
            }
        }
    
        @CompileStatic
        private static class PluginSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. .github/workflows/contributor-pr.yml

      # Enable debug for the `gradle-build-action` cache operations
      GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
    
    permissions: {}
    
    jobs:
      build:
        name: "Compile All"
        permissions:
          contents: read
        runs-on: ubuntu-latest
        steps:
          - name: git clone
            uses: actions/checkout@v4
          - id: setup-matrix
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top