Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,741 for Packaged (0.17 sec)

  1. src/cmd/go/internal/modload/query.go

    // satisfied because it matches one or more packages found in the main module.
    type QueryMatchesPackagesInMainModuleError struct {
    	Pattern  string
    	Query    string
    	Packages []string
    }
    
    func (e *QueryMatchesPackagesInMainModuleError) Error() string {
    	if len(e.Packages) > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/ureader.go

    }
    
    func (r *reader) qualifiedIdent() (*types.Package, string) { return r.ident(pkgbits.SyncSym) }
    func (r *reader) localIdent() (*types.Package, string)     { return r.ident(pkgbits.SyncLocalIdent) }
    func (r *reader) selector() (*types.Package, string)       { return r.ident(pkgbits.SyncSelector) }
    
    func (r *reader) ident(marker pkgbits.SyncMarker) (*types.Package, string) {
    	r.Sync(marker)
    	return r.pkg(), r.String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/issues_test.go

    // a race condition if package b is imported elsewhere, in a package that is
    // concurrently type-checked.
    func TestIssue34921(t *testing.T) {
    	defer func() {
    		if r := recover(); r != nil {
    			t.Error(r)
    		}
    	}()
    
    	var sources = []string{
    		`package a; type T int`,
    		`package b; import "a"; type T a.T`,
    	}
    
    	var pkg *Package
    	for _, src := range sources {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/buildid.go

    			a.Target = "DO NOT USE - " + a.Mode
    			return true
    		}
    		// Special case for building a main package: if the only thing we
    		// want the package for is to link a binary, and the binary is
    		// already up-to-date, then to avoid a rebuild, report the package
    		// as up-to-date as well. See "Build IDs" comment above.
    		// TODO(rsc): Rewrite this code to use a TryCache func on the link action.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. src/runtime/mbarrier.go

    	// pass a type here.
    	//
    	// See the comment on bulkBarrierPreWrite.
    	bulkBarrierPreWrite(uintptr(dst), uintptr(src), typ.PtrBytes, typ)
    }
    
    // reflect_typedmemmove is meant for package reflect,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gitee.com/quant1x/gox
    //   - github.com/goccy/json
    //   - github.com/modern-go/reflect2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/FilteringClassLoaderTest.groovy

        }
    
        void "can disallow packages"() {
            given:
            withSpec { FilteringClassLoader.Spec spec ->
                spec.disallowPackage("org.junit")
            }
    
            expect:
            cannotLoadClass(Test)
            cannotSeePackage("org.junit")
            cannotSeePackage("org.junit.subpackage")
        }
    
        void "disallow wins over allow packages"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/cgo/doc.go

    package. All the CPPFLAGS and FFLAGS directives in a package are concatenated
    and used to compile Fortran files in that package. All the LDFLAGS directives
    in any package in the program are concatenated and used at link time. All the
    pkg-config directives are concatenated and sent to pkg-config simultaneously
    to add to each appropriate set of command-line flags.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. src/runtime/stubs.go

    // these pointers in regArgs.Ptrs such that they are visible to the GC.
    //
    // Package reflect passes a frame type. In package runtime, there is only
    // one call that copies results back, in callbackWrap in syscall_windows.go, and it
    // does NOT pass a frame type, meaning there are no write barriers invoked. See that
    // call site for justification.
    //
    // Package reflect accesses this symbol through a linkname.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modindex/read.go

    // needed to load a package in a specific directory.
    type IndexPackage struct {
    	error error
    	dir   string // directory of the package relative to the modroot
    
    	modroot string
    
    	// Source files
    	sourceFiles []*sourceFile
    }
    
    var errCannotFindPackage = errors.New("cannot find package")
    
    // Package and returns finds the package with the given path (relative to the module root).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. src/cmd/internal/moddeps/moddeps_test.go

    				"$ go generate -run=bundle " + pkgs + "               # to regenerate bundled packages\n"
    			if m.Path == "std" {
    				r.run(t, goBinCopy, "generate", "syscall", "internal/syscall/...") // See issue 43440.
    				advice += "$ go generate syscall internal/syscall/...  # to regenerate syscall packages\n"
    			}
    			// TODO(golang.org/issue/43440): Check anything else influenced by dependency versions.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top