Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 89 for provider (0.79 sec)

  1. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package driver provides an external entry point to the pprof driver.
    package driver
    
    import (
    	"io"
    	"net/http"
    	"regexp"
    	"time"
    
    	internaldriver "github.com/google/pprof/internal/driver"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/hashes.go

    // Copyright 2014 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 sha3
    
    // This file provides functions for creating instances of the SHA-3
    // and SHAKE hash functions, as well as utility functions for hashing
    // bytes.
    
    import (
    	"hash"
    )
    
    // New224 creates a new SHA3-224 hash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/boring.go

    	}
    	sig.BoringCrypto()
    }
    
    // Unreachable marks code that should be unreachable
    // when BoringCrypto is in use. It panics.
    func Unreachable() {
    	panic("boringcrypto: invalid code execution")
    }
    
    // provided by runtime to avoid os import.
    func runtime_arg0() string
    
    // UnreachableExceptTests marks code that should be unreachable
    // when BoringCrypto is in use. It panics.
    func UnreachableExceptTests() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/internal/goexperiment/flags.go

    	// to the outside world.
    	Arenas bool
    
    	// CgoCheck2 enables an expensive cgo rule checker.
    	// When this experiment is enabled, cgo rule checks occur regardless
    	// of the GODEBUG=cgocheck setting provided at runtime.
    	CgoCheck2 bool
    
    	// LoopVar changes loop semantics so that each iteration gets its own
    	// copy of the iteration variable.
    	LoopVar bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_tidy_compat_added.txt

    # When we run 'go mod tidy -e', we should proceed past the first error and follow
    # it with a second error describing the version discrepancy.
    #
    # We should not provide advice on how to push past the version discrepancy,
    # because the '-e' flag should already do that, writing out an otherwise-tidied
    # go.mod file.
    
    go mod tidy -e
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sync/semaphore/semaphore.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 semaphore provides a weighted semaphore implementation.
    package semaphore // import "golang.org/x/sync/semaphore"
    
    import (
    	"container/list"
    	"context"
    	"sync"
    )
    
    type waiter struct {
    	n     int64
    	ready chan<- struct{} // Closed when semaphore acquired.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/link/internal/sym/symkind.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: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. src/runtime/tracestatus.go

    	}
    
    	// Trace any special ranges that are in-progress.
    	if markAssist {
    		w = w.event(traceEvGCMarkAssistActive, traceArg(goid))
    	}
    	return w
    }
    
    // writeProcStatusForP emits a ProcStatus event for the provided p based on its status.
    //
    // The caller must fully own pp and it must be prevented from transitioning (e.g. this can be
    // called by a forEachP callback or from a STW).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/crypto/aes/block.go

    //	@author Antoon Bosselaers <******@****.***>
    //	@author Paulo Barreto <******@****.***>
    //
    //	This code is hereby placed in the public domain.
    //
    //	THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS
    //	OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    //	WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top