Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for unrenamed (0.2 sec)

  1. src/testing/testing.go

    		// entirely possible to get output like AABBBA. The same problem
    		// happens inside the operating system kernel if we switch to
    		// blocking I/O on the pipe. This interleaved output can do things
    		// like print unrelated messages in the middle of a TestFoo line,
    		// which confuses test2json. Setting os.Stderr = os.Stdout will make
    		// them share a single pfd, which will hold a lock for each program
    		// write, preventing any interleaving.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	}
    	// length is family (uint16), name, NUL.
    	sl := int32(2)
    	if n > 0 {
    		sl += int32(n) + 1
    	}
    	if sa.raw.Path[0] == '@' || (sa.raw.Path[0] == 0 && sl > 3) {
    		// Check sl > 3 so we don't change unnamed socket behavior.
    		sa.raw.Path[0] = 0
    		// Don't count trailing NUL for abstract address.
    		sl--
    	}
    
    	return unsafe.Pointer(&sa.raw), sl, nil
    }
    
    type RawSockaddrBth struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	}
    	// length is family (uint16), name, NUL.
    	sl := _Socklen(2)
    	if n > 0 {
    		sl += _Socklen(n) + 1
    	}
    	if sa.raw.Path[0] == '@' || (sa.raw.Path[0] == 0 && sl > 3) {
    		// Check sl > 3 so we don't change unnamed socket behavior.
    		sa.raw.Path[0] = 0
    		// Don't count trailing NUL for abstract address.
    		sl--
    	}
    
    	return unsafe.Pointer(&sa.raw), sl, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// won't be calling it too much.
    	ask := alignUp(npage, pallocChunkPages) * pageSize
    
    	totalGrowth := uintptr(0)
    	// This may overflow because ask could be very large
    	// and is otherwise unrelated to h.curArena.base.
    	end := h.curArena.base + ask
    	nBase := alignUp(end, physPageSize)
    	if nBase > h.curArena.end || /* overflow */ end < h.curArena.base {
    		// Not enough room in the current arena. Allocate more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    			// If the roots are still changing, they may turn out to specify a
    			// requirement on the missing package(s), and we would rather use a
    			// version specified by a new root than add a new dependency on an
    			// unrelated version.
    			continue
    		}
    
    		if !ld.ResolveMissingImports || (!HasModRoot() && !allowMissingModuleImports) {
    			// We've loaded as much as we can without resolving missing imports.
    			break
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    	TLSHandshakeTimeout time.Duration
    
    	// DisableKeepAlives, if true, disables HTTP keep-alives and
    	// will only use the connection to the server for a single
    	// HTTP request.
    	//
    	// This is unrelated to the similarly named TCP keep-alives.
    	DisableKeepAlives bool
    
    	// DisableCompression, if true, prevents the Transport from
    	// requesting compression with an "Accept-Encoding: gzip"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    		panic("too many symbols")
    	}
    	addToGlobal := func() {
    		l.objSyms = append(l.objSyms, objSym{r.objidx, li})
    	}
    	if name == "" && kind != hashed64Def && kind != hashedDef {
    		addToGlobal()
    		return i // unnamed aux symbol
    	}
    	if ver == r.version {
    		// Static symbol. Add its global index but don't
    		// add to name lookup table, as it cannot be
    		// referenced by name.
    		addToGlobal()
    		return i
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    	case *dwarf.StructType:
    		// Convert to Go struct, being careful about alignment.
    		// Have to give it a name to simulate C "struct foo" references.
    		tag := dt.StructName
    		if dt.ByteSize < 0 && tag == "" { // opaque unnamed struct - should not be possible
    			break
    		}
    		if tag == "" {
    			tag = anonymousStructTag[dt]
    			if tag == "" {
    				tag = "__" + strconv.Itoa(tagGen)
    				tagGen++
    				anonymousStructTag[dt] = tag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top