Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for DELETE (0.09 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    						pp.From.Offset = 0
    						pp.From.Index = REG_NONE
    						ab.rexflag |= Pw
    						ab.Put1(0x8B)
    						ab.asmand(ctxt, cursym, p, &pp.From, &p.To)
    
    					case objabi.Hsolaris: // TODO(rsc): Delete Hsolaris from list. Should not use this code. See progedit in obj6.c.
    						// TLS base is 0(FS).
    						pp.From = p.From
    
    						pp.From.Type = obj.TYPE_MEM
    						pp.From.Name = obj.NAME_NONE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    			Gosched()
    		}
    
    		return
    	}
    
    	gp.m.locks--
    
    	// Call the scheduler.
    	mcall(exitsyscall0)
    
    	// Scheduler returned, so we're allowed to run now.
    	// Delete the syscallsp information that we left for
    	// the garbage collector during the system call.
    	// Must wait until now because until gosched returns
    	// we don't know for sure that the garbage collector
    	// is not running.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    			failureN:   0,
    			failureErr: errors.New("second write fails"),
    			req: func() *Request {
    				return newRequest("DELETE", "http://fake.golang", nil)
    			},
    			reqString: `DELETE / HTTP/1.1\r\nHost: fake.golang\r\nUser-Agent: Go-http-client/1.1\r\nAccept-Encoding: gzip\r\n\r\n`,
    		},
    		{
    			name: "NothingWrittenGetBody",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    <p>
    The built-in function <code>delete</code> removes the element with key
    <code>k</code> from a <a href="#Map_types">map</a> <code>m</code>. The
    type of <code>k</code> must be <a href="#Assignability">assignable</a>
    to the key type of <code>m</code>.
    </p>
    
    <pre class="grammar">
    delete(m, k)  // remove element m[k] from map m
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    		return err
    	}
    
    	// Update the binary with the final build ID.
    	// But if OmitDebug is set, don't rewrite the binary, because we set OmitDebug
    	// on binaries that we are going to run and then delete.
    	// There's no point in doing work on such a binary.
    	// Worse, opening the binary for write here makes it
    	// essentially impossible to safely fork+exec due to a fundamental
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    		data = append(data, 0)
    	}
    	s.SetData(data)
    	s.SetSize(int64(len(data)))
    
    	// Add reference to go:buildinfo from the rodata section,
    	// so that external linking with -Wl,--gc-sections does not
    	// delete the build info.
    	sr := ldr.CreateSymForUpdate("go:buildinfo.ref", 0)
    	sr.SetType(sym.SRODATA)
    	sr.SetAlign(int32(ctxt.Arch.PtrSize))
    	sr.AddAddr(ctxt.Arch, s.Sym())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top