Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 488 for Packaged (0.27 sec)

  1. src/net/http/request.go

    	// Deprecated: ErrHeaderTooLong is no longer returned by
    	// anything in the net/http package. Callers should not
    	// compare errors against this variable.
    	ErrHeaderTooLong = &ProtocolError{"header too long"}
    
    	// Deprecated: ErrShortBody is no longer returned by
    	// anything in the net/http package. Callers should not
    	// compare errors against this variable.
    	ErrShortBody = &ProtocolError{"entity body too short"}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. tensorflow/BUILD

    package_group(
        name = "ndarray_tensor_allow_list",
        packages = [
            "//third_party/py/courier/...",
            "//third_party/py/tensorfn/...",
        ],
    )
    
    # Packages that use private types symbols, until they are exported.
    # TODO(b/154650521) Remove.
    # If this is modified, then copy.bara.sky must also be modified.
    package_group(name = "types_allowlist")
    
    # Packages that use StructuredTensors.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/xcoff.go

    			// It doesn't need to know it for each package, one is enough.
    			// currSymSrcFile.csectAux == nil means first package.
    			ldr.SetSymDynid(loader.Sym(sect.Sym), int32(f.symbolCount))
    
    			if sect.Name == ".debug_frame" && ctxt.LinkMode != LinkExternal {
    				// CIE size must be added to the first package.
    				dwsize += 48
    			}
    		}
    
    		f.addSymbol(s)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. staging/publishing/rules.yaml

        - repository: kms
          branch: master
        - repository: component-base
          branch: master
        source:
          branch: master
          dirs:
          - staging/src/k8s.io/sample-apiserver
        required-packages:
        - k8s.io/code-generator
        smoke-test: |
          # assumes GO111MODULE=on
          go build -mod=mod .
      - name: release-1.27
        go: 1.21.11
        dependencies:
        - repository: apimachinery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    	// the host compiler that is not from a package that is known
    	// to support internal linking mode.
    	externalobj = false
    
    	// dynimportfail is a list of packages for which generating
    	// the dynimport file, _cgo_import.go, failed. If there are
    	// any of these objects, we must link externally. Issue 52863.
    	dynimportfail []string
    
    	// preferlinkext is a list of packages for which the Go command
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/type.go

    // be a unique Type object for each unique named (defined) type. After noding, a
    // package-level type can be looked up by building its unique symbol sym (sym =
    // package.Lookup(name)) and checking sym.Def. If sym.Def is non-nil, the type
    // already exists at package scope and is available at sym.Def.(*ir.Name).Type().
    // Local types (which may have the same name as a package-level type) are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    	}
    	return args, err
    }
    
    // Translate rewrites f.AST, the original Go input, to remove
    // references to the imported package C, replacing them with
    // references to the equivalent Go types, functions, and variables.
    func (p *Package) Translate(f *File) {
    	for _, cref := range f.Ref {
    		// Convert C.ulong to C.unsigned long, etc.
    		cref.Name.C = cname(cref.Name.Go)
    	}
    
    	var conv typeConv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    }
    
    // writeExportHeader writes out the start of the _cgo_export.h file.
    func (p *Package) writeExportHeader(fgcch io.Writer) {
    	fmt.Fprintf(fgcch, "/* Code generated by cmd/cgo; DO NOT EDIT. */\n\n")
    	pkg := *importPath
    	if pkg == "" {
    		pkg = p.PackagePath
    	}
    	fmt.Fprintf(fgcch, "/* package %s */\n\n", pkg)
    	fmt.Fprintf(fgcch, "%s\n", builtinExportProlog)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/go/printer/testdata/parser.go

    	if p.trace {
    		defer un(trace(p, "File"))
    	}
    
    	// package clause
    	doc := p.leadComment
    	pos := p.expect(token.PACKAGE)
    	// Go spec: The package clause is not a declaration;
    	// the package name does not appear in any scope.
    	ident := p.parseIdent()
    	if ident.Name == "_" {
    		p.error(p.pos, "invalid package name _")
    	}
    	p.expectSemi()
    
    	var decls []ast.Decl
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    // unfortunate idea that had an even more unfortunate implementation.
    // Every time a new Go release happened, the package stopped building,
    // and the authors had to add a new file with a new //go:build line, and
    // then the entire ecosystem of packages with that as a dependency had to
    // explicitly update to the new version. Many packages depend on
    // assume-no-moving-gc transitively, through paths like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top