Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 837 for provider (0.25 sec)

  1. src/cmd/compile/internal/types2/instantiate.go

    		}
    	}
    
    	inst := (*Checker)(nil).instance(nopos, orig_, targs, nil, ctxt)
    	return inst, nil
    }
    
    // instance instantiates the given original (generic) function or type with the
    // provided type arguments and returns the resulting instance. If an identical
    // instance exists already in the given contexts, it returns that instance,
    // otherwise it creates a new one.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    	const (
    		resolved modFlags = 1 << iota // version resolved by 'go get'
    		named                         // explicitly named on command line or provides a named package
    		hasPkg                        // needed to build named packages
    		direct                        // provides a direct dependency of the main module
    	)
    	relevantMods := make(map[module.Version]modFlags)
    	for path, reason := range r.resolvedVersion {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/pass.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 May 24 01:26:58 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_patterns.txt

    env GO111MODULE=on
    [short] skip
    
    # If a pattern doesn't match any packages provided by modules
    # in the build list, we assume the pattern matches a single module
    # whose path is a prefix of the part of the pattern before "...".
    cp go.mod.orig go.mod
    go get rsc.io/quote/...
    grep 'require rsc.io/quote' go.mod
    
    cp go.mod.orig go.mod
    ! go get rsc.io/quote/x...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. src/go/printer/example_test.go

    	// this function, with position information referring to the
    	// file set fset.
    	funcAST, fset := parseFunc("example_test.go", "printSelf")
    
    	// Print the function body into buffer buf.
    	// The file set is provided to the printer so that it knows
    	// about the original source formatting and can add additional
    	// line breaks where they were present in the source.
    	var buf bytes.Buffer
    	printer.Fprint(&buf, fset, funcAST.Body)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:55:02 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. test/typeparam/issue50690a.go

    type Numeric interface {
    	~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 |
    		~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~float32 | ~float64 |
    		~complex64 | ~complex128
    }
    
    // Sum returns the sum of the provided arguments.
    func Sum[T Numeric](args ...T) T {
    	var sum T
    	for i := 0; i < len(args); i++ {
    		sum += args[i]
    	}
    	return sum
    }
    
    // Ledger is an identifiable, financial record.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/sparsetree.go

    		n := &t[b.ID]
    		if p := parentOf[b.ID]; p != nil {
    			n.parent = p
    			n.sibling = t[p.ID].child
    			t[p.ID].child = b
    		}
    	}
    	t.numberBlock(f.Entry, 1)
    	return t
    }
    
    // treestructure provides a string description of the dominator
    // tree and flow structure of block b and all blocks that it
    // dominates.
    func (t SparseTree) treestructure(b *Block) string {
    	return t.treestructure1(b, 0)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  8. doc/asm.html

    <a href="https://9p.io/sys/doc/asm.html">elsewhere</a>.
    If you plan to write assembly language, you should read that document although much of it is Plan 9-specific.
    The current document provides a summary of the syntax and the differences with
    what is explained in that document, and
    describes the peculiarities that apply when writing assembly code to interact with Go.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  9. src/crypto/x509/internal/macos/corefoundation.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build darwin
    
    // Package macOS provides cgo-less wrappers for Core Foundation and
    // Security.framework, similarly to how package syscall provides access to
    // libSystem.dylib.
    package macOS
    
    import (
    	"bytes"
    	"errors"
    	"internal/abi"
    	"runtime"
    	"time"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/named_test.go

    type T struct{}
    
    func (T) a() {}
    func (T) c() {}
    func (T) b() {}
    `
    	// should get the same method order each time
    	var methods []string
    	for i := 0; i < 5; i++ {
    		// collect T methods as provided in src
    		pkg := mustTypecheck(src, nil, nil)
    		T := pkg.Scope().Lookup("T").Type().(*Named)
    
    		// add a few more methods manually
    		for _, name := range []string{"foo", "bar", "bal"} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 21:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top