Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 432 for Sall (0.08 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/schemaFromConfiguringFunctions.kt

    /**
     * Provides type discovery via functions that return an object or configure an object accepting a lambda as the last parameter
     * (via [org.gradle.api.Action] or a Kotlin function type, see [gradleConfigureLambdas]).
     *
     * All configured or returned types that appear in [isPublicAndRestricted]-matching will be discovered (for now, regardless of actual function semantics).
     */
    internal
    class TypeDiscoveryFromRestrictedFunctions : AnalysisSchemaComponent {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryConcurrencyTest.groovy

                    assert registry.getFactory(Integer).create() == 12
                    assert registry.getFactory(String).create() == "123"
                }
            }
        }
    
        def "multiple threads can locate all services"() {
            def registry = new DefaultServiceRegistry()
            registry.addProvider(new ServiceRegistrationProvider() {
                @Provides
                String createString(Integer value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/CurrentProcess.java

            // TODO(mlopatkin) figure out a nicer way of handling the presence of agent in the foreground daemon.
            //  Currently it is hard to have a proper "-javaagent:/path/to/jar" in clients that start the daemon, so all code deals with a boolean flag shouldApplyAgent instead.
            //  It is also possible to have the agent attached at runtime, without the flag, so flag checking is preferred.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/RequiresExtension.groovy

                    .collect { (it as Requires).value() }
                    .flatten() as List<Class>
            }
    
            PredicatesFile.checkValidCombinations(predicateClassNames, acceptedCombinations)
            // If all preconditions are met, we DON'T skip the tests
            specOfFeature.skipped |= !TestPrecondition.allSatisfied(annotation.value())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top