Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for package_a (0.36 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. subprojects/core-api/src/main/java/org/gradle/api/attributes/Usage.java

        /**
         * The C++ API of a library, packaged as header directories.
         *
         * @since 4.1
         */
        String C_PLUS_PLUS_API = "cplusplus-api";
    
        /**
         * The native link files of a library, packaged as static or shared library.
         *
         * @since 4.1
         */
        String NATIVE_LINK = "native-link";
    
        /**
         * The native runtime files of a library, packaged as a shared library.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 2.2K 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/typecheck/bexport.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package typecheck
    
    // Tags. Must be < 0.
    const (
    	// Objects
    	packageTag = -(iota + 1)
    	constTag
    	typeTag
    	varTag
    	funcTag
    	endTag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:52:50 UTC 2023
    - 293 bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/JavaEcosystemAttributesDescriberTest.groovy

                .attribute(ProjectInternal.STATUS_ATTRIBUTE, "release")
    
            then:
            describer.describeAttributeSet(attributes.asMap()) == "a library for use during compile-time, with a release status, compatible with Java 11, packaged as a jar"
        }
    
        def "describes a library with MAX_VALUE target JVM version"() {
            when:
            attributes.attribute(Usage.USAGE_ATTRIBUTE, named(Usage, "java-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 13 17:05:19 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/ReactorReader.java

            boolean packaged = false;
            for (String phase : getLifecycles(project)) {
                switch (phase) {
                    case "clean":
                        packaged = false;
                        break;
                    case "package":
                    case "install":
                    case "deploy":
                        packaged = true;
                        break;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. src/net/http/doc.go

    package takes precedence over the net/http package's built-in HTTP/2
    support.
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/errors/example_test.go

    func ExampleNew() {
    	err := errors.New("emit macho dwarf: elf header corrupted")
    	if err != nil {
    		fmt.Print(err)
    	}
    	// Output: emit macho dwarf: elf header corrupted
    }
    
    // The fmt package's Errorf function lets us use the package's formatting
    // features to create descriptive error messages.
    func ExampleNew_errorf() {
    	const name, id = "bimmler", 17
    	err := fmt.Errorf("user %q (id %d) not found", name, id)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 02:08:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/IgnoreJRERequirement.java

    /**
     * Disables Animal Sniffer's checking of compatibility with older versions of Java/Android.
     *
     * <p>Each package's copy of this annotation needs to be listed in our {@code pom.xml}.
     */
    @Target({METHOD, CONSTRUCTOR, TYPE})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 02:06:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/IgnoreJRERequirement.java

    /**
     * Disables Animal Sniffer's checking of compatibility with older versions of Java/Android.
     *
     * <p>Each package's copy of this annotation needs to be listed in our {@code pom.xml}.
     */
    @Target({METHOD, CONSTRUCTOR, TYPE})
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 02:06:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top