Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for newD (0.04 sec)

  1. src/runtime/gc_test.go

    //
    //go:noinline
    func moveStackCheck(t *testing.T, new *int, old uintptr) bool {
    	// new should have been updated by the stack move;
    	// old should not have.
    
    	// Capture new's value before doing anything that could
    	// further move the stack.
    	new2 := uintptr(unsafe.Pointer(new))
    
    	t.Logf("old stack pointer %x, new stack pointer %x", old, new2)
    	if new2 == old {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/go/doc/example.go

    	for _, d := range file.Decls {
    		if f, ok := d.(*ast.FuncDecl); ok && isTest(f.Name.Name, "Example") {
    			// Copy the FuncDecl, as it may be used elsewhere.
    			newF := *f
    			newF.Name = ast.NewIdent("main")
    			newF.Body, comments = stripOutputComment(f.Body, comments)
    			d = &newF
    		}
    		decls = append(decls, d)
    	}
    
    	// Copy the File, as it may be used elsewhere.
    	f := *file
    	f.Name = ast.NewIdent("main")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. src/encoding/gob/type.go

    	if m := typeInfoMapInit; m != nil {
    		m[rt] = info
    		return info, nil
    	}
    
    	// Create new map with old contents plus new entry.
    	m, _ := typeInfoMap.Load().(map[reflect.Type]*typeInfo)
    	newm := make(map[reflect.Type]*typeInfo, len(m))
    	for k, v := range m {
    		newm[k] = v
    	}
    	newm[rt] = info
    	typeInfoMap.Store(newm)
    	return info, nil
    }
    
    // Called only when a panic is acceptable and unexpected.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. operator/pkg/translate/translate_value.go

    			if err != nil {
    				return err
    			}
    			newP := util.PathFromString(outPathTmpl)
    			mapping[newKey] = &Translation{newP[len(newP)-2:].String(), nil}
    		}
    	}
    	t.GatewayKubernetesMapping = gatewayKubernetesMapping{IngressMapping: igwOutputMapping, EgressMapping: egwOutputMapping}
    	return nil
    }
    
    // NewReverseTranslator creates a new ReverseTranslator for minorVersion and returns a ptr to it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. src/runtime/traceruntime.go

    }
    
    // GoCreate emits a GoCreate event.
    func (tl traceLocker) GoCreate(newg *g, pc uintptr, blocked bool) {
    	newg.trace.setStatusTraced(tl.gen)
    	ev := traceEvGoCreate
    	if blocked {
    		ev = traceEvGoCreateBlocked
    	}
    	tl.eventWriter(traceGoRunning, traceProcRunning).commit(ev, traceArg(newg.goid), tl.startPC(pc), tl.stack(2))
    }
    
    // GoStart emits a GoStart event.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/parse.go

    		}
    		if !ok {
    			break
    		}
    	}
    
    	if s.isBlank() {
    		p.trimStack(p.lineDepth + 1)
    		return
    	}
    
    	// Process new prefixes, if any.
    Prefixes:
    	// Start new block inside p.stack[depth].
    	for _, fn := range news {
    		if l, ok := fn(p, s); ok {
    			s = l
    			if s.isBlank() {
    				return
    			}
    			p.lineDepth++
    			goto Prefixes
    		}
    	}
    
    	newPara(p, s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. docs/en/docs/help-fastapi.md

    Then you can try and help them solve those questions.
    
    ## Ask Questions
    
    You can <a href="https://github.com/tiangolo/fastapi/discussions/new?category=questions" class="external-link" target="_blank">create a new question</a> in the GitHub repository, for example to:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/runtime/os_linux.go

    	//
    	// 1. Addition of new Ms to allm in allocm happens before clone of its
    	//    OS thread later in newm.
    	// 2. newm does acquirem to avoid being preempted, ensuring that new Ms
    	//    created in allocm will eventually reach OS thread clone later in
    	//    newm.
    	// 3. We take allocmLock for write here to prevent allocation of new Ms
    	//    while this function runs. Per (1), this prevents clone of OS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

         * Both scenarios are bad: The output Future might never complete, or, if it does complete, it
         * might not run some of its listeners. The likely result is that the app will hang. (And of
         * course stack overflows are bad news in general. For example, we may have overflowed in the
         * middle of defining a class. If so, that class will never be loadable in this process.) The
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/runtime/sys_darwin_amd64.s

    	MOVQ	16(DI), DX		// arg 3 oldp
    	MOVQ	24(DI), CX		// arg 4 oldlenp
    	MOVQ	32(DI), R8		// arg 5 newp
    	MOVQ	40(DI), R9		// arg 6 newlen
    	MOVQ	0(DI), DI		// arg 1 mib
    	CALL	libc_sysctl(SB)
    	RET
    
    TEXT runtime·sysctlbyname_trampoline(SB),NOSPLIT,$0
    	MOVQ	8(DI), SI		// arg 2 oldp
    	MOVQ	16(DI), DX		// arg 3 oldlenp
    	MOVQ	24(DI), CX		// arg 4 newp
    	MOVQ	32(DI), R8		// arg 5 newlen
    	MOVQ	0(DI), DI		// arg 1 name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
Back to top