Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 8,586 for Package (0.9 sec)

  1. src/cmd/go/testdata/script/build_internal.txt

    stderr 'p\.go:3:8: use of internal package net/http/internal not allowed'
    
    -- testinternal/go.mod --
    module testinternal
    
    go 1.16
    -- testinternal/p.go --
    package p
    
    import _ "net/http/internal"
    -- testinternal2/go.mod --
    module testinternal2
    
    go 1.16
    -- testinternal2/p.go --
    package p
    
    import _ "./x/y/z/internal/w"
    -- testinternal2/x/y/z/internal/w/w.go --
    package w
    -- testinternal3/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cgo_undef.txt

    # such that the .syso file only works when linked against the .a file.
    # Package a has #cgo LDFLAGS to make this happen.
    #
    # Package c imports package a, and uses cgo itself.
    # The generation of the _cgo_import.go for package c will fail,
    # because it won't know that it has to link against a/libb.a
    # (because we don't gather the #cgo LDFLAGS from all transitively
    # imported packages).
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 22 20:56:07 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.jar

    Build-Jdk: 1.5.0_06 org/codehaus/classworlds/BytesURLConnection.class package org.codehaus.classworlds; public synchronized class BytesURLConnection extends java.net.URLConnection { protected byte[] content; protected int offset; protected int length; public void BytesURLConnection(java.net.URL, byte[]); public void connect(); public java.io.InputStream getInputStream(); } org/codehaus/classworlds/BytesURLStreamHandle.class package org.codehaus.classworlds; public synchronized class BytesURLStreamHandle...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 41.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cover_statements.txt

    module m
    
    go 1.16
    -- pkg1/a.go --
    package pkg1
    
    import "fmt"
    
    func F() {
    	fmt.Println("pkg1")
    }
    -- pkg2/a.go --
    package pkg2
    
    import "fmt"
    
    func F() {
    	fmt.Println("pkg2")
    }
    -- pkg2/a_test.go --
    package pkg2
    -- pkg3/a.go --
    package pkg3
    
    import "fmt"
    
    func F() {
    	fmt.Println("pkg3")
    }
    -- pkg3/a_test.go --
    package pkg3
    
    import "testing"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:36:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/gcflags_patterns.txt

    go build -ldflags='-linkmode=external -linkmode=internal' -n prog.go
    ! stderr 'packagefile .*runtime/cgo.a'
    
    -- z1/z.go --
    package z1
    import _ "y"
    import _ "z2"
    
    -- z1/z_test.go --
    package z1_test
    import "testing"
    import _ "z3"
    func Test(t *testing.T) {}
    
    -- z2/z.go --
    package z2
    
    -- z3/z.go --
    package z3
    
    -- y/y.go --
    package y
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. .idea/codeStyles/Project.xml

        <option name="IMPORT_LAYOUT_TABLE">
          <value>
            <package name="" withSubpackages="true" static="true" />
            <emptyLine />
            <package name="" withSubpackages="true" static="false" />
            <emptyLine />
            <package name="javax" withSubpackages="true" static="false" />
            <package name="java" withSubpackages="true" static="false" />
          </value>
        </option>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 31 14:47:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/printer_test.go

    	{"package p; type _[P (*T), _ any] struct{}", "package p; type _[P *T, _ any] struct{}"},
    	{"package p; type _[P (T),] struct{}", "package p; type _[P T] struct{}"},
    	{"package p; type _[P (T), _ any] struct{}", "package p; type _[P T, _ any] struct{}"},
    
    	{"package p; type _[P (*struct{})] struct{}", "package p; type _[P *struct{}] struct{}"},
    	{"package p; type _[P ([]int)] struct{}", "package p; type _[P []int] struct{}"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 17:08:18 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/run/run.go

    	UsageLine: "go run [build flags] [-exec xprog] package [arguments...]",
    	Short:     "compile and run Go program",
    	Long: `
    Run compiles and runs the named main Go package.
    Typically the package is specified as a list of .go source files from a single
    directory, but it may also be an import path, file system path, or pattern
    matching a single known package, as in 'go run .' or 'go run my/cmd'.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/why.go

    each of the listed packages. If the -m flag is given, why treats the
    arguments as a list of modules and finds a path to any package in each
    of the modules.
    
    By default, why queries the graph of packages matched by "go list all",
    which includes tests for reachable packages. The -vendor flag causes why
    to exclude tests of dependencies.
    
    The output is a sequence of stanzas, one for each package or module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/object.go

    // returns the name qualified with the package path.
    func Id(pkg *Package, name string) string {
    	if isExported(name) {
    		return name
    	}
    	// unexported names need the package path for differentiation
    	// (if there's no package, make sure we don't start with '.'
    	// as that may change the order of methods between a setup
    	// inside a package and outside a package - which breaks some
    	// tests)
    	path := "_"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top