Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 299 for stks (0.09 sec)

  1. src/encoding/xml/xml.go

    	ok   bool
    }
    
    const (
    	stkStart = iota
    	stkNs
    	stkEOF
    )
    
    func (d *Decoder) push(kind int) *stack {
    	s := d.free
    	if s != nil {
    		d.free = s.next
    	} else {
    		s = new(stack)
    	}
    	s.next = d.stk
    	s.kind = kind
    	d.stk = s
    	return s
    }
    
    func (d *Decoder) pop() *stack {
    	s := d.stk
    	if s != nil {
    		d.stk = s.next
    		s.next = d.free
    		d.free = s
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  2. docs/multi-user/README.md

    - `aws:username` - This is a string containing the friendly name of the current user, this value would point to STS temporary credential in `AssumeRole`ed requests, use `jwt:preferred_username` in case of OpenID connect and `ldap:username` in case of AD/LDAP. *aws:userid* is an alias...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/list/list.go

    		} else if len(stkj) == 0 {
    			return false
    		}
    		pathi, pathj := stki[len(stki)-1], stkj[len(stkj)-1]
    		return pathi < pathj
    	})
    }
    
    // TrackingWriter tracks the last byte written on every write so
    // we can avoid printing a newline if one was already written or
    // if there is no output at all.
    type TrackingWriter struct {
    	w    *bufio.Writer
    	last byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocatorTest.groovy

            windowsRegistry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, /SOFTWARE\Microsoft\Microsoft SDKs\Windows\v1/, "InstallationFolder") >> dir1.absolutePath
            windowsRegistry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, /SOFTWARE\Microsoft\Microsoft SDKs\Windows\v1/, "ProductVersion") >> "7.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. src/internal/coverage/stringtab/stringtab.go

    	}
    	idx := uint32(len(stw.strs))
    	stw.stab[s] = idx
    	stw.strs = append(stw.strs, s)
    	return idx
    }
    
    // Size computes the memory in bytes needed for the serialized
    // version of a stringtab.Writer.
    func (stw *Writer) Size() uint32 {
    	rval := uint32(0)
    	stw.tmp = stw.tmp[:0]
    	stw.tmp = uleb128.AppendUleb128(stw.tmp, uint(len(stw.strs)))
    	rval += uint32(len(stw.tmp))
    	for _, s := range stw.strs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http/HttpMethod.kt

      @JvmStatic // Despite being 'internal', this method is called by popular 3rd party SDKs.
      fun invalidatesCache(method: String): Boolean =
        (
          method == "POST" || method == "PATCH" || method == "PUT" ||
            method == "DELETE" || method == "MOVE"
        )
    
      @JvmStatic // Despite being 'internal', this method is called by popular 3rd party SDKs.
      fun requiresRequestBody(method: String): Boolean =
        (
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/runtime/os_openbsd_syscall.go

    func tfork(param *tforkt, psize uintptr, mm *m, gg *g, fn uintptr) int32
    
    // May run with m.p==nil, so write barriers are not allowed.
    //
    //go:nowritebarrier
    func newosproc(mp *m) {
    	stk := unsafe.Pointer(mp.g0.stack.hi)
    	if false {
    		print("newosproc stk=", stk, " m=", mp, " g=", mp.g0, " id=", mp.id, " ostk=", &mp, "\n")
    	}
    
    	// Stack pointer must point inside stack area (as marked with MAP_STACK),
    	// rather than at the top of it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 20:44:45 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/config/types.go

    import (
    	"strings"
    )
    
    func Split(s string) []string {
    	if s == "" {
    		return nil
    	}
    	return filterEmpty(strings.Split(s, ","))
    }
    
    func filterEmpty(strs []string) []string {
    	filtered := make([]string, 0, len(strs))
    	for _, s := range strs {
    		if s == "" {
    			continue
    		}
    		filtered = append(filtered, s)
    	}
    	return filtered
    }
    
    type InterceptFilter struct {
    	Values []string
    	Except bool
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 25 15:43:38 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. src/runtime/pprof/proto.go

    			stk = stk[len(l.pcs):]
    			continue
    		}
    
    		frames, symbolizeResult := allFrames(addr)
    		if len(frames) == 0 { // runtime.goexit.
    			if id := b.emitLocation(); id > 0 {
    				locs = append(locs, id)
    			}
    			stk = stk[1:]
    			continue
    		}
    
    		if added := b.deck.tryAdd(addr, frames, symbolizeResult); added {
    			stk = stk[1:]
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  10. docs/sts/custom-token-identity.md

    The validity duration of the generated STS credentials is the minimum of the `DurationSeconds` parameter (if passed) and the validity duration returned by the Identity Management Plugin.
    
    ## API Response
    
    XML response for this API is similar to [AWS STS AssumeRoleWithWebIdentity](https://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRoleWithWebIdentity.html#API_AssumeRoleWithWebIdentity_ResponseElements)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top