Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for dylib (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    	dir = uintptr(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_fdopendir_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_fdopendir fdopendir "/usr/lib/libSystem.B.dylib"
    
    func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
    	// Simulate Getdirentries using fdopendir/readdir_r/closedir.
    	// We store the number of entries to skip in the seek
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"CpuArm", Const, 3},
    		{"CpuArm64", Const, 11},
    		{"CpuPpc", Const, 3},
    		{"CpuPpc64", Const, 3},
    		{"Dylib", Type, 0},
    		{"Dylib.CompatVersion", Field, 0},
    		{"Dylib.CurrentVersion", Field, 0},
    		{"Dylib.LoadBytes", Field, 0},
    		{"Dylib.Name", Field, 0},
    		{"Dylib.Time", Field, 0},
    		{"DylibCmd", Type, 0},
    		{"DylibCmd.Cmd", Field, 0},
    		{"DylibCmd.CompatVersion", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/DefaultLibraryBinaryIdentifierTest.groovy

            then:
            defaultBuildComponentIdentifier.projectPath == ':myPath'
            defaultBuildComponentIdentifier.libraryName == 'myLib'
            defaultBuildComponentIdentifier.variant == 'api'
            defaultBuildComponentIdentifier.displayName == /project ':myPath' library 'myLib' variant 'api'/
    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/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)
  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/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/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/DefaultLibraryComponentSelectorTest.groovy

            then:
            defaultBuildComponentSelector.projectPath == ':myPath'
            defaultBuildComponentSelector.libraryName == 'myLib'
            defaultBuildComponentSelector.displayName == /project ':myPath' library 'myLib'/
            defaultBuildComponentSelector.toString() == /project ':myPath' library 'myLib'/
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top