Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for original (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sys	openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err error) = SYS_OPEN_BY_HANDLE_AT
    
    // fileHandle is the argument to nameToHandleAt and openByHandleAt. We
    // originally tried to generate it via unix/linux/types.go with "type
    // fileHandle C.struct_file_handle" but that generated empty structs
    // for mips64 and mips64le. Instead, hard code it for now (it's the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. src/go/printer/nodes.go

    	}
    	p.exprList(token.NoPos, xlist, 1, mode, token.NoPos, false)
    }
    
    const filteredMsg = "contains filtered or unexported fields"
    
    // Print a list of expressions. If the list spans multiple
    // source lines, the original line breaks are respected between
    // expressions.
    //
    // TODO(gri) Consider rewriting this to be independent of []ast.Expr
    // so that we can use the algorithm for any kind of list
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse.go

    	t := s
    
    	// Check for named captures, first introduced in Python's regexp library.
    	// As usual, there are three slightly different syntaxes:
    	//
    	//   (?P<name>expr)   the original, introduced by Python
    	//   (?<name>expr)    the .NET alteration, adopted by Perl 5.10
    	//   (?'name'expr)    another .NET alteration, adopted by Perl 5.10
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    // where we do symbol name mangling, the Go object file may have reference to
    // the original symbol name whereas the shared library provides a symbol with
    // the mangled name. When we do mangling, we copy payload of mangled to original.
    func (l *Loader) CopySym(src, dst Sym) {
    	if !l.IsExternal(dst) {
    		panic("dst is not external") //l.newExtSym(l.SymName(dst), l.SymVersion(dst))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. src/net/dnsclient_unix_test.go

    			t.Errorf("%s: address doesn't match expectation. got %v, want %v", name, got, want)
    		}
    	}
    }
    
    // Issue 12712.
    // When using search domains, return the error encountered
    // querying the original name instead of an error encountered
    // querying a generated name.
    func TestErrorForOriginalNameWhenSearching(t *testing.T) {
    	defer dnsWaitGroup.Wait()
    
    	const fqdn = "doesnotexist.domain"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/debug/elf/file_test.go

    // equal to 65280 (0xff00) sections.
    func TestLargeNumberOfSections(t *testing.T) {
    	// A file with >= 0xff00 sections is too big, so we will construct it on the
    	// fly. The original file "y.o" is generated by these commands:
    	// 1. generate "y.c":
    	//   for i in `seq 1 65288`; do
    	//     printf -v x "%04x" i;
    	//     echo "int var_$x __attribute__((section(\"section_$x\"))) = $i;"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer.go

    		// heap goal, and that's twice the heap goal (i.e. if GOGC=100 and the heap and/or
    		// stacks and/or globals grow to twice their size, this limits the current GC cycle's
    		// growth to 4x the original live heap's size).
    		//
    		// This maintains the invariant that we use no more memory than the next GC cycle
    		// will anyway.
    		hardGoal := int64((1.0 + float64(gcPercent)/100.0) * float64(heapGoal))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    	fmt.Fprintf(fm, "void _cgo_reginit(void) { }\n")
    
    	// Write second Go output: definitions of _C_xxx.
    	// In a separate file so that the import of "unsafe" does not
    	// pollute the original file.
    	fmt.Fprintf(fgo2, "// Code generated by cmd/cgo; DO NOT EDIT.\n\n")
    	fmt.Fprintf(fgo2, "package %s\n\n", p.PackageName)
    	fmt.Fprintf(fgo2, "import \"unsafe\"\n\n")
    	if *importSyscall {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/runtime/map.go

    				typedmemmove(t.Key, kStore, srcK)
    				srcK = kStore
    			}
    			// Note: if NeedKeyUpdate is false, then the memory
    			// used to store the key is immutable, so we can share
    			// it between the original map and its clone.
    			*(*unsafe.Pointer)(dstK) = srcK
    		} else {
    			typedmemmove(t.Key, dstK, srcK)
    		}
    		if t.IndirectElem() {
    			srcEle = *(*unsafe.Pointer)(srcEle)
    			eStore := newobject(t.Elem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/loong64/asm.go

    				prev.Link = q
    				q.Link = p
    				q.Pc = pc
    				q.As = obj.APCALIGN
    				q.From.Type = obj.TYPE_CONST
    				q.From.Offset = loopAlign
    				// Don't associate the synthesized PCALIGN with
    				// the original source position, for deterministic
    				// mapping between source and corresponding asm.
    				// q.Pos = p.Pos
    
    				// Manually make the PCALIGN come into effect,
    				// since this loop iteration is for p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
Back to top