Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,476 for Sort (0.18 sec)

  1. pkg/kubelet/config/config_test.go

    	return channel, ch, config
    }
    
    func expectPodUpdate(t *testing.T, ch <-chan kubetypes.PodUpdate, expected ...kubetypes.PodUpdate) {
    	for i := range expected {
    		update := <-ch
    		sort.Sort(sortedPods(update.Pods))
    		sort.Sort(sortedPods(expected[i].Pods))
    		// Make copies of the expected/actual update to compare all fields
    		// except for "Pods", which are compared separately below.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TopKSelector.java

          }
          iterations++;
          if (iterations >= maxIterations) {
            @SuppressWarnings("nullness") // safe because we pass sort() a range that contains real Ts
            T[] castBuffer = (T[]) buffer;
            // We've already taken O(k log k), let's make sure we don't take longer than O(k log k).
            Arrays.sort(castBuffer, left, right + 1, comparator);
            break;
          }
        }
        bufferSize = k;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ModelSetIntegrationTest.groovy

                  }
    
                  tasks {
                    create("printPeople") {
                      doLast {
                        def people = $.people
                        def names = people*.name.sort().join(", ")
                        println "names: $names"
                      }
                    }
                  }
                }
            '''
    
            then:
            succeeds "printPeople"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  4. ci/official/utilities/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: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

          return ImmutableSortedSet.orderedBy(STRING_REVERSED).add(elements).build();
        }
    
        @Override
        public List<String> order(List<String> insertionOrder) {
          Collections.sort(insertionOrder, Collections.reverseOrder());
          return insertionOrder;
        }
      }
    
      public static class ImmutableSortedSetExplicitSuperclassComparatorGenerator
          extends TestStringSetGenerator {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"Use sample_index=i to select the ith value (starting at 0)."),
    	"normalize": helpText(
    		"Scales profile based on the base profile."),
    
    	// Data sorting criteria
    	"flat": helpText("Sort entries based on own weight"),
    	"cum":  helpText("Sort entries based on cumulative weight"),
    
    	// Output granularity
    	"functions": helpText(
    		"Aggregate at the function level.",
    		"Ignores the filename where the function was defined."),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_ru.properties

    errors.invalid_query_parse_error=The given query is invalid.
    errors.invalid_query_sort_value=The given sort ({0}) is invalid.
    errors.invalid_query_unsupported_sort_field=The given sort ({0}) is not supported.
    errors.invalid_query_unsupported_sort_order=The given sort order ({0}) is not supported.
    
    errors.crud_invalid_mode=Invalid mode(expected value is {0}, but it's {1}).
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 20 12:12:28 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  9. pkg/kubelet/certificate/kubelet.go

    	for dnsName := range seenDNSNames {
    		dnsNames = append(dnsNames, dnsName)
    	}
    	for ip := range seenIPs {
    		ips = append(ips, netutils.ParseIPSloppy(ip))
    	}
    
    	// return in stable order
    	sort.Strings(dnsNames)
    	sort.Slice(ips, func(i, j int) bool { return ips[i].String() < ips[j].String() })
    
    	return dnsNames, ips
    }
    
    // NewKubeletClientCertificateManager sets up a certificate manager without a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/network.go

    	Network network.ID
    	// Cluster is the ID of the k8s cluster where this Gateway resides.
    	Cluster cluster.ID
    	// gateway ip address
    	Addr string
    	// gateway port
    	Port uint32
    }
    
    type NetworkGatewaysWatcher interface {
    	NetworkGateways() []NetworkGateway
    	AppendNetworkGatewayHandler(h func())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top