Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for Implementation (0.15 sec)

  1. src/cmd/dist/test.go

    			&goTest{
    				variant: "osusergo",
    				timeout: 300 * time.Second,
    				tags:    []string{"osusergo"},
    				pkg:     "os/user",
    			})
    		t.registerTest("hash/maphash purego implementation",
    			&goTest{
    				variant: "purego",
    				timeout: 300 * time.Second,
    				tags:    []string{"purego"},
    				pkg:     "hash/maphash",
    			})
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	defer c.watchCache.RUnlock()
    
    	var cacheInterval *watchCacheInterval
    	cacheInterval, err = c.watchCache.getAllEventsSinceLocked(requiredResourceVersion, key, opts)
    	if err != nil {
    		// To match the uncached watch implementation, once we have passed authn/authz/admission,
    		// and successfully parsed a resource version, other errors must fail with a watch event of type ERROR,
    		// rather than a directly returned error.
    		return newErrWatcher(err), nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys TimeBeginPeriod (period uint32) (err error) [failretval != 0] = winmm.timeBeginPeriod
    //sys TimeEndPeriod (period uint32) (err error) [failretval != 0] = winmm.timeEndPeriod
    
    // syscall interface implementation for other packages
    
    // GetCurrentProcess returns the handle for the current process.
    // It is a pseudo handle that does not need to be closed.
    // The returned error is always nil.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	}
    
    	d.Type = uint8(st.Mode >> 24)
    	return d, err
    }
    
    func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
    	// Simulation of Getdirentries port from the Darwin implementation.
    	// COMMENTS FROM DARWIN:
    	// It's not the full required semantics, but should handle the case
    	// of calling Getdirentries or ReadDirent repeatedly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  5. src/go/printer/nodes.go

    		return lit
    	}
    	s, err := strconv.Unquote(lit.Value)
    	if err != nil {
    		return lit
    	}
    
    	// if the string is an invalid path, return whatever we have
    	//
    	// spec: "Implementation restriction: A compiler may restrict
    	// ImportPaths to non-empty strings using only characters belonging
    	// to Unicode's L, M, N, P, and S general categories (the Graphic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    	c.globalsScan.Add(amount)
    }
    
    // heapGoal returns the current heap goal.
    func (c *gcControllerState) heapGoal() uint64 {
    	goal, _ := c.heapGoalInternal()
    	return goal
    }
    
    // heapGoalInternal is the implementation of heapGoal which returns additional
    // information that is necessary for computing the trigger.
    //
    // The returned minTrigger is always <= goal.
    func (c *gcControllerState) heapGoalInternal() (goal, minTrigger uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	// unmarshal to create the message. If the message was not produced by
    	// unmarshal, it should return nil.
    	originalBytes() []byte
    }
    
    // lruSessionCache is a ClientSessionCache implementation that uses an LRU
    // caching strategy.
    type lruSessionCache struct {
    	sync.Mutex
    
    	m        map[string]*list.Element
    	q        *list.List
    	capacity int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. src/net/http/fs_test.go

    	// but has been observed enough in the world that we don't want to break it.
    	//
    	// The server is setting "Content-Encoding: gzip",
    	// wrapping the ResponseWriter in an implementation which gzips data written to it,
    	// and passing this ResponseWriter to ServeFile.
    	//
    	// This means ServeFile cannot properly set a Content-Length header, because it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  9. src/go/build/build.go

    	// whether dir exists.
    	// If so, HasSubdir sets rel to a slash-separated path that
    	// can be joined to root to produce a path equivalent to dir.
    	// If HasSubdir is nil, Import uses an implementation built on
    	// filepath.EvalSymlinks.
    	HasSubdir func(root, dir string) (rel string, ok bool)
    
    	// ReadDir returns a slice of fs.FileInfo, sorted by Name,
    	// describing the content of the named directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/runtime/map.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 runtime
    
    // This file contains the implementation of Go's map type.
    //
    // A map is just a hash table. The data is arranged
    // into an array of buckets. Each bucket contains up to
    // 8 key/elem pairs. The low-order bits of the hash are
    // used to select a bucket. Each bucket contains a few
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top