Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for envBlock (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
Back to top