Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 197 for prebuilt (1.1 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/PrebuiltLibraryResolveException.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal.prebuilt;
    
    import org.gradle.api.GradleException;
    import org.gradle.internal.exceptions.Contextual;
    
    @Contextual
    public class PrebuiltLibraryResolveException extends GradleException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 937 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/NativeDependencyResolverServices.java

    import org.gradle.api.internal.resolve.ProjectModelResolver;
    import org.gradle.internal.service.Provides;
    import org.gradle.internal.service.ServiceRegistrationProvider;
    import org.gradle.nativeplatform.internal.prebuilt.PrebuiltLibraryBinaryLocator;
    
    import java.util.ArrayList;
    import java.util.List;
    
    public class NativeDependencyResolverServices implements ServiceRegistrationProvider {
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/Repositories.java

    import org.gradle.api.Incubating;
    import org.gradle.api.PolymorphicDomainObjectContainer;
    import org.gradle.api.artifacts.repositories.ArtifactRepository;
    
    /**
     * The repositories that Gradle will search for prebuilt libraries.
     */
    @Incubating
    public interface Repositories extends PolymorphicDomainObjectContainer<ArtifactRepository> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 992 bytes
    - Viewed (0)
  4. src/runtime/race/race.go

    package race
    
    // This file merely ensures that we link in runtime/cgo in race build,
    // this in turn ensures that runtime uses pthread_create to create threads.
    // The prebuilt race runtime lives in race_GOOS_GOARCH.syso.
    // Calls to the runtime are done directly from src/runtime/race.go.
    
    // On darwin we always use system DLLs to create threads,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 21:38:55 UTC 2022
    - 868 bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/PrebuiltLibraryBinaryLocator.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal.prebuilt;
    
    import org.gradle.api.DomainObjectSet;
    import org.gradle.api.NamedDomainObjectSet;
    import org.gradle.api.internal.resolve.ProjectModelResolver;
    import org.gradle.model.internal.registry.ModelRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        finalizedBy 'largeNativeBuildPrebuilt'
    }
    
    performanceTest.registerTestProject("largeNativeBuildPrebuilt", GradleBuild) {
        buildFile = file("$largeNativeBuild.outputDirectory/prebuilt/util/build.gradle")
        dir = file("$largeNativeBuild.outputDirectory/prebuilt/util")
        tasks = ['build']
    }
    
    performanceTest.registerTestProject("archivePerformanceProject", Copy) {
        into "build/$name"
        from "src/templates/$name"
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltLibraries.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal.prebuilt;
    
    import org.gradle.api.Action;
    import org.gradle.api.artifacts.repositories.RepositoryContentDescriptor;
    import org.gradle.api.internal.AbstractNamedDomainObjectContainer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/AbstractPrebuiltLibraryBinary.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal.prebuilt;
    
    import org.gradle.api.file.FileCollection;
    import org.gradle.api.internal.file.FileCollectionFactory;
    import org.gradle.api.internal.file.collections.MinimalFileSet;
    import org.gradle.nativeplatform.BuildType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/PrebuiltLibraryInitializer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal.prebuilt;
    
    import org.gradle.api.Action;
    import org.gradle.api.internal.file.FileCollectionFactory;
    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.nativeplatform.BuildType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    implementation files('a.thing', additionalFile.output)
                }
            """
        }
    
        def "task input file collection can include project dependencies, external dependencies, prebuilt file dependencies and task output file dependencies"() {
            def configurationCache = newConfigurationCacheFixture()
    
            setupBuildWithEachDependencyType()
            taskTypeLogsInputFileCollectionContent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
Back to top