Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for sS (0.02 sec)

  1. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    	}
    
    	ss = append(ss, "Locations")
    	for _, l := range p.Location {
    		ss = append(ss, l.string())
    	}
    
    	ss = append(ss, "Mappings")
    	for _, m := range p.Mapping {
    		ss = append(ss, m.string())
    	}
    
    	return strings.Join(ss, "\n") + "\n"
    }
    
    // string dumps a text representation of a mapping. Intended mainly
    // for debugging purposes.
    func (m *Mapping) string() string {
    	bits := ""
    	if m.HasFunctions {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue50779.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type AC interface {
    	C
    }
    
    type ST []int
    
    type R[S any, P any] struct{}
    
    type SR = R[SS, ST]
    
    type SS interface {
    	NSR(any) *SR // ERROR "invalid use of type alias SR in recursive type"
    }
    
    type C interface {
    	NSR(any) *SR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 414 bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/nettest/nettest.go

    			return false
    		}
    	}
    	switch ss[0] {
    	case "tcp4", "udp4", "ip4":
    		return SupportsIPv4()
    	case "tcp6", "udp6", "ip6":
    		return SupportsIPv6()
    	}
    	return true
    }
    
    // TestableAddress reports whether address of network is testable on
    // the current platform configuration.
    func TestableAddress(network, address string) bool {
    	switch ss := strings.Split(network, ":"); ss[0] {
    	case "unix", "unixgram", "unixpacket":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. cmd/global-heal.go

    	}
    
    	for id, disks := range indexed {
    		ss := madmin.SetStatus{
    			ID:        id,
    			SetIndex:  disks[0].SetIndex,
    			PoolIndex: disks[0].PoolIndex,
    		}
    		for _, disk := range disks {
    			ss.Disks = append(ss.Disks, disk)
    			if disk.Healing {
    				ss.HealStatus = "Healing"
    				ss.HealPriority = "high"
    				status.HealDisks = append(status.HealDisks, disk.Endpoint)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. hack/lib/etcd.sh

      }
    
      # validate etcd port is free
      local port_check_command
      if command -v ss &> /dev/null && ss -Version | grep 'iproute2' &> /dev/null; then
        port_check_command="ss"
      elif command -v netstat &>/dev/null; then
        port_check_command="netstat"
      else
        kube::log::usage "unable to identify if etcd is bound to port ${ETCD_PORT}. unable to find ss or netstat utilities."
        exit 1
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ReportGeneratingProfileListener.java

        }
    
        public void buildFinished(BuildProfile buildProfile) {
            ProfileReportRenderer renderer = new ProfileReportRenderer();
            SimpleDateFormat fileDateFormat = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss");
            File file = new File(getBuildDir(), "reports/profile/profile-" + fileDateFormat.format(new Date(buildProfile.getBuildStarted())) + ".html");
            renderer.writeTo(buildProfile, file);
            renderReportUrl(file);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_utils_test.go

    			extraOwner := (variations & 3) != 0
    			_, ctx := ktesting.NewTestContext(t)
    			logger := klog.FromContext(ctx)
    			set := apps.StatefulSet{}
    			set.Name = "ss"
    			numReplicas := int32(5)
    			set.Spec.Replicas = &numReplicas
    			set.SetUID("ss-123")
    			set.Spec.PersistentVolumeClaimRetentionPolicy = &apps.StatefulSetPersistentVolumeClaimRetentionPolicy{
    				WhenScaled:  tc.scaleDownPolicy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/func.go

    	return f.Cache.allocSparseSet(n)
    }
    
    // retSparseSet returns a sparse set to the config's cache of sparse
    // sets to be reused by f.newSparseSet.
    func (f *Func) retSparseSet(ss *sparseSet) {
    	f.Cache.freeSparseSet(ss)
    }
    
    // newSparseMap returns a sparse map that can store at least up to n integers.
    func (f *Func) newSparseMap(n int) *sparseMap {
    	return f.Cache.allocSparseMap(n)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set.go

    // enqueueStatefulSet enqueues the given statefulset in the work queue after given time
    func (ssc *StatefulSetController) enqueueSSAfter(ss *apps.StatefulSet, duration time.Duration) {
    	key, err := controller.KeyFunc(ss)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("couldn't get key for object %#v: %v", ss, err))
    		return
    	}
    	ssc.queue.AddAfter(key, duration)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. pkg/kubelet/container/runtime.go

    func (r *RuntimeStatus) String() string {
    	var ss []string
    	var sh []string
    	for _, c := range r.Conditions {
    		ss = append(ss, c.String())
    	}
    	for _, h := range r.Handlers {
    		sh = append(sh, h.String())
    	}
    	return fmt.Sprintf("Runtime Conditions: %s; Handlers: %s", strings.Join(ss, ", "), strings.Join(sh, ", "))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top