Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 4,007 for Sort (0.92 sec)

  1. manifests/addons/dashboards/istio-workload-dashboard.json

            "legend": {
              "calcs": [],
              "displayMode": "list",
              "placement": "right",
              "showLegend": true
            },
            "tooltip": {
              "mode": "multi",
              "sort": "none"
            }
          },
          "pluginVersion": "10.1.5",
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 102.7K bytes
    - Viewed (0)
  2. src/syscall/getdirentries_test.go

    				name[i] = byte(dirent.Name[i])
    			}
    			names2 = append(names2, string(name))
    		}
    	}
    
    	names = append(names, ".", "..") // Getdirentries returns these also
    	slices.Sort(names)
    	slices.Sort(names2)
    	if strings.Join(names, ":") != strings.Join(names2, ":") {
    		t.Errorf("names don't match\n names: %q\nnames2: %q", names, names2)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. release/downloadIstioCtl.sh

      if [ "$(printf '%s\n%s' "${ARCH_SUPPORTED}" "${ISTIO_VERSION}" | sort -V | head -n 1)" = "${ISTIO_VERSION}" ]; then
        without_arch
      else
        with_arch
      fi
    elif [ "${OS}" = "Darwin" ] ; then
      # This checks if ISTIO_VERSION is less than ARCH_SUPPORTED_OSX (version-sort's before it) or ISTIO_ARCH not equal to arm64
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/mux/pathrecorder.go

    		newMux.notFoundHandler = m.notFoundHandler
    	}
    	for path, handler := range m.pathToHandler {
    		newMux.pathToHandler[path] = handler
    	}
    
    	keys := sets.StringKeySet(m.prefixToHandler).List()
    	sort.Sort(sort.Reverse(byPrefixPriority(keys)))
    	for _, prefix := range keys {
    		newMux.prefixHandlers = append(newMux.prefixHandlers, prefixHandler{
    			prefix:  prefix,
    			handler: m.prefixToHandler[prefix],
    		})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 01:52:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. pkg/proxy/config/config_test.go

    func (h *ServiceHandlerMock) sendServices() {
    	if !h.synced {
    		return
    	}
    	services := make([]*v1.Service, 0, len(h.state))
    	for _, svc := range h.state {
    		services = append(services, svc)
    	}
    	sort.Sort(sortedServices(services))
    	h.process(services)
    }
    
    func (h *ServiceHandlerMock) ValidateServices(t *testing.T, expectedServices []*v1.Service) {
    	// We might get 1 or more updates for N service updates, because we
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryConcurrencyTest.groovy

                    return 123
                }
            })
    
            expect:
            10.times {
                start {
                    assert registry.getAll(Number).sort() == [12, 123]
                    assert registry.getAll(String).sort() == ["12", "123"]
                }
            }
        }
    
        def "cannot look up services while closing"() {
            given:
            def registry = new DefaultServiceRegistry()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/ecds.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package configdump
    
    import (
    	"fmt"
    	"sort"
    	"strings"
    	"text/tabwriter"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    				// (and this is by no means a useful sequence).
    				const maxVariants = 8
    				if len(varID) > maxVariants {
    					break
    				}
    			}
    		}
    		end = scan.end
    	}
    	if needSort {
    		sort.Sort(variantsSort{varID, variant})
    		k, l := 0, -1
    		for i, v := range varID {
    			w := int(v)
    			if l == w {
    				// Remove duplicates.
    				continue
    			}
    			varID[k] = varID[i]
    			variant[k] = variant[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. src/cmd/internal/objfile/objfile.go

    }
    
    func (e *Entry) Name() string {
    	return e.name
    }
    
    func (e *Entry) Symbols() ([]Sym, error) {
    	syms, err := e.raw.symbols()
    	if err != nil {
    		return nil, err
    	}
    	sort.Sort(byAddr(syms))
    	return syms, nil
    }
    
    type byAddr []Sym
    
    func (x byAddr) Less(i, j int) bool { return x[i].Addr < x[j].Addr }
    func (x byAddr) Len() int           { return len(x) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 24 16:01:55 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

        }
    
        /**
         * Get a list of the profiling containers for all projects
         *
         * @return list
         */
        public List<ProjectProfile> getProjects() {
            return CollectionUtils.sort(projects.values(), Operation.slowestFirst());
        }
    
        public CompositeOperation<Operation> getProjectConfiguration() {
            List<Operation> operations = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top