Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 754 for provider (0.13 sec)

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

    go generate -run . -skip th..sand './generate/flag.go'
    stdout 'yes' # flag.go should select yes
    ! stdout 'no' # flag.go should not select no
    
    # Test go generate provides the right "$GOPACKAGE" name in an x_test
    go generate './generate/env_test.go'
    stdout 'main_test'
    
    # Test go generate provides the right "$PWD"
    go generate './generate/env_pwd.go'
    stdout $WORK'[/\\]gopath[/\\]src[/\\]generate'
    
    -- echo.go --
    package main
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 03:24:24 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/pkg.go

    	Direct bool // imported directly
    }
    
    // NewPkg returns a new Pkg for the given package path and name.
    // Unless name is the empty string, if the package exists already,
    // the existing package name and the provided name must match.
    func NewPkg(path, name string) *Pkg {
    	if p := pkgMap[path]; p != nil {
    		if name != "" && p.Name != name {
    			panic(fmt.Sprintf("conflicting package names %s and %s for path %q", p.Name, name, path))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:28:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/arm/obj.go

    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. src/log/slog/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Package slog provides structured logging,
    in which log records include a message,
    a severity level, and various other attributes
    expressed as key-value pairs.
    
    It defines a type, [Logger],
    which provides several methods (such as [Logger.Info] and [Logger.Error])
    for reporting events of interest.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_signal2_ios_arm64.c

    // license that can be found in the LICENSE file.
    
    //go:build lldb
    
    // Used by gcc_signal_darwin_arm64.c when doing the test build during cgo.
    // We hope that for real binaries the definition provided by Go will take precedence
    // and the linker will drop this .o file altogether, which is why this definition
    // is all by itself in its own file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 508 bytes
    - Viewed (0)
  6. doc/next/6-stdlib/2-unique.md

    ### New unique package
    
    The new [unique] package provides facilities for
    canonicalizing values (like "interning" or "hash-consing").
    
    Any value of comparable type may be canonicalized with the new
    `Make[T]` function, which produces a reference to a canonical copy of
    the value in the form of a `Handle[T]`.
    Two `Handle[T]` are equal if and only if the values used to produce the
    handles are equal, allowing programs to deduplicate values and reduce
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 566 bytes
    - Viewed (0)
  7. src/syscall/syscall_linux_accept4.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file provides the Accept function used on all systems
    // other than arm. See syscall_linux_accept.go for why.
    
    //go:build linux && !arm
    
    package syscall
    
    func Accept(fd int) (nfd int, sa Sockaddr, err error) {
    	var rsa RawSockaddrAny
    	var len _Socklen = SizeofSockaddrAny
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 16 03:40:42 UTC 2022
    - 592 bytes
    - Viewed (0)
  8. doc/go_mem.html

    a <code>SetFinalizer</code> function that adds a finalizer to be called when
    a particular object is no longer reachable by the program.
    A call to <code>SetFinalizer(x, f)</code> is synchronized before the finalization call <code>f(x)</code>.
    </p>
    
    <h3 id="more">Additional Mechanisms</h3>
    
    <p>
    The <code>sync</code> package provides additional synchronization abstractions,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  9. src/net/http/server.go

    	// WriteHeader sends an HTTP response header with the provided
    	// status code.
    	//
    	// If WriteHeader is not called explicitly, the first call to Write
    	// will trigger an implicit WriteHeader(http.StatusOK).
    	// Thus explicit calls to WriteHeader are mainly used to
    	// send error codes or 1xx informational responses.
    	//
    	// The provided code must be a valid HTTP 1xx-5xx status code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/str/str.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package str provides string manipulation utilities.
    package str
    
    import (
    	"fmt"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // StringList flattens its arguments into a single []string.
    // Each argument in args must have type string or []string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 20:08:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top