Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for mylib (0.04 sec)

  1. src/cmd/nm/nm_test.go

    	out, err = testenv.Command(t, nmPath(t), mylib).CombinedOutput()
    	if err != nil {
    		t.Fatalf("go tool nm: %v\n%s", err, string(out))
    	}
    	type symType struct {
    		Type  string
    		Name  string
    		CSym  bool
    		Found bool
    	}
    	var syms = []symType{
    		{"B", "mylib.Testdata", false, false},
    		{"T", "mylib.Testfunc", false, false},
    	}
    	if iscgo {
    		syms = append(syms, symType{"B", "mylib.TestCgodata", false, false})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 23:32:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/DefaultLibraryComponentSelectorTest.groovy

            ':myProjectPath1' | 'myLib1'     | ':myProjectPath1' | 'myLib1'     | 'api'    | 'api'    | true
            ':myProjectPath1' | 'myLib1'     | ':myProjectPath1' | 'myLib1'     | 'api'    | 'impl'   | false
            ':myProjectPath1' | 'myLib1'     | ':myProjectPath2' | 'myLib1'     | 'impl'   | 'impl'   | false
            ':myProjectPath1' | 'myLib1'     | ':myProjectPath2' | 'myLib1'     | 'api'    | 'api'    | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/DefaultLibraryBinaryIdentifierTest.groovy

            ':myProjectPath1' | 'myLib'     | 'api'   | true     | true     | true
            ':myProjectPath2' | 'myLib'     | 'api'   | false    | false    | false
            ':myProjectPath1' | 'myLib2'    | 'api'   | false    | false    | false
            ':myProjectPath1' | 'myLib'     | 'impl'  | false    | false    | false
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentBinariesIntegrationTest.groovy

        def setup() {
            withCustomComponentType()
            withCustomBinaryType()
            withCustomLanguageType()
    
            buildFile << '''
    model {
        components {
            mylib(CustomComponent) {
                binaries {
                    main(CustomBinary)
                    test(CustomBinary)
                }
            }
        }
    }
    '''
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                        libs {
                            version("myLib") {
                                strictly "[1.0,1.1)"
                            }
                            library("myLib", "org.gradle.test", "lib-core").versionRef("myLib")
                            library("myLib-ext", "org.gradle.test", "lib-ext").versionRef("myLib")
                            bundle("myBundle", ["myLib"])
                            bundle("myBundle-ext", ["myLib-ext"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeaturePublishingIntegrationTest.groovy

            def expectedArtifacts = [
                'mylib-1.4.pom',
                'mylib-1.4.module',
                'mylib-1.4.jar',
                'mylib-1.4-test-fixtures.jar'
            ]
            if (published) {
                expectedArtifacts.add('mylib-1.4-integ-test-fixtures.jar')
            }
            if (javadocs) {
                expectedArtifacts.add('mylib-1.4-integ-test-fixtures-javadoc.jar')
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentBinarySourcesIntegrationTest.groovy

    model {
        components {
            mylib {
                sources {
                    comp(CustomLanguageSourceSet)
                }
                binaries.all {
                    sources {
                        bin(CustomLanguageSourceSet)
                    }
                }
            }
        }
        tasks {
            verify(Task) {
                doLast {
                    def comp = $.components.mylib
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

                            version("myLib") {
                                strictly("[1.0,1.1)")
                            }
                            library("myLib", "org.gradle.test", "lib-core").versionRef("myLib")
                            library("myLib-ext", "org.gradle.test", "lib-ext").versionRef("myLib")
                            bundle("myBundle", listOf("myLib"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformUsage/kotlin/settings.gradle.kts

     * limitations under the License.
     */
    rootProject.name = "platform"
    
    dependencyResolutionManagement {
        versionCatalogs {
            create("libs") {
                library("mylib", "org:mylib:1.0")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 791 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    ## Usage in a Maven repository
    
    When present in a Maven module, the file must have the extension `module`. For example, in version 1.2 of 'mylib', the file should be called `mylib-1.2.module`.
    
    Gradle ignores the contents of the Maven POM when the module metadata file is present.
    
    ## Contents
    
    The file must be encoded using UTF-8.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top