Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 7,708 for Package (0.2 sec)

  1. .github/dependabot.yml

    ---
    version: 2
    updates:
      - package-ecosystem: gomod
        directory: /
        schedule:
          interval: weekly
      - package-ecosystem: github-actions
        directory: /
        schedule:
          interval: weekly
      - package-ecosystem: gomod
        directory: /tests
        schedule:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Aug 09 05:16:25 UTC 2021
    - 287 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typestring.go

    //
    // Using a nil Qualifier is equivalent to using (*[Package]).Path: the
    // object is qualified by the import path, e.g., "encoding/json.Marshal".
    type Qualifier func(*Package) string
    
    // RelativeTo returns a [Qualifier] that fully qualifies members of
    // all packages other than pkg.
    func RelativeTo(pkg *Package) Qualifier {
    	if pkg == nil {
    		return nil
    	}
    	return func(other *Package) string {
    		if pkg == other {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/sizes_test.go

    }
    
    var gcSizesTests = []gcSizeTest{
    	{
    		"issue60431",
    		`
    package main
    
    import "unsafe"
    
    // The foo struct size is expected to be rounded up to 16 bytes.
    type foo struct {
    	a int64
    	b bool
    }
    
    func main() {
    	assert(unsafe.Sizeof(foo{}) == 16)
    }`,
    	},
    	{
    		"issue60734",
    		`
    package main
    
    import (
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 21:00:48 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    } org/codehaus/plexus/context/ContextMapAdapter.class package org.codehaus.plexus.context; public synchronized class ContextMapAdapter extends java.util.HashMap { private Context context; public void ContextMapAdapter(Context); public Object get(Object); } org/codehaus/plexus/context/DefaultContext$1.class package org.codehaus.plexus.context; synchronized class DefaultContext$1 { } org/codehaus/plexus/context/DefaultContext$Hidden.class package org.codehaus.plexus.context; synchronized class DefaultContext$Hidden...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 233.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProvider.kt

         * computing separate package sets for classifiers and callables, or just one set containing all package names.
         */
        public open fun computePackageNames(): Set<String>? = null
    
        /**
         * Whether the declaration provider has a specific implementation of [computePackageNamesWithTopLevelClassifiers]. This allows the
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

    1.6.0-dp org/codehaus/plexus/component/composition/CompositionException.class package org.codehaus.plexus.component.composition; public synchronized class CompositionException extends Exception { private static final long serialVersionUID = -5587124702588800322; public void CompositionException(String); public void CompositionException(String, Throwable); } org/codehaus/plexus/component/discovery/ComponentDiscoveryEv.class package org.codehaus.plexus.component.discovery; public synchronized class ComponentDiscoveryEv...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 35.3K bytes
    - Viewed (0)
  7. api/maven-api-meta/src/main/java/org/apache/maven/api/annotations/Consumer.java

     * <p>
     * A package can be marked {@link Consumer}. In this case, all types in the package are considered
     * to be a provider type regardless of whether they are marked {@link Consumer} or {@link Provider}.
     *
     * @see Provider
     * @since 4.0.0
     */
    @Experimental
    @Documented
    @Retention(RetentionPolicy.CLASS)
    @Target({ElementType.TYPE, ElementType.PACKAGE})
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/sameCallableIdFromDependencies.kt

    // IGNORE_FE10
    // MODULE: dep1
    // FILE: util11.kt
    package my.pack
    
    fun Any.myExt() {}
    
    // FILE: util12.kt
    package my.pack
    
    val Any.myExt: Int get() = 10
    
    // MODULE: dep2
    // FILE: util21.kt
    package my.pack
    
    fun Any.myExt2() {}
    
    // FILE: util22.kt
    package my.pack
    
    val Any.myExt2: Int get() = 10
    
    // MODULE: main(dep1, dep2)
    // FILE: usage.kt
    package usage
    
    import my.pack.myExt
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Apr 29 19:19:13 UTC 2024
    - 476 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/issues_test.go

    // for which there is (currently) no better location.
    
    package syntax
    
    import (
    	"strings"
    	"testing"
    )
    
    func TestIssue67866(t *testing.T) {
    	var tests = []string{
    		"package p; var _ = T{@0: 0}",
    		"package p; var _ = T{@1 + 2: 0}",
    		"package p; var _ = T{@x[i]: 0}",
    		"package p; var _ = T{@f(1, 2, 3): 0}",
    		"package p; var _ = T{@a + f(b) + <-ch: 0}",
    	}
    
    	for _, src := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    SelfDescribingValueI org/hamcrest/internal/package-summary.html Overview Package Class Use Tree Deprecated Index Help PREV PACKAGE NEXT PACKAGE FRAMES NO FRAMES All Classes Package org.hamcrest.internal Class Summary ArrayIterator ReflectiveTypeFinder SelfDescribingValue<T> SelfDescribingValueI<T> Overview Package Class Use Tree Deprecated Index Help PREV PACKAGE NEXT PACKAGE FRAMES NO FRAMES All Classes org/hamcrest/internal/package-tree.html Overview Package Class Use Tree Deprecated Index Help PREV NEXT...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
Back to top