Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,666 for append1 (0.18 sec)

  1. test/append1.go

    // Verify that append arguments requirements are enforced by the
    // compiler.
    
    package main
    
    func main() {
    
    	s := make([]int, 8)
    
    	_ = append()           // ERROR "missing arguments to append|not enough arguments for append"
    	_ = append(s...)       // ERROR "cannot use ... on first argument|not enough arguments in call to append"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 22:28:39 UTC 2022
    - 856 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/types.go

    	waitingDigest := make([]debug.RequestDump, 0, q.requestsWaiting.Length())
    	q.requestsWaiting.Walk(func(r *request) bool {
    		waitingDigest = append(waitingDigest, dumpRequest(includeDetails)(r))
    		return true
    	})
    	executingDigest := SetMapReduce(dumpRequest(includeDetails), append1[debug.RequestDump])(q.requestsExecuting)
    
    	sum := q.requestsWaiting.QueueSum()
    	queueSum := debug.QueueSum{
    		InitialSeatsSum: sum.InitialSeatsSum,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. test/escape_reflect.go

    func append1(s []int, x int) []int { // ERROR "leaking param: s$"
    	sv := reflect.ValueOf(s)     // ERROR "s escapes to heap"
    	xv := reflect.ValueOf(x)     // ERROR "x escapes to heap"
    	rv := reflect.Append(sv, xv) // ERROR "... argument does not escape"
    	return rv.Interface().([]int)
    }
    
    // Unfortunate: s doesn't need escape, only leak to result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/builtins0.go

    	_ = append(s, "foo"...)
    	_ = append(S(s), "foo" /* ERRORx `cannot use .* in argument to append` */ )
    	_ = append(S(s), "foo"...)
    	_ = append(s, t /* ERROR "cannot use t" */ )
    	_ = append(s, t...)
    	_ = append(s, T("foo")...)
    	_ = append(S(s), t /* ERROR "cannot use t" */ )
    	_ = append(S(s), t...)
    	_ = append(S(s), T("foo")...)
    	_ = append([]string{}, t /* ERROR "cannot use t" */ , "foo")
    	_ = append([]T{}, t, "foo")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    	defer qs.lock.Unlock()
    	d := debug.QueueSetDump{
    		Queues:                     make([]debug.QueueDump, len(qs.queues)),
    		QueuelessExecutingRequests: SetMapReduce(dumpRequest(includeRequestDetails), append1[debug.RequestDump])(qs.requestsExecutingSet),
    		Waiting:                    qs.totRequestsWaiting,
    		Executing:                  qs.totRequestsExecuting,
    		SeatsInUse:                 qs.totSeatsInUse,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/appends/appends.go

    	"golang.org/x/tools/go/types/typeutil"
    )
    
    //go:embed doc.go
    var doc string
    
    var Analyzer = &analysis.Analyzer{
    	Name:     "appends",
    	Doc:      analysisutil.MustExtractDoc(doc, "appends"),
    	URL:      "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/appends",
    	Requires: []*analysis.Analyzer{inspect.Analyzer},
    	Run:      run,
    }
    
    func run(pass *analysis.Pass) (interface{}, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/vet/testdata/appends/appends.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains tests for the appends checker.
    
    package appends
    
    func AppendsTest() {
    	sli := []string{"a", "b", "c"}
    	sli = append(sli) // ERROR "append with no values"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 20:55:20 UTC 2023
    - 338 bytes
    - Viewed (0)
  8. test/typeparam/append.go

    type Recv <-chan int
    
    type sliceOf[E any] interface {
    	~[]E
    }
    
    func _Append[S sliceOf[T], T any](s S, t ...T) S {
    	return append(s, t...)
    }
    
    func main() {
    	recv := make(Recv)
    	a := _Append([]Recv{recv}, recv)
    	if len(a) != 2 || a[0] != recv || a[1] != recv {
    		panic(a)
    	}
    
    	recv2 := make(chan<- int)
    	a2 := _Append([]chan<- int{recv2}, recv2)
    	if len(a2) != 2 || a2[0] != recv2 || a2[1] != recv2 {
    		panic(a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 597 bytes
    - Viewed (0)
  9. test/append.go

    	{"byte c", append([]byte{}, 0, 1, 2, 3), []byte{0, 1, 2, 3}},
    
    	{"byte d", append([]byte{0, 1, 2}), []byte{0, 1, 2}},
    	{"byte e", append([]byte{0, 1, 2}, 3), []byte{0, 1, 2, 3}},
    	{"byte f", append([]byte{0, 1, 2}, 3, 4, 5), []byte{0, 1, 2, 3, 4, 5}},
    
    	{"byte g", append([]byte{}, []byte{0}...), []byte{0}},
    	{"byte h", append([]byte{}, []byte{0, 1, 2, 3}...), []byte{0, 1, 2, 3}},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 06 04:28:23 UTC 2018
    - 9.1K bytes
    - Viewed (0)
  10. internal/ioutil/append-file_windows.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package ioutil
    
    import (
    	"io"
    	"os"
    
    	"github.com/minio/minio/internal/lock"
    )
    
    // AppendFile - appends the file "src" to the file "dst"
    func AppendFile(dst string, src string, osync bool) error {
    	appendFile, err := lock.Open(dst, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0o666)
    	if err != nil {
    		return err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top