Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 5,707 for Packaged (0.24 sec)

  1. doc/godebug.md

    The defaults that will be compiled into a main package
    are reported by the command:
    
    {{raw `
    	go list -f '{{.DefaultGODEBUG}}' my/main/package
    `}}
    
    Only differences from the base Go toolchain defaults are reported.
    
    When testing a package, `//go:debug` lines in the `*_test.go`
    files are treated as directives for the test's main package.
    In any other context, `//go:debug` lines are ignored by the toolchain;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. src/go/types/check_test.go

    	return (*string)(v.FieldByName(name).Addr().UnsafePointer())
    }
    
    // TestManual is for manual testing of a package - either provided
    // as a list of filenames belonging to the package, or a directory
    // name containing the package files - after the test arguments
    // (and a separating "--"). For instance, to test the package made
    // of the files foo.go and bar.go, use:
    //
    //	go test -run Manual -- foo.go bar.go
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/abi.go

    		// ABIInternal, since they may be referenced from
    		// other packages.
    		fn.ABIRefs.Set(obj.ABIInternal, true)
    
    		// If a symbol is defined in this package (either in
    		// Go or assembly) and given a linkname, it may be
    		// referenced from another package, so make it
    		// callable via any ABI. It's important that we know
    		// it's defined in this package since other packages
    		// may "pull" symbols using linkname and we don't want
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/go/parser/parser_test.go

    func TestIssue9979(t *testing.T) {
    	for _, src := range []string{
    		"package p; func f() {;}",
    		"package p; func f() {L:}",
    		"package p; func f() {L:;}",
    		"package p; func f() {L:\n}",
    		"package p; func f() {L:\n;}",
    		"package p; func f() { ; }",
    		"package p; func f() { L: }",
    		"package p; func f() { L: ; }",
    		"package p; func f() { L: \n}",
    		"package p; func f() { L: \n; }",
    	} {
    		fset := token.NewFileSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  5. hack/lib/golang.sh

    # Creates a dummy unit test on disk in the source directory for the given package.
    # This unit test will invoke the package's standard entry point when run.
    kube::golang::create_coverage_dummy_test() {
      local package="$1"
      local name
      name="$(basename "${package}")"
      cat <<EOF > "$(kube::golang::path_for_coverage_dummy_test "${package}")"
    package main
    import (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  6. src/go/ast/ast.go

    	}
    	return f.Name.End()
    }
    
    // A Package node represents a set of source files
    // collectively building a Go package.
    //
    // Deprecated: use the type checker [go/types] instead; see [Object].
    type Package struct {
    	Name    string             // package name
    	Scope   *Scope             // package scope across all files
    	Imports map[string]*Object // map of package id -> package object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  7. src/context/context.go

    	// Context.Value. A key can be any type that supports equality;
    	// packages should define keys as an unexported type to avoid
    	// collisions.
    	//
    	// Packages that define a Context key should provide type-safe accessors
    	// for the values stored using that key:
    	//
    	// 	// Package user defines a User type that's stored in Contexts.
    	// 	package user
    	//
    	// 	import "context"
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/iimport.go

    	}
    
    	for _, typ := range p.interfaceList {
    		typ.Complete()
    	}
    
    	// record all referenced packages as imports
    	list := append(([]*types.Package)(nil), pkgList[1:]...)
    	slices.SortFunc(list, func(a, b *types.Package) int {
    		return strings.Compare(a.Path(), b.Path())
    	})
    	localpkg.SetImports(list)
    
    	// package was imported completely and without errors
    	localpkg.MarkComplete()
    	return localpkg, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. src/net/smtp/smtp.go

    // license that can be found in the LICENSE file.
    
    // Package smtp implements the Simple Mail Transfer Protocol as defined in RFC 5321.
    // It also implements the following extensions:
    //
    //	8BITMIME  RFC 1652
    //	AUTH      RFC 2554
    //	STARTTLS  RFC 3207
    //
    // Additional extensions may be handled by clients.
    //
    // The smtp package is frozen and is not accepting new features.
    // Some external packages provide more functionality. See:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

         * @param parent The parent realm for the new realm, may be {@code null}.
         * @param parentImports The packages/types to import from the parent realm, may be {@code null}.
         * @param foreignImports The packages/types to import from foreign realms, may be {@code null}.
         * @param artifacts The artifacts to add to the realm, may be {@code null}. Unresolved artifacts (i.e. with a
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top