Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 86 of 86 for chains (0.11 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // in the form of "{XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}".
    func (guid GUID) String() string {
    	var str [100]uint16
    	chars := stringFromGUID2(&guid, &str[0], int32(len(str)))
    	if chars <= 1 {
    		return ""
    	}
    	return string(utf16.Decode(str[:chars-1]))
    }
    
    // KnownFolderPath returns a well-known folder path for the current user, specified by one of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // DER encoded X.509 certificates signed by keys in another keyring. Restrictions
    // for "asymmetric" include "builtin_trusted", "builtin_and_secondary_trusted",
    // "key_or_keyring:<key>", and "key_or_keyring:<key>:chain".
    //
    // As of Linux 4.12, only the "asymmetric" keyType defines type-specific
    // restrictions.
    //
    // See the full documentation at:
    // http://man7.org/linux/man-pages/man3/keyctl_restrict_keyring.3.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.3.md

    * Fix a bug in kubelet hostport logic which flushes KUBE-MARK-MASQ iptables chain ([#32413](https://github.com/kubernetes/kubernetes/pull/32413), [@freehan](https://github.com/freehan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  4. src/testing/testing.go

    	name     string            // Name of test or benchmark.
    	start    highPrecisionTime // Time test or benchmark started
    	duration time.Duration
    	barrier  chan bool // To signal parallel subtests they may start. Nil when T.Parallel is not present (B) or not usable (when fuzzing).
    	signal   chan bool // To signal a test is done.
    	sub      []*T      // Queue of subtests to be run in parallel.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    // for use in error messages. When it completes, packages that
    // are part of the original root set have pkg.stack == nil,
    // and other packages have pkg.stack pointing at the next
    // package up the import stack in their minimal chain.
    // As a side effect, buildStacks also constructs ld.pkgs,
    // the list of all packages loaded.
    func (ld *loader) buildStacks() {
    	if len(ld.pkgs) > 0 {
    		panic("buildStacks")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    		return false
    	}
    	if f := dt.Field[0]; f.Name != "unused" || f.Type.Common().Name != "int" {
    		return false
    	}
    	return true
    }
    
    // baseBadPointerTypedef reports whether the base of a chain of typedefs is a bad typedef
    // as badPointerTypedef reports.
    func (c *typeConv) baseBadPointerTypedef(dt *dwarf.TypedefType) bool {
    	for {
    		if t, ok := dt.Type.(*dwarf.TypedefType); ok {
    			dt = t
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top