Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 283 for Sort (0.06 sec)

  1. cmd/bucket-handlers.go

    	"crypto/md5"
    	"encoding/base64"
    	"encoding/hex"
    	"encoding/json"
    	"encoding/xml"
    	"errors"
    	"fmt"
    	"io"
    	"mime/multipart"
    	"net/http"
    	"net/textproto"
    	"net/url"
    	"path"
    	"runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    
    	"github.com/google/uuid"
    	"github.com/minio/mux"
    	"github.com/valyala/bytebufferpool"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio-go/v7"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/asm.go

    	var n int
    
    	for i := 0; i < C_NCLASS; i++ {
    		for n = 0; n < C_NCLASS; n++ {
    			if cmp(n, i) {
    				xcmp[i][n] = true
    			}
    		}
    	}
    	for n = 0; optab[n].as != obj.AXXX; n++ {
    	}
    	sort.Sort(ocmp(optab[:n]))
    	for i := 0; i < n; i++ {
    		r := optab[i].as
    		r0 := r & obj.AMask
    		start := i
    		for optab[i].as == r {
    			i++
    		}
    		oprange[r0] = optab[start:i]
    		i--
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    			}
    
    			sd.serviceInstances = tc.serviceInstances
    			port := &Port{
    				Port: tc.servicePort,
    			}
    			if got := ps.BestEffortInferServiceMTLSMode(nil, service, port); got != tc.wanted {
    				t.Fatalf("want %s, but got %s", tc.wanted, got)
    			}
    			if got := ps.BestEffortInferServiceMTLSMode(nil, externalService, port); got != MTLSUnknown {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    				if err := tt.expectRVFunc(out.ResourceVersion); err != nil {
    					t.Errorf("resourceVersion in list response invalid: %v", err)
    				}
    			}
    
    			if tt.expectedAlternatives == nil {
    				sort.Sort(sortablePodList(tt.expectedOut))
    				expectNoDiff(t, "incorrect list pods", tt.expectedOut, out.Items)
    			} else {
    				ExpectContains(t, "incorrect list pods", toInterfaceSlice(tt.expectedAlternatives), out.Items)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  5. pilot/pkg/security/authn/policy_applier_test.go

    	tlsContextHTTP.CommonTlsContext.AlpnProtocols = []string{"h2", "http/1.1"}
    
    	expectedStrict := MTLSSettings{
    		Port: 8080,
    		Mode: model.MTLSStrict,
    		TCP:  tlsContext,
    		HTTP: tlsContextHTTP,
    	}
    	expectedPermissive := MTLSSettings{
    		Port: 8080,
    		Mode: model.MTLSPermissive,
    		TCP:  tlsContext,
    		HTTP: tlsContextHTTP,
    	}
    
    	cases := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/type.go

    	return CMPgt
    }
    
    func (r *Sym) cmpsym(s *Sym) Cmp {
    	if r == s {
    		return CMPeq
    	}
    	if r == nil {
    		return CMPlt
    	}
    	if s == nil {
    		return CMPgt
    	}
    	// Fast sort, not pretty sort
    	if len(r.Name) != len(s.Name) {
    		return cmpForNe(len(r.Name) < len(s.Name))
    	}
    	if r.Pkg != s.Pkg {
    		if len(r.Pkg.Prefix) != len(s.Pkg.Prefix) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      }
      for (auto& p : cluster_sets) {
        if (cluster_names != nullptr) {
          cluster_names->push_back(p.first);
        }
        std::sort(p.second.begin(), p.second.end());
      }
      if (cluster_names != nullptr) {
        std::sort(cluster_names->begin(), cluster_names->end());
      }
      return cluster_sets;
    }
    
    TEST(XlaCompilationTest, Chains) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy_test.go

    			for _, sf := range strings.Split(f, ",") {
    				if sf = strings.TrimSpace(sf); sf != "" {
    					cf = append(cf, sf)
    				}
    			}
    		}
    		slices.Sort(cf)
    		expectedValues := []string{"Upgrade", someConnHeader, fakeConnectionToken}
    		slices.Sort(expectedValues)
    		if !reflect.DeepEqual(cf, expectedValues) {
    			t.Errorf("handler modified header %q = %q; want %q", "Connection", cf, expectedValues)
    		}
    	}))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    - Fixed a bug where `kubectl describe` incorrectly displayed NetworkPolicy port ranges
      (showing only the starting port). ([#123316](https://github.com/kubernetes/kubernetes/pull/123316), [@jcaamano](https://github.com/jcaamano)) [SIG CLI]
    - Fixed a regression where `kubelet --hostname-override` no longer worked
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. tensorflow/BUILD

    load(
        "//tensorflow/core/platform:build_config_root.bzl",
        "if_static",
        "tf_additional_plugin_deps",
        "tf_additional_profiler_deps",
    )
    load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
    
    # Do not sort: Copybara rule
    # copybara:uncomment_begin
    # # buildifier: disable=out-of-order-load
    # load("//devtools/build_cleaner/skylark:action_config_test.bzl", "action_config_test")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
Back to top