Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for package3 (0.24 sec)

  1. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/tasks/javadoc/GroovydocTest.groovy

            then:
            thrown(InvalidUserDataException)
        }
    
        def "can add link"() {
            given:
            def url1 = "http://www.url1.de"
            def url2 = "http://www.url2.de"
            def package1 = "package1"
            def package2 = "package2"
            def package3 = "package3"
    
            groovydoc.link(url1, package1, package2)
            groovydoc.link(url2, package3)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/MultiParentClassLoaderTest.groovy

            def package1 = Stub(Package)
            def package2 = Stub(Package)
            def package3 = Stub(Package)
    
            given:
            _ * parent1.getPackages() >> ([package1] as Package[])
            _ * parent2.getPackages() >> ([package1, package2, package3] as Package[])
    
            expect:
            loader.getPackages() == [package1, package2, package3] as Package[]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. src/go/types/package.go

    	scope := NewScope(Universe, nopos, nopos, fmt.Sprintf("package %q", path))
    	return &Package{path: path, name: name, scope: scope}
    }
    
    // Path returns the package path.
    func (pkg *Package) Path() string { return pkg.path }
    
    // Name returns the package name.
    func (pkg *Package) Name() string { return pkg.name }
    
    // SetName sets the package name.
    func (pkg *Package) SetName(name string) { pkg.name = name }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/package.go

    // license that can be found in the LICENSE file.
    
    package types2
    
    import (
    	"fmt"
    )
    
    // A Package describes a Go package.
    type Package struct {
    	path      string
    	name      string
    	scope     *Scope
    	imports   []*Package
    	complete  bool
    	fake      bool   // scope lookup errors are silently dropped if package is fake (internal use only)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 06 13:09:19 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/swiftpm/Package.java

     * limitations under the License.
     */
    
    package org.gradle.swiftpm;
    
    import org.gradle.internal.HasInternalProtocol;
    
    import java.util.Set;
    
    /**
     * Represents a Swift Package Manager package.
     *
     * @since 4.6
     */
    @HasInternalProtocol
    public interface Package {
        /**
         * Returns the products of this package.
         */
        Set<? extends Product> getProducts();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 943 bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/package.go

    package report
    
    import "regexp"
    
    // pkgRE extracts package name, It looks for the first "." or "::" that occurs
    // after the last "/". (Searching after the last / allows us to correctly handle
    // names that look like "some.url.com/foo.bar".)
    var pkgRE = regexp.MustCompile(`^((.*/)?[\w\d_]+)(\.|::)([^/]*)$`)
    
    // packageName returns the package name of the named symbol, or "" if not found.
    func packageName(name string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 512 bytes
    - Viewed (0)
  7. docs/en/docs/img/tutorial/bigger-applications/package.svg

    package.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 14K bytes
    - Viewed (0)
  8. docs/en/docs/img/tutorial/bigger-applications/package.drawio

                        <mxGeometry x="110" y="280" width="1350" height="620" as="geometry"/>
                    </mxCell>
                    <mxCell id="3" value="&lt;font style=&quot;font-size: 24px&quot; face=&quot;Roboto&quot;&gt;Package app&lt;br&gt;app/__init__.py&lt;/font&gt;" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;strokeWidth=3;fontFamily=Roboto Mono, mono;FType=g;" parent="1" vertex="1">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  9. android/guava/javadoc-link/j2objc-annotations/package-list

    cpovirk <******@****.***> 1510351134 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 10 22:31:30 UTC 2017
    - 30 bytes
    - Viewed (0)
  10. guava/javadoc-link/checker-framework/package-list

    cpovirk <******@****.***> 1512668275 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 07 19:00:31 UTC 2017
    - 3.8K bytes
    - Viewed (0)
Back to top