Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 153 for Ordinary (0.19 sec)

  1. src/internal/abi/type.go

    	TraceArgsStartAgg       = 0xfe
    	TraceArgsEndAgg         = 0xfd
    	TraceArgsDotdotdot      = 0xfc
    	TraceArgsOffsetTooLarge = 0xfb
    	TraceArgsSpecial        = 0xf0 // above this are operators, below this are ordinary offsets
    )
    
    // MaxPtrmaskBytes is the maximum length of a GC ptrmask bitmap,
    // which holds 1-bit entries describing where pointers are in a given type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    // Copyright 2009,2010 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.
    
    // Darwin system calls.
    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and wrap
    // it in our own nicer implementation, either here or in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/named.go

    func (t *Named) NumMethods() int {
    	return len(t.Origin().resolve().methods)
    }
    
    // Method returns the i'th method of named type t for 0 <= i < t.NumMethods().
    //
    // For an ordinary or instantiated type t, the receiver base type of this
    // method is the named type t. For an uninstantiated generic type t, each
    // method receiver is instantiated with its receiver type parameters.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/compress/flate/deflate_test.go

    	}
    	if buf.buf.Len() != 0 {
    		t.Errorf("testSync (%d, %d, %s): extra data at end", level, len(input), name)
    	}
    	r.Close()
    
    	// stream should work for ordinary reader too
    	r = NewReader(buf1)
    	out, err = io.ReadAll(r)
    	if err != nil {
    		t.Errorf("testSync: read: %s", err)
    		return
    	}
    	r.Close()
    	if !bytes.Equal(input, out) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/ByteStreams.java

       *       then sequentially accessing it could result in other processes dying. This is solvable
       *       via madvise(2), but that obviously doesn't exist in java.
       *   <li>Ordinary copy. Kernel copies bytes into a kernel buffer, from a kernel buffer into a
       *       userspace buffer (byte[] or ByteBuffer), then copies them from that buffer into the
       *       destination channel.
       * </ol>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/resolver.go

    		}
    		imp = NewPackage("C", "C")
    		imp.fake = true // package scope is not populated
    		imp.cgo = check.conf.go115UsesCgo
    	} else {
    		// ordinary import
    		var err error
    		if importer := check.conf.Importer; importer == nil {
    			err = fmt.Errorf("Config.Importer not installed")
    		} else if importerFrom, ok := importer.(ImporterFrom); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/go/types/named.go

    func (t *Named) NumMethods() int {
    	return len(t.Origin().resolve().methods)
    }
    
    // Method returns the i'th method of named type t for 0 <= i < t.NumMethods().
    //
    // For an ordinary or instantiated type t, the receiver base type of this
    // method is the named type t. For an uninstantiated generic type t, each
    // method receiver is instantiated with its receiver type parameters.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. src/go/types/resolver.go

    		}
    		imp = NewPackage("C", "C")
    		imp.fake = true // package scope is not populated
    		imp.cgo = check.conf.go115UsesCgo
    	} else {
    		// ordinary import
    		var err error
    		if importer := check.conf.Importer; importer == nil {
    			err = fmt.Errorf("Config.Importer not installed")
    		} else if importerFrom, ok := importer.(ImporterFrom); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. src/go/doc/reader.go

    		}
    		// If there is exactly one result type,
    		// associate the function with that type.
    		if numResultTypes == 1 {
    			typ.funcs.set(fun, r.mode&PreserveAST != 0)
    			return
    		}
    	}
    
    	// just an ordinary function
    	r.funcs.set(fun, r.mode&PreserveAST != 0)
    }
    
    // lookupTypeParam searches for type parameters named name within the tparams
    // field list, returning the relevant identifier if found, or nil if not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. src/go/types/builtins.go

    	//       all arguments.
    	if id == _Len || id == _Cap {
    		defer func(b bool) {
    			check.hasCallOrRecv = b
    		}(check.hasCallOrRecv)
    		check.hasCallOrRecv = false
    	}
    
    	// Evaluate arguments for built-ins that use ordinary (value) arguments.
    	// For built-ins with special argument handling (make, new, etc.),
    	// evaluation is done by the respective built-in code.
    	var args []*operand // not valid for _Make, _New, _Offsetof, _Trace
    	var nargs int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top