Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,484 for Sort (0.04 sec)

  1. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

    # targets.
    license_query() {
     bazel cquery --experimental_cc_shared_library "$1" --keep_going \
      | grep -e "^//" -e "^@" \
      | grep -E -v "^//tensorflow" \
      | sed -e 's|:.*||' \
      | sort -u
    }
    
    # Verify that, given a build target and a license-list generator target, all of
    # the dependencies of that target which include a license notice file are then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. pkg/test/loadbalancersim/lb_test.go

    //  See the License for the specific language governing permissions and
    //  limitations under the License.
    
    package loadbalancersim
    
    import (
    	"fmt"
    	"os"
    	"sort"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"istio.io/istio/pkg/test/loadbalancersim/loadbalancer"
    	"istio.io/istio/pkg/test/loadbalancersim/locality"
    	"istio.io/istio/pkg/test/loadbalancersim/mesh"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 19 23:29:30 UTC 2022
    - 11K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/validation/validation_test.go

    					Field: "profiles[1].percentageOfNodesToScore",
    				},
    			},
    		},
    		"different-queue-sort": {
    			config: differentQueueSort,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: "profiles[1].plugins.queueSort",
    				},
    			},
    		},
    		"one-empty-queue-sort": {
    			config: oneEmptyQueueSort,
    			wantErrs: field.ErrorList{
    				&field.Error{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. pkg/controller/deployment/sync.go

    		// when scaling down, we should scale down older replica sets first.
    		var scalingOperation string
    		switch {
    		case deploymentReplicasToAdd > 0:
    			sort.Sort(controller.ReplicaSetsBySizeNewer(allRSs))
    			scalingOperation = "up"
    
    		case deploymentReplicasToAdd < 0:
    			sort.Sort(controller.ReplicaSetsBySizeOlder(allRSs))
    			scalingOperation = "down"
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/TableCollectionTest.java

                        return table.rowKeySet();
                      }
    
                      @Override
                      public List<String> order(List<String> insertionOrder) {
                        Collections.sort(insertionOrder);
                        return insertionOrder;
                      }
                    })
                .named("TreeBasedTable.rowKeySet")
                .withFeatures(COLLECTION_FEATURES_REMOVE_ORDER)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/ingress/conversion.go

    			log.Infof("failed to resolve named port %s, error: %v", backend.Service.Port.Name, err)
    			return nil
    		}
    		port.Number = uint32(resolvedPort)
    	}
    
    	return &networking.HTTPRoute{
    		Route: []*networking.HTTPRouteDestination{
    			{
    				Destination: &networking.Destination{
    					Host: fmt.Sprintf("%s.%s.svc.%s", backend.Service.Name, namespace, domainSuffix),
    					Port: port,
    				},
    				Weight: 100,
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conditions.go

    // setConditions sets the existingConditions with the new conditions
    func setConditions(generation int64, existingConditions []metav1.Condition, conditions map[string]*condition) []metav1.Condition {
    	// Sort keys for deterministic ordering
    	for _, k := range slices.Sort(maps.Keys(conditions)) {
    		cond := conditions[k]
    		setter := kstatus.UpdateConditionIfChanged
    		if cond.setOnce != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/preemption/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
    - 18.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/UnsignedBytes.java

       *
       * @since 23.1
       */
      public static void sort(byte[] array) {
        checkNotNull(array);
        sort(array, 0, array.length);
      }
    
      /**
       * Sorts the array between {@code fromIndex} inclusive and {@code toIndex} exclusive, treating its
       * elements as unsigned bytes.
       *
       * @since 23.1
       */
      public static void sort(byte[] array, int fromIndex, int toIndex) {
        checkNotNull(array);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/UnsignedLongs.java

       *
       * @since 23.1
       */
      public static void sort(long[] array) {
        checkNotNull(array);
        sort(array, 0, array.length);
      }
    
      /**
       * Sorts the array between {@code fromIndex} inclusive and {@code toIndex} exclusive, treating its
       * elements as unsigned 64-bit integers.
       *
       * @since 23.1
       */
      public static void sort(long[] array, int fromIndex, int toIndex) {
        checkNotNull(array);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top