Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 202 for Implementation (0.15 sec)

  1. src/internal/coverage/cfile/emit.go

    			funcId := sd[i+coverage.FuncIdOffset].Load()
    			cst := i + coverage.FirstCtrOffset
    			counters := sd[cst : cst+int(nCtrs)]
    
    			// Check to make sure that we have at least one live
    			// counter. See the implementation note in ClearCoverageCounters
    			// for a description of why this is needed.
    			isLive := false
    			for i := 0; i < len(counters); i++ {
    				if counters[i].Load() != 0 {
    					isLive = true
    					break
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. src/runtime/debuglog.go

    // finish the message.
    //
    // dlog can be used from highly-constrained corners of the runtime: it
    // is safe to use in the signal handler, from within the write
    // barrier, from within the stack implementation, and in places that
    // must be recursively nosplit.
    //
    // This will be compiled away if built without the debuglog build tag.
    // However, argument construction may not be. If any of the arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. src/time/zoneinfo.go

    		}
    	}
    
    	return
    }
    
    // lookupFirstZone returns the index of the time zone to use for times
    // before the first transition time, or when there are no transition
    // times.
    //
    // The reference implementation in localtime.c from
    // https://www.iana.org/time-zones/repository/releases/tzcode2013g.tar.gz
    // implements the following algorithm for these cases:
    //  1. If the first zone is unused by the transitions, use it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/go/build/deps_test.go

    	< go/importer;
    
    	NET, crypto/rand, mime/quotedprintable
    	< mime/multipart;
    
    	crypto/tls
    	< net/smtp;
    
    	crypto/rand
    	< hash/maphash; # for purego implementation
    
    	# HTTP, King of Dependencies.
    
    	FMT
    	< golang.org/x/net/http2/hpack
    	< net/http/internal, net/http/internal/ascii, net/http/internal/testcert;
    
    	FMT, NET, container/list, encoding/binary, log
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    	// a data record for each tile (len(data) == len(tiles))
    	// and each data record must be the correct length
    	// (len(data[i]) == tiles[i].W*HashSize).
    	//
    	// An implementation of ReadTiles typically reads
    	// them from an on-disk cache or else from a remote
    	// tile server. Tile data downloaded from a server should
    	// be considered suspect and not saved into a persistent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. src/os/file_unix.go

    		sigpipe()
    	}
    }
    
    // DevNull is the name of the operating system's “null device.”
    // On Unix-like systems, it is "/dev/null"; on Windows, "NUL".
    const DevNull = "/dev/null"
    
    // openFileNolog is the Unix implementation of OpenFile.
    // Changes here should be reflected in openDirAt and openDirNolog, if relevant.
    func openFileNolog(name string, flag int, perm FileMode) (*File, error) {
    	setSticky := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/net/tcpsock.go

    func TCPAddrFromAddrPort(addr netip.AddrPort) *TCPAddr {
    	return &TCPAddr{
    		IP:   addr.Addr().AsSlice(),
    		Zone: addr.Addr().Zone(),
    		Port: int(addr.Port()),
    	}
    }
    
    // TCPConn is an implementation of the [Conn] interface for TCP network
    // connections.
    type TCPConn struct {
    	conn
    }
    
    // KeepAliveConfig contains TCP keep-alive options.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/runtime/select.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 runtime
    
    // This file contains the implementation of Go select statements.
    
    import (
    	"internal/abi"
    	"unsafe"
    )
    
    const debugSelect = false
    
    // Select case descriptor.
    // Known to compiler.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/lookup.go

    			if _, ok := obj.(*Var); !ok {
    				obj, index, indirect = nil, nil, false // accept fields (variables) only
    			}
    		}
    	}
    	return
    }
    
    // lookupFieldOrMethodImpl is the implementation of lookupFieldOrMethod.
    // Notably, in contrast to lookupFieldOrMethod, it won't find struct fields
    // in base types of defined (*Named) pointer types T. For instance, given
    // the declaration:
    //
    //	type T *struct{f int}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. src/go/types/lookup.go

    			if _, ok := obj.(*Var); !ok {
    				obj, index, indirect = nil, nil, false // accept fields (variables) only
    			}
    		}
    	}
    	return
    }
    
    // lookupFieldOrMethodImpl is the implementation of lookupFieldOrMethod.
    // Notably, in contrast to lookupFieldOrMethod, it won't find struct fields
    // in base types of defined (*Named) pointer types T. For instance, given
    // the declaration:
    //
    //	type T *struct{f int}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top