Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 283 for Sort (0.58 sec)

  1. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

            "legend": {
              "calcs": [],
              "displayMode": "list",
              "placement": "bottom",
              "showLegend": true
            },
            "tooltip": {
              "mode": "multi",
              "sort": "none"
            }
          },
          "pluginVersion": "10.4.0",
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${DS_PROMETHEUS}"
              },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

            "legend": {
              "calcs": [],
              "displayMode": "list",
              "placement": "bottom",
              "showLegend": true
            },
            "tooltip": {
              "mode": "multi",
              "sort": "none"
            }
          },
          "pluginVersion": "10.4.0",
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${DS_PROMETHEUS}"
              },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/grafana/minio-dashboard.json

              "calcs": [
                "lastNotNull"
              ],
              "fields": "",
              "values": false
            },
            "tooltip": {
              "mode": "single",
              "sort": "none"
            }
          },
          "pluginVersion": "8.2.1",
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${DS_PROMETHEUS}"
              },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/options_test.go

    		},
    		Master:  "192.168.4.20",
    		Metrics: &metrics.Options{},
    		Logs:    logs.NewOptions(),
    	}
    
    	// Sort GCIgnoredResources because it's built from a map, which means the
    	// insertion order is random.
    	sort.Sort(sortedGCIgnoredResources(expected.GarbageCollectorController.GCIgnoredResources))
    
    	if !reflect.DeepEqual(expected, s) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/helpers.go

    type cmpFunc func(p1, p2 *v1.Pod) int
    
    // multiSorter implements the Sort interface, sorting changes within.
    type multiSorter struct {
    	pods []*v1.Pod
    	cmp  []cmpFunc
    }
    
    // Sort sorts the argument slice according to the less functions passed to OrderedBy.
    func (ms *multiSorter) Sort(pods []*v1.Pod) {
    	ms.pods = pods
    	sort.Sort(ms)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_utils_test.go

    	}
    	sort.Sort(overlappingStatefulSets(sets))
    	if !sort.IsSorted(overlappingStatefulSets(sets)) {
    		t.Error("ascendingOrdinal fails to sort Pods")
    	}
    	for i, v := range perm {
    		sets[i] = newStatefulSet(10)
    		sets[i].Name = strconv.FormatInt(int64(v), 10)
    	}
    	sort.Sort(overlappingStatefulSets(sets))
    	if !sort.IsSorted(overlappingStatefulSets(sets)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		} else {
    			newS = append(newS, elem)
    		}
    	}
    
    	// Sort the maps.
    	newS = sortMapsBasedOnField(newS, mergeKey)
    	return newS, nil
    }
    
    func sortMapsBasedOnField(m []interface{}, fieldName string) []interface{} {
    	mapM := mapSliceFromSlice(m)
    	ss := SortableSliceOfMaps{mapM, fieldName}
    	sort.Sort(ss)
    	newS := sliceFromMapSlice(ss.s)
    	return newS
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais2.go

    			// If maxID == numLMS, then each LMS-substring
    			// is unique, so the relative ordering of two LMS-suffixes
    			// is determined by just the leading LMS-substring.
    			// That is, the LMS-suffix sort order matches the
    			// (simpler) LMS-substring sort order.
    			// Copy the original LMS-substring order into the
    			// suffix array destination.
    			copy(sa, sa[len(sa)-numLMS:])
    		}
    		expand_8_64(text, freq, bucket, sa, numLMS)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	if len(a) != len(b) {
    		return false
    	}
    
    	// Sort the containers within a pod.
    	for i := range a {
    		sort.Sort(containersByID(a[i].Containers))
    	}
    	for i := range b {
    		sort.Sort(containersByID(b[i].Containers))
    	}
    
    	// Sort the pods by UID.
    	sort.Sort(podsByID(a))
    	sort.Sort(podsByID(b))
    
    	return reflect.DeepEqual(a, b)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route.go

    		}
    	}
    
    	// Now group these Services by port so that we can infer the destination.port if the user
    	// doesn't specify any port for a multiport service. We need to know the destination port in
    	// order to build the cluster name (outbound|<port>|<subset>|<serviceFQDN>)
    	// If the destination service is being accessed on port X, we set that as the default
    	// destination port
    	serviceByPort := make(map[int][]*model.Service)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
Back to top