Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for stks (0.06 sec)

  1. src/runtime/metrics_test.go

    					}
    				}
    				stks = append(stks, have)
    				for i, stk := range acceptStacks {
    					if slices.Equal(have, stk) {
    						values[i][0] += s.Value[0]
    						values[i][1] += s.Value[1]
    					}
    				}
    			}
    			for i, stk := range acceptStacks {
    				n += values[i][0]
    				value += values[i][1]
    				t.Logf("stack %v has samples totaling n=%d value=%d", stk, values[i][0], values[i][1])
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. cmd/sts-handlers.go

    	return nil
    }
    
    // stsAPIHandlers implements and provides http handlers for AWS STS API.
    type stsAPIHandlers struct{}
    
    // registerSTSRouter - registers AWS STS compatible APIs.
    func registerSTSRouter(router *mux.Router) {
    	// Initialize STS.
    	sts := &stsAPIHandlers{}
    
    	// STS Router
    	stsRouter := router.NewRoute().PathPrefix(SlashSeparator).Subrouter()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. 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)
  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/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)
  6. 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)
  7. pkg/proxy/ipvs/ipset/ipset.go

    	}
    	memberMatcher := regexp.MustCompile(EntryMemberPattern)
    	list := memberMatcher.ReplaceAllString(string(out[:]), "")
    	strs := strings.Split(list, "\n")
    	results := make([]string, 0)
    	for i := range strs {
    		if len(strs[i]) > 0 {
    			results = append(results, strs[i])
    		}
    	}
    	return results, nil
    }
    
    // GetVersion returns the version string.
    func (runner *runner) GetVersion() (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  8. operator/pkg/helmreconciler/wait.go

    	var notReady []string
    	for _, sts := range statefulsets {
    		// Make sure all the updated pods have been scheduled
    		if sts.Spec.UpdateStrategy.Type == appsv1.OnDeleteStatefulSetStrategyType &&
    			sts.Status.UpdatedReplicas != sts.Status.Replicas {
    			scope.Infof("StatefulSet is not ready: %s/%s. %d out of %d expected pods have been scheduled",
    				sts.Namespace, sts.Name, sts.Status.UpdatedReplicas, sts.Status.Replicas)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. docs/sts/web-identity.md

    ### Response Elements
    
    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)
    
    ### Errors
    
    XML error response for this API is similar to [AWS STS AssumeRoleWithWebIdentity](https://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRoleWithWebIdentity.html#API_AssumeRoleWithWebIdentity_Errors)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. src/runtime/profbuf.go

    		// Only racing against reader, not other writers.
    		count, time := b.takeOverflow()
    		if count > 0 {
    			var stk [1]uintptr
    			stk[0] = uintptr(count)
    			b.write(nil, int64(time), nil, stk[:])
    		}
    	} else if hasOverflow || !b.canWriteRecord(len(stk)) {
    		// Pending overflow without room to write overflow and new records
    		// or no overflow but also no room for new record.
    		b.incrementOverflow(now)
    		b.wakeupExtra()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top