Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for libc (0.04 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

            runTask("idea", """
    apply plugin: 'idea'
    
    idea.project {
        def lib = new org.gradle.plugins.ide.idea.model.ProjectLibrary()
        lib.name = "someLib"
        lib.classes << file("someClasses.jar")
        lib.javadoc << file("someJavadoc.jar")
        lib.sources << file("someSources.jar")
        projectLibraries << lib
    }
    """)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

        mavenCentral()
    }
    
    dependencies {
        // Use JUnit Jupiter for testing.
        testImplementation(libs.junit.jupiter)
    
        testRuntimeOnly("org.junit.platform:junit-platform-launcher")
    
        // This dependency is used by the application.
        implementation(libs.guava)
    }
    
    // Apply a specific Java toolchain to ease working on different environments.
    java {
        toolchain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

                }
    
                dependencies {
                    implementation(project(":lib"))
                    manifestClasspath(project(":lib"))
                }
            '''
            file('lib/src/main/java/lib/Utils.java') << '''
                package lib;
                public class Utils {}
            '''
            file('app/src/main/java/launcher/Main.java') << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

            0  01-31-2024 14:22   libs/
          847  01-31-2024 14:22   libs/app.jar
      3041591  01-29-2024 14:20   libs/guava-32.1.2-jre.jar
         4617  01-29-2024 14:15   libs/failureaccess-1.0.1.jar
         2199  01-29-2024 14:15   libs/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
        19936  01-29-2024 14:15   libs/jsr305-3.0.2.jar
       223979  01-31-2024 14:16   libs/checker-qual-3.33.0.jar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

                buildscript {
                    dependencies {
                        // Add them as separate jars
                        classpath(files("./subproject/impl/build/libs/impl-1.0.jar"))
                        classpath(files("./subproject/api/build/libs/api-1.0.jar"))
                    }
                }
            """
    
            when:
            executer.inDirectory(file("subproject")).withTasks("jar").run()
            run("tasks")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

                    }
                    implementation 'org.external:external-lib2:1.0'
                    implementation project('project-lib')
                    implementation files('lib/file-lib.jar')
                    implementation 'composite-lib:composite-lib'
                }
    
                @CacheableRule
                abstract class ChangingAttributeRule implements ComponentMetadataRule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

         * </table>
         *
         * <p>Examples:</p>
         * <pre class='autoTested'>
         * repositories {
         *     flatDir name: 'libs', dirs: "$projectDir/libs"
         *     flatDir dirs: ["$projectDir/libs1", "$projectDir/libs2"]
         * }
         * </pre>
         *
         * @param args The arguments used to configure the repository.
         * @return the added resolver
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/net/conf_test.go

    			resolv: defaultResolvConf,
    			nss:    nssStr(t, "hosts: dns"),
    			hostTests: []nssHostTest{
    				{"x.com", "myhostname", hostLookupDNS},
    				{"x\\.com", "myhostname", hostLookupCgo},     // punt on weird glibc escape
    				{"foo.com%en0", "myhostname", hostLookupCgo}, // and IPv6 zones
    			},
    		},
    		{
    			name: "mdns_allow",
    			c: &conf{
    				mdnsTest: mdnsAssumeExists,
    			},
    			resolv: defaultResolvConf,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux_test.go

    // causes an OS thread to terminate.
    func killAThread(c <-chan struct{}) {
    	runtime.LockOSThread()
    	<-c
    	return
    }
    
    // TestSetuidEtc performs tests on all of the wrapped system calls
    // that mirror to the 9 glibc syscalls with POSIX semantics. The test
    // here is considered authoritative and should compile and run
    // CGO_ENABLED=0 or 1. Note, there is an extended copy of this same
    // test in ../../misc/cgo/test/issue1435.go which requires
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

        private static final String VERSION = '1.0'
        TestFile downloadedLibsDir
        MavenHttpModule moduleA
    
        def setup() {
            moduleA = publishMavenModule(mavenHttpRepo, 'a')
            downloadedLibsDir = file('build/libs')
            executer.beforeExecute {
                executer.withArgument("-D${SOCKET_TIMEOUT_SYSTEM_PROPERTY}=1000")
            }
        }
    
        void blockingForProtocol(String protocol, HttpResource... resources) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top