Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 515 for Packaged (0.16 sec)

  1. src/cmd/dist/build.go

    	// dir = full path to pkg.
    	dir := pathf("%s/src/%s", goroot, pkg)
    	name := filepath.Base(dir)
    
    	// ispkg predicts whether the package should be linked as a binary, based
    	// on the name. There should be no "main" packages in vendor, since
    	// 'go mod vendor' will only copy imported packages there.
    	ispkg := !strings.HasPrefix(pkg, "cmd/") || strings.Contains(pkg, "/internal/") || strings.Contains(pkg, "/vendor/")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/runtime/map.go

    		if h.extra != nil {
    			h.extra.oldoverflow = nil
    		}
    		h.flags &^= sameSizeGrow
    	}
    }
    
    // Reflect stubs. Called from ../reflect/asm_*.s
    
    // reflect_makemap is 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/modern-go/reflect2
    //   - github.com/goccy/go-json
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    				// modules, the packages in the "std" module have no import-path prefix.
    				//
    				// Modules named "std" outside of GOROOT/src do not receive this special
    				// treatment, so it is possible to run 'go test .' in other GOROOTs to
    				// test individual packages using a combination of the modified package
    				// and the ordinary standard library.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/cmd/internal/testdir/testdir_test.go

    type goDirPkg struct {
    	name  string
    	files []string
    }
    
    // goDirPackages returns distinct Go packages in dir.
    // If singlefilepkgs is set, each file is considered a separate package
    // even if the package names are the same.
    func goDirPackages(t *testing.T, dir string, singlefilepkgs bool) []*goDirPkg {
    	files, err := goDirFiles(dir)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    		{`package b1; var _ = 0`, `0`, `int`, `0`},
    		{`package b2; var _ = 'A'`, `'A'`, `rune`, `65`},
    		{`package b3; var _ = 0.`, `0.`, `float64`, `0`},
    		{`package b4; var _ = 0i`, `0i`, `complex128`, `(0 + 0i)`},
    		{`package b5; var _ = "foo"`, `"foo"`, `string`, `"foo"`},
    
    		{`package c0a; var _ = bool(false)`, `false`, `bool`, `false`},
    		{`package c0b; var _ = bool(false)`, `bool(false)`, `bool`, `false`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. src/go/types/api_test.go

    		{`package b1; var _ = 0`, `0`, `int`, `0`},
    		{`package b2; var _ = 'A'`, `'A'`, `rune`, `65`},
    		{`package b3; var _ = 0.`, `0.`, `float64`, `0`},
    		{`package b4; var _ = 0i`, `0i`, `complex128`, `(0 + 0i)`},
    		{`package b5; var _ = "foo"`, `"foo"`, `string`, `"foo"`},
    
    		{`package c0a; var _ = bool(false)`, `false`, `bool`, `false`},
    		{`package c0b; var _ = bool(false)`, `bool(false)`, `bool`, `false`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  7. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    String); } org/gradle/wrapper/BootstrapMainStarter.class package org.gradle.wrapper; public synchronized class BootstrapMainStarter { public void BootstrapMainStarter(); public void start(String[], java.io.File) throws Exception; static java.io.File findLauncherJar(java.io.File); } org/gradle/wrapper/Download$1.class package org.gradle.wrapper; synchronized class Download$1 { } org/gradle/wrapper/Download$DefaultDownloadProgr.class package org.gradle.wrapper; synchronized class Download$DefaultDownloadProgr...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  8. .teamcity/.mvn/wrapper/maven-wrapper.jar

    version=0.5.6 groupId=io.takari artifactId=maven-wrapper org/apache/maven/wrapper/BootstrapMainStarter.class package org.apache.maven.wrapper; public synchronized class BootstrapMainStarter { public void BootstrapMainStarter(); public void start(String[], java.io.File) throws Exception; private java.io.File findLauncherJar(java.io.File); } org/apache/maven/wrapper/DefaultDownloader$1.class package org.apache.maven.wrapper; synchronized class DefaultDownloader$1 extends java.net.Authenticator { void D...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 49.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            return name.replace('.', '$');
        }
    
        /**
         * we use ConstructedClassWithPackage to limit the resolving the compiler does when combining package names and class names. The idea that if we use a package, then we do not want to replace the
         * '.' with a '$' for the package part, only for the class name part. There is also the case of a imported class, so this logic can't be done in these cases...
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. src/testing/testing.go

    // The file will be excluded from regular
    // package builds but will be included when the "go test" command is run.
    //
    // The test file can be in the same package as the one being tested,
    // or in a corresponding package with the suffix "_test".
    //
    // If the test file is in the same package, it may refer to unexported
    // identifiers within the package, as in this example:
    //
    //	package abs
    //
    //	import "testing"
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top