Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 299 for stks (0.03 sec)

  1. src/net/main_test.go

    	for s, so := range sos {
    		fmt.Fprintf(os.Stderr, "%v: %v\n", s, so)
    	}
    	fmt.Fprintf(os.Stderr, "\n")
    }
    
    func printSocketStats() {
    	sts := sw.Stats()
    	if len(sts) == 0 {
    		return
    	}
    	fmt.Fprintf(os.Stderr, "Socket statistical information:\n")
    	for _, st := range sts {
    		fmt.Fprintf(os.Stderr, "%v\n", st)
    	}
    	fmt.Fprintf(os.Stderr, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/runtime/pprof/runtime.go

    //
    //go:noescape
    func runtime_FrameSymbolName(f *runtime.Frame) string
    
    // runtime_expandFinalInlineFrame is defined in runtime/symtab.go.
    func runtime_expandFinalInlineFrame(stk []uintptr) []uintptr
    
    // runtime_setProfLabel is defined in runtime/proflabel.go.
    func runtime_setProfLabel(labels unsafe.Pointer)
    
    // runtime_getProfLabel is defined in runtime/proflabel.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. cmd/stserrorcode_string.go

    // Code generated by "stringer -type=STSErrorCode -trimprefix=Err sts-errors.go"; DO NOT EDIT.
    
    package cmd
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[ErrSTSNone-0]
    	_ = x[ErrSTSAccessDenied-1]
    	_ = x[ErrSTSMissingParameter-2]
    	_ = x[ErrSTSInvalidParameterValue-3]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 03 20:24:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. docs/iam/identity-management-plugin.md

    with an Identity Management Plugin webhook. When configured, this plugin enables the `AssumeRoleWithCustomToken` STS API extension. A user or application can now present a token to the `AssumeRoleWithCustomToken` API, and MinIO verifies this token by sending it to the Identity Management Plugin webhook. This plugin responds with some information and MinIO is able to generate temporary STS credentials to interact with object storage.
    
    The authentication flow is similar to that of OpenID, however...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  5. docs/multi-user/admin/README.md

    special permissions listed above. Follow [MinIO STS Quickstart Guide](https://min.io/docs/minio/linux/developers/security-token-service.html) to manage users with an IDP.
    
    ## Explore Further
    
    - [MinIO Client Complete Guide](https://min.io/docs/minio/linux/reference/minio-mc.html)
    - [MinIO STS Quickstart Guide](https://min.io/docs/minio/linux/developers/security-token-service.html)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/staticinit/sched.go

    			need++
    		}
    	}
    	if need == len(s) {
    		return n
    	}
    	if need == 1 {
    		var strs []string
    		for _, c := range s {
    			strs = append(strs, ir.StringVal(c))
    		}
    		return ir.NewConstExpr(constant.MakeString(strings.Join(strs, "")), n)
    	}
    	newList := make([]ir.Node, 0, need)
    	for i := 0; i < len(s); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. src/runtime/os_netbsd.go

    		})
    	}
    }
    
    // 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")
    	}
    
    	var uc ucontextt
    	getcontext(unsafe.Pointer(&uc))
    
    	// _UC_SIGMASK does not seem to work here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. src/runtime/stack.go

    }
    
    // stackfree frees an n byte stack allocation at stk.
    //
    // stackfree must run on the system stack because it uses per-P
    // resources and must not split the stack.
    //
    //go:systemstack
    func stackfree(stk stack) {
    	gp := getg()
    	v := unsafe.Pointer(stk.lo)
    	n := stk.hi - stk.lo
    	if n&(n-1) != 0 {
    		throw("stack not a power of 2")
    	}
    	if stk.lo+n < stk.hi {
    		throw("bad stack size")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. test/typeparam/graph.go

    	sw
    	west
    	nw
    	up
    	down
    )
    
    func (dir direction) String() string {
    	strs := map[direction]string{
    		north: "north",
    		ne:    "ne",
    		east:  "east",
    		se:    "se",
    		south: "south",
    		sw:    "sw",
    		west:  "west",
    		nw:    "nw",
    		up:    "up",
    		down:  "down",
    	}
    	if str, ok := strs[dir]; ok {
    		return str
    	}
    	return fmt.Sprintf("direction %d", dir)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/DefaultKeyServers.java

    import java.net.URI;
    import java.net.URISyntaxException;
    import java.util.List;
    
    public abstract class DefaultKeyServers {
        private final static List<URI> DEFAULT_KEYSERVERS = ImmutableList.of(
            uri("hkp://ha.pool.sks-keyservers.net"),
            uri("https://keyserver.ubuntu.com"),
            uri("https://keys.openpgp.org"),
            uri("https://pgp.mit.edu")
        );
    
        private static URI uri(String uri) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top