Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for Discovered (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultNodeValidator.java

    import static org.gradle.internal.reflect.validation.TypeValidationProblemRenderer.renderMinimalInformationAbout;
    
    /**
     * This class will validate a {@link LocalTaskNode}, logging any warnings discovered and halting
     * the build by throwing a {@link WorkValidationException} if any errors are found.
     */
    public class DefaultNodeValidator implements NodeValidator {
    
        private final InternalProblems problemsService;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/schemaFromProperties.kt

    import kotlin.reflect.full.primaryConstructor
    
    
    /**
     * Extracts schema properties from Kotlin properties and Java getters returning the type [Property].
     * Ensures that the return types of these properties get discovered during type discovery.
     */
    internal
    class GradlePropertyApiAnalysisSchemaComponent : AnalysisSchemaComponent {
        private
        val propertyExtractor = GradlePropertyApiPropertyExtractor(isPublicAndRestricted)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/software/internal/DefaultSoftwareTypeRegistry.java

            if (softwareTypeImplementations != null) {
                throw new IllegalStateException("Cannot register a plugin after software types have been discovered");
            }
            pluginClasses.computeIfAbsent(registeringPluginClass, k -> new LinkedHashSet<>()).add(pluginClass);
        }
    
        private Set<SoftwareTypeImplementation<?>> discoverSoftwareTypeImplementations() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:31 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/schemaFromGradleExtensions.kt

     *
     * Given that, introduces the following features in the schema:
     * * Type discovery ensuring that the types of the extensions get discovered and included in the schema (but just those types, not recursing)
     * * Function extractors which introduce configuring functions for the extensions
     *
     * If object conversion is enabled ([ifConversionSupported]):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AvailableJavaHomes.java

         */
        public static Jvm getDifferentJdkWithValidJre() {
            return getSupportedJdk(jvm -> !isCurrentJavaHome(jvm)
                && Jvm.discovered(jvm.getJavaHome().toFile(), null, jvm.getLanguageVersion().getMajorVersionNumber()).getJre() != null);
        }
    
        public static boolean isCurrentJavaHome(JvmInstallationMetadata metadata) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/scopes/GradleModuleServices.java

    import org.gradle.internal.service.ServiceRegistrationProvider;
    
    /**
     * Can be implemented by Gradle modules to provide services in various scopes.
     *
     * <p>Implementations are discovered using the JAR service locator mechanism (see {@link org.gradle.internal.service.ServiceLocator}).
     */
    @ServiceScope(Scope.Global.class)
    public interface GradleModuleServices extends ServiceRegistrationProvider {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. tests/integration/pilot/workloadentry_test.go

    						for _, weCluster := range weClusters {
    							t.ConfigKube(weCluster).Eval(apps.Namespace.Name(), map[string]interface{}{
    								// used so this WE doesn't get cross-cluster discovered
    								"clusterName": weCluster.Name(),
    								"testName":    strings.ReplaceAll(tc.name, " ", "-"),
    								"network":     tc.networkNameFunc(network),
    								"address":     tc.addressFunc(network),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/deadcode.go

    		// about yet when dynamically linking.
    		d.reflectSeen = true
    	}
    
    	for {
    		// Mark all methods that could satisfy a discovered
    		// interface as reachable. We recheck old marked interfaces
    		// as new types (with new methods) may have been discovered
    		// in the last pass.
    		rem := d.markableMethods[:0]
    		for _, m := range d.markableMethods {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

            annotation     | targetType
            InputDirectory | "directory"
            InputFile      | "file"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/3792")
        def "task dependency is discovered via Buildable input files"() {
            buildFile << """
                @groovy.transform.TupleConstructor
                class BuildableArtifact implements Buildable, Iterable<File> {
                    FileCollection files
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/runtime/runtime.go

    			strings.Join(foundCRISockets, ", "))
    	}
    }
    
    // DetectCRISocket uses a list of known CRI sockets to detect one. If more than one or none is discovered, an error is returned.
    func DetectCRISocket() (string, error) {
    	return detectCRISocketImpl(isExistingSocket, defaultKnownCRISockets)
    }
    
    // SandboxImage returns the sandbox image used by the container runtime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top