Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for envBlock (0.52 sec)

  1. src/syscall/exec_windows.go

    			return 0, 0, err
    		}
    	}
    
    	envBlock, err := createEnvBlock(attr.Env)
    	if err != nil {
    		return 0, 0, err
    	}
    
    	pi := new(ProcessInformation)
    	flags := sys.CreationFlags | CREATE_UNICODE_ENVIRONMENT | _EXTENDED_STARTUPINFO_PRESENT
    	if sys.Token != 0 {
    		err = CreateProcessAsUser(sys.Token, argv0p, argvp, sys.ProcessAttributes, sys.ThreadAttributes, willInheritHandles, flags, &envBlock[0], dirp, &si.StartupInfo, pi)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/syscall/env_unix.go

    func Unsetenv(key string) error {
    	envOnce.Do(copyenv)
    
    	envLock.Lock()
    	defer envLock.Unlock()
    
    	if i, ok := env[key]; ok {
    		envs[i] = ""
    		delete(env, key)
    	}
    	runtimeUnsetenv(key)
    	return nil
    }
    
    func Getenv(key string) (value string, found bool) {
    	envOnce.Do(copyenv)
    	if len(key) == 0 {
    		return "", false
    	}
    
    	envLock.RLock()
    	defer envLock.RUnlock()
    
    	i, ok := env[key]
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/templates/index.html

            padding: .5em;
        }
    
        table th,
        table td {
            padding: .5em;
            border: 1px solid lightgrey;
        }
    </style>
    {% endblock %}
    
    {% block scripts %}
    <script src="static/tailwind/tailwind.css"></script>
    {% endblock %}
    
    {% block content %}
    <div class="mx-auto px-4 sm:px-6 lg:px-8">
        <div class="flex flex-col space-y-5 py-32 mx-auto max-w-7xl">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/print.go

    	p := stringFuncPrinter{w: h, printDead: false}
    	fprintFunc(p, f)
    	return fmt.Sprintf("%x", h.Sum(nil))
    }
    
    type funcPrinter interface {
    	header(f *Func)
    	startBlock(b *Block, reachable bool)
    	endBlock(b *Block, reachable bool)
    	value(v *Value, live bool)
    	startDepCycle()
    	endDepCycle()
    	named(n LocalSlot, vals []*Value)
    }
    
    type stringFuncPrinter struct {
    	w         io.Writer
    	printDead bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  5. cmd/erasure-decode.go

    		reader.preferReaders(prefer)
    	}
    	defer reader.Done()
    
    	startBlock := offset / e.blockSize
    	endBlock := (offset + length) / e.blockSize
    
    	var bytesWritten int64
    	var bufs [][]byte
    	for block := startBlock; block <= endBlock; block++ {
    		var blockOffset, blockLength int64
    		switch {
    		case startBlock == endBlock:
    			blockOffset = offset % e.blockSize
    			blockLength = length
    		case block == startBlock:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 21 14:36:21 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    	bEnd := s.f.NewBlock(ssa.BlockPlain)
    
    	b := s.endBlock()
    	b.Kind = ssa.BlockIf
    	b.SetControl(cond)
    	b.AddEdgeTo(bThen)
    	b.AddEdgeTo(bElse)
    
    	s.startBlock(bThen)
    	s.vars[ternaryVar] = x
    	s.endBlock().AddEdgeTo(bEnd)
    
    	s.startBlock(bElse)
    	s.vars[ternaryVar] = y
    	s.endBlock().AddEdgeTo(bEnd)
    
    	s.startBlock(bEnd)
    	r := s.variable(ternaryVar, x.Type)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/templates/productpage.html

    {% block metas %}
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    {% endblock %}
    
    <title>Simple Bookstore App</title>
    {% block scripts %}
    <script src="static/tailwind/tailwind.css"></script>
    <script type="text/javascript">
      window.addEventListener("DOMContentLoaded", (event) => {
        const dialog = document.querySelector("dialog");
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. docs/en/overrides/main.html

            <span class="sponsor-badge">sponsor</span>
            <img class="sponsor-image" src="/img/sponsors/kong-banner.png" />
          </a>
        </div>
      </div>
    </div>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    		pending.pieces[i] = curLoc[slot]
    	}
    }
    
    // writePendingEntry writes out the pending entry for varID, if any,
    // terminated at endBlock/Value.
    func (state *debugState) writePendingEntry(varID VarID, endBlock, endValue ID) {
    	pending := state.pendingEntries[varID]
    	if !pending.present {
    		return
    	}
    
    	// Pack the start/end coordinates into the start/end addresses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/html.go

    	}
    	io.WriteString(p.w, "</li>")
    	if len(b.Values) > 0 { // start list of values
    		io.WriteString(p.w, "<li class=\"ssa-value-list\">")
    		io.WriteString(p.w, "<ul>")
    	}
    }
    
    func (p htmlFuncPrinter) endBlock(b *Block, reachable bool) {
    	if len(b.Values) > 0 { // end list of values
    		io.WriteString(p.w, "</ul>")
    		io.WriteString(p.w, "</li>")
    	}
    	io.WriteString(p.w, "<li class=\"ssa-end-block\">")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
Back to top