Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/telemetry/package.json

    Michael Matloob <******@****.***> 1708031260 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 650 bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * This package contains tests that apply broadly across all JUnit platforms.
     * Most test classes are abstract and are implemented by framework/engine specific classes
     * in sub-packages.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 848 bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/service/internal/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Packages with injected classpath plugin resolver, used to inject plugins classpath when using TestKit.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 12:40:29 UTC 2024
    - 814 bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/setup.packages.sh

    # limitations under the License.
    # ==============================================================================
    #
    # setup.packages.sh: Given a list of Ubuntu packages, install them and clean up.
    # Usage: setup.packages.sh <package_list.txt>
    set -e
    
    # Prevent apt install tzinfo from asking our location (assumes UTC)
    export DEBIAN_FRONTEND=noninteractive
    
    apt-get update
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * This package contains tests that should be specific to JUnit 4.  Some classes are abstract
     * and may be implemented by classes in this package as well as in the vintage package.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 848 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/package-info.java

     * limitations under the License.
     */
    
    /**
     * This package contains {@link org.gradle.internal.component.resolution.failure.type.ResolutionFailure ResolutionFailure}s types
     * that exist to categorize types of failure conditions that can occur during dependency resolution and package contexual information
     * specific to each type of failure.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 15:07:22 UTC 2024
    - 1016 bytes
    - Viewed (0)
  10. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * This package forms the basic contract between the build scan plugin
     * and Gradle with regard to observing build operations.
     *
     * It has no dependencies to types outside of this package other than JDK types.
     *
     * Only binary compatible changes, from the caller's perspective,
     * can be made to these types.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top