Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 182 for Implementation (0.55 sec)

  1. tests/integration/ambient/gateway_conformance_test.go

    					suite.GatewayHTTPConformanceProfileName,
    					suite.GatewayTLSConformanceProfileName,
    					suite.GatewayGRPCConformanceProfileName,
    					suite.MeshHTTPConformanceProfileName,
    				),
    				Implementation: confv1.Implementation{
    					Organization: "istio",
    					Project:      "istio",
    					URL:          "https://istio.io/",
    					Version:      istioVersion,
    					Contact:      []string{"@istio/maintainers"},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/os/user/user.go

    When cgo is available, and the required routines are implemented in libc
    for a particular platform, cgo-based (libc-backed) code is used.
    This can be overridden by using osusergo build tag, which enforces
    the pure Go implementation.
    */
    package user
    
    import (
    	"strconv"
    )
    
    // These may be set to false in init() for a particular platform and/or
    // build flags to let the tests know to skip tests of some features.
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/net/netip/slow_test.go

    	}
    
    	return s, nil
    }
    
    // parseIPv4Slow parses and returns an IPv4 address in dotted quad
    // form, e.g. "192.168.0.1". It is slow but easy to read, and the
    // reference implementation against which we compare faster
    // implementations for correctness.
    func parseIPv4Slow(s string) (Addr, error) {
    	fs := strings.Split(s, ".")
    	if len(fs) != 4 {
    		return Addr{}, fmt.Errorf("netaddr.ParseIP(%q): invalid IP address", s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. tests/integration/pilot/gateway_conformance_test.go

    					suite.GatewayHTTPConformanceProfileName,
    					suite.GatewayTLSConformanceProfileName,
    					suite.GatewayGRPCConformanceProfileName,
    					suite.MeshHTTPConformanceProfileName,
    				),
    				Implementation: confv1.Implementation{
    					Organization: "istio",
    					Project:      "istio",
    					URL:          "https://istio.io/",
    					Version:      istioVersion,
    					Contact:      []string{"@istio/maintainers"},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/runtime/netpoll_stub.go

    		notewakeup(&netpollNote)
    	}
    	unlock(&netpollBrokenLock)
    }
    
    // Polls for ready network connections.
    // Returns list of goroutines that become runnable.
    func netpoll(delay int64) (gList, int32) {
    	// Implementation for platforms that do not support
    	// integrated network poller.
    	if delay != 0 {
    		// This lock ensures that only one goroutine tries to use
    		// the note. It should normally be completely uncontended.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. pkg/volume/util/hostutil/hostutil_windows.go

    func (hu *HostUtil) PathIsDevice(pathname string) (bool, error) {
    	return false, nil
    }
    
    // MakeRShared checks that given path is on a mount with 'rshared' mount
    // propagation. Empty implementation here.
    func (hu *HostUtil) MakeRShared(path string) error {
    	return nil
    }
    
    func isSystemCannotAccessErr(err error) bool {
    	if fserr, ok := err.(*fs.PathError); ok {
    		errno, ok := fserr.Err.(syscall.Errno)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/counter/stackcounter.go

    // requiring, at a minimum, a call to runtime.Callers.
    type StackCounter struct {
    	name  string
    	depth int
    	file  *file
    
    	mu sync.Mutex
    	// as this is a detail of the implementation, it could be replaced
    	// by a more efficient mechanism
    	stacks []stack
    }
    
    type stack struct {
    	pcs     []uintptr
    	counter *Counter
    }
    
    func NewStack(name string, depth int) *StackCounter {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/testing/newcover.go

    // Copyright 2022 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.
    
    // Support for test coverage with redesigned coverage implementation.
    
    package testing
    
    import (
    	"fmt"
    	"internal/goexperiment"
    	"os"
    	_ "unsafe" // for linkname
    )
    
    // cover2 variable stores the current coverage mode and a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/runtime/mem_linux.go

    	if uintptr(v)&(physPageSize-1) != 0 {
    		// The Linux implementation requires that the address
    		// addr be page-aligned, and allows length to be zero.
    		throw("unaligned sysNoHugePageOS")
    	}
    	madvise(v, n, _MADV_NOHUGEPAGE)
    }
    
    func sysHugePageCollapseOS(v unsafe.Pointer, n uintptr) {
    	if uintptr(v)&(physPageSize-1) != 0 {
    		// The Linux implementation requires that the address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. src/sync/map_reference_test.go

    	Range(func(key, value any) (shouldContinue bool))
    	Clear()
    }
    
    var (
    	_ mapInterface = &RWMutexMap{}
    	_ mapInterface = &DeepCopyMap{}
    )
    
    // RWMutexMap is an implementation of mapInterface using a sync.RWMutex.
    type RWMutexMap struct {
    	mu    sync.RWMutex
    	dirty map[any]any
    }
    
    func (m *RWMutexMap) Load(key any) (value any, ok bool) {
    	m.mu.RLock()
    	value, ok = m.dirty[key]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top