Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 283 for Sort (0.2 sec)

  1. src/go/build/build.go

    	// (which means gcc will compile them).
    	// The standard assemblers expect .s files.
    	if len(p.CgoFiles) > 0 {
    		p.SFiles = append(p.SFiles, Sfiles...)
    		slices.Sort(p.SFiles)
    	} else {
    		p.IgnoredOtherFiles = append(p.IgnoredOtherFiles, Sfiles...)
    		slices.Sort(p.IgnoredOtherFiles)
    	}
    
    	if badGoError != nil {
    		return p, badGoError
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package runtime
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"io"
    	"reflect"
    	"sort"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/informers"
    	clientset "k8s.io/client-go/kubernetes"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_logging_test.go

    		"foo": {
    			Hostname:       "otel-collector.foo.svc.cluster.local",
    			DefaultAddress: "172.217.0.0/16",
    			Ports: PortList{
    				&Port{
    					Name:     "grpc-port",
    					Port:     3417,
    					Protocol: protocol.TCP,
    				},
    				&Port{
    					Name:     "http-port",
    					Port:     3418,
    					Protocol: protocol.HTTP,
    				},
    			},
    			Resolution: ClientSideLB,
    			Attributes: ServiceAttributes{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    	if s == 0 || l.sub[s] == 0 {
    		return s
    	}
    
    	// Sort symbols using a slice first. Use a stable sort on the off
    	// chance that there's more than once symbol with the same value,
    	// so as to preserve reproducible builds.
    	sl := []symWithVal{}
    	for ss := l.sub[s]; ss != 0; ss = l.sub[ss] {
    		sl = append(sl, symWithVal{s: ss, v: l.SymValue(ss)})
    	}
    	sort.Stable(bySymValue(sl))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	kubeContainerStatuses := []*kubecontainer.Status{}
    	for _, status := range event.ContainersStatuses {
    		kubeContainerStatuses = append(kubeContainerStatuses, m.convertToKubeContainerStatus(status))
    	}
    
    	sort.Sort(containerStatusByCreated(kubeContainerStatuses))
    
    	return &kubecontainer.PodStatus{
    		ID:                kubetypes.UID(event.PodSandboxStatus.Metadata.Uid),
    		Name:              event.PodSandboxStatus.Metadata.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				// Sort the values (inner victims) and the candidate itself (by its NominatedNodeName).
    				for i := range got {
    					victims := got[i].Victims().Pods
    					sort.Slice(victims, func(i, j int) bool {
    						return victims[i].Name < victims[j].Name
    					})
    				}
    				sort.Slice(got, func(i, j int) bool {
    					return got[i].Name() < got[j].Name()
    				})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableSortedMap.java

                keys[i] = key;
                values[i] = value;
              }
            } else {
              // Need to sort and check for nulls and dupes.
              // Inline the Comparator implementation rather than transforming with a Function
              // to save code size.
              Arrays.sort(
                  entryArray,
                  0,
                  size,
                  (e1, e2) -> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/sidecar_simulation_test.go

    			{Port: port, Protocol: simulation.HTTP, TLS: simulation.Plaintext, HostHeader: "foo"},
    			{Port: port, Protocol: simulation.HTTP, TLS: simulation.TLS, HostHeader: "foo"},
    			{Port: port, Protocol: simulation.HTTP, TLS: simulation.TLS, HostHeader: "foo", Alpn: "http/1.1"},
    			{Port: port, Protocol: simulation.TCP, TLS: simulation.Plaintext, HostHeader: "foo"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package endpoints
    
    import (
    	"fmt"
    	"net/http"
    	"reflect"
    	"sort"
    	"strings"
    	"time"
    	"unicode"
    
    	restful "github.com/emicklei/go-restful/v3"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    
    	apidiscoveryv2 "k8s.io/api/apidiscovery/v2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			if len(tt.expectedDeletedJobs) != len(jobControl.DeleteJobName) {
    				t.Fatalf("expected '%v' jobs to be deleted, instead deleted '%s'", tt.expectedDeletedJobs, jobControl.DeleteJobName)
    			}
    			sort.Strings(jobControl.DeleteJobName)
    			sort.Strings(tt.expectedDeletedJobs)
    			for i, deletedJob := range jobControl.DeleteJobName {
    				if deletedJob != tt.expectedDeletedJobs[i] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
Back to top