Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 837 for provider (0.1 sec)

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

    ! go mod vendor
    ! stderr 'package nonexist is not in std'
    stderr '^go: issue27063 imports\n\tnonexist.example.com: no required module provides package nonexist.example.com; to add it:\n\tgo get nonexist.example.com$'
    stderr '^go: issue27063 imports\n\tissue27063/other imports\n\tother.example.com/nonexist: no required module provides package other.example.com/nonexist; to add it:\n\tgo get other.example.com/nonexist$'
    
    -- go.mod --
    module issue27063
    
    go 1.13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/trace/gstate.go

    	startCause struct {
    		time     trace.Time
    		name     string
    		resource uint64
    		stack    trace.Stack
    	}
    }
    
    // newGState constructs a new goroutine state for the goroutine
    // identified by the provided ID.
    func newGState[R resource](goID trace.GoID) *gState[R] {
    	return &gState[R]{
    		baseName:     fmt.Sprintf("G%d", goID),
    		executing:    R(noResource),
    		activeRanges: make(map[string]activeRange),
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/registry/value.go

    // byte count n. If buf is too small to fit the stored value it returns
    // ErrShortBuffer error along with the required buffer size n.
    // If no buffer is provided, it returns true and actual buffer size n.
    // If no buffer is provided, GetValue returns the value's type only.
    // If the value does not exist, the error returned is ErrNotExist.
    //
    // GetValue is a low level function. If value's type is known, use the appropriate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. src/sync/atomic/type.go

    // And atomically performs a bitwise AND operation on x using the bitmask
    // provided as mask and returns the old value.
    func (x *Int32) And(mask int32) (old int32) { return AndInt32(&x.v, mask) }
    
    // Or atomically performs a bitwise OR operation on x using the bitmask
    // provided as mask and returns the old value.
    func (x *Int32) Or(mask int32) (old int32) { return OrInt32(&x.v, mask) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/build/LICENSE

    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    copyright notice, this list of conditions and the following disclaimer
    in the documentation and/or other materials provided with the
    distribution.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/internal/trace/base.go

    		return id
    	}
    	t.nextExtra++
    	id := t.nextExtra
    	t.extraStrings = append(t.extraStrings, s)
    	t.extraStringIDs[s] = id
    	return id
    }
    
    // getExtraString returns the extra string for the provided ID.
    // The ID must have been produced by addExtraString for this evTable.
    func (t *evTable) getExtraString(id extraStringID) string {
    	if id == 0 {
    		return ""
    	}
    	return t.extraStrings[id-1]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. src/syscall/asm_openbsd_ppc64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    //
    // System call support for PPC64, OpenBSD
    //
    
    // Provide these function names via assembly so they are provided as ABI0,
    // rather than ABIInternal.
    
    // func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
    TEXT	·Syscall(SB),NOSPLIT,$0-56
    	JMP	·syscallInternal(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. src/go/doc/testdata/testing.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.
    
    // Package testing provides support for automated testing of Go packages.
    // It is intended to be used in concert with the “go test” utility, which automates
    // execution of any function of the form
    //     func TestXxx(*testing.T)
    // where Xxx can be any alphanumeric string (but the first letter must not be in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  9. src/net/textproto/header.go

    	h[CanonicalMIMEHeaderKey(key)] = []string{value}
    }
    
    // Get gets the first value associated with the given key.
    // It is case insensitive; [CanonicalMIMEHeaderKey] is used
    // to canonicalize the provided key.
    // If there are no values associated with the key, Get returns "".
    // To use non-canonical keys, access the map directly.
    func (h MIMEHeader) Get(key string) string {
    	if h == nil {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/crypto/ed25519/ed25519.go

    	xx, ok := x.(PrivateKey)
    	if !ok {
    		return false
    	}
    	return subtle.ConstantTimeCompare(priv, xx) == 1
    }
    
    // Seed returns the private key seed corresponding to priv. It is provided for
    // interoperability with RFC 8032. RFC 8032's private keys correspond to seeds
    // in this package.
    func (priv PrivateKey) Seed() []byte {
    	return bytes.Clone(priv[:SeedSize])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top