Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 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/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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformUsage/groovy/build.gradle

     * limitations under the License.
     */
    
    // tag::platform_uses_catalog[]
    plugins {
        id 'java-platform'
    }
    
    dependencies {
        constraints {
            api(libs.mylib)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 782 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/groovy/gradle/test-libs.versions.toml

    my-lib = "com.mycompany:mylib:1.4"
    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    long-notation = { id = "some.plugin.id", version = "1.4" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/kotlin/gradle/test-libs.versions.toml

    my-lib = "com.mycompany:mylib:1.4"
    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    long-notation = { id = "some.plugin.id", version = "1.4" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
Back to top