Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 549 for copyEnv (0.12 sec)

  1. src/syscall/env_unix.go

    	runtimeSetenv(key, value)
    	return nil
    }
    
    func Clearenv() {
    	envOnce.Do(copyenv) // prevent copyenv in Getenv/Setenv
    
    	envLock.Lock()
    	defer envLock.Unlock()
    
    	for k := range env {
    		runtimeUnsetenv(k)
    	}
    	env = make(map[string]int)
    	envs = []string{}
    }
    
    func Environ() []string {
    	envOnce.Do(copyenv)
    	envLock.RLock()
    	defer envLock.RUnlock()
    	a := make([]string, 0, len(envs))
    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. licenses/github.com/BurntSushi/toml/COPYING

    John Howard <******@****.***> 1572058059 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  3. licenses/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING

    Martin Taillefer <******@****.***> 1572291239 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 28 19:33:59 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  4. licenses/github.com/BurntSushi/toml/cmd/tomlv/COPYING

    Martin Taillefer <******@****.***> 1572291239 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 28 19:33:59 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  5. licenses/github.com/google/shlex/COPYING

    John Howard <******@****.***> 1619132365 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 22:59:25 UTC 2021
    - 11.1K bytes
    - Viewed (0)
  6. licenses/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING

    Martin Taillefer <******@****.***> 1572291239 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 28 19:33:59 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  7. licenses/github.com/BurntSushi/toml/internal/toml-test/COPYING

    John Howard <******@****.***> 1643929095 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 22:58:15 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. licenses/github.com/alecthomas/participle/v2/COPYING

    John Howard <******@****.***> 1712595956 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. src/internal/trace/batch.go

    	}
    
    	// Copy out the batch for later processing.
    	var data bytes.Buffer
    	data.Grow(int(size))
    	n, err := io.CopyN(&data, r, int64(size))
    	if n != int64(size) {
    		return batch{}, gen, fmt.Errorf("failed to read full batch: read %d but wanted %d", n, size)
    	}
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("copying batch data: %w", err)
    	}
    
    	// Return the batch.
    	return batch{
    		m:    ThreadID(m),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/testing/zz_generated.deepcopy.go

    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EmbeddedTest.
    func (in *EmbeddedTest) DeepCopy() *EmbeddedTest {
    	if in == nil {
    		return nil
    	}
    	out := new(EmbeddedTest)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 17.8K bytes
    - Viewed (0)
Back to top