Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 335 for Sort (0.1 sec)

  1. pkg/istio-agent/agent_test.go

    		}()
    
    		a.Check(t, security.WorkloadKeyCertResourceName, security.RootCertReqResourceName)
    	})
    	envoyReady := func(t test.Failer, name string, port int) {
    		retry.UntilSuccessOrFail(t, func() error {
    			_, err := http.DoHTTPGet(fmt.Sprintf("http://localhost:%d/ready", port))
    			if err != nil {
    				return fmt.Errorf("envoy %q is not ready", name)
    			}
    			return nil
    		}, retry.Timeout(time.Second*150))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. src/go/types/unify.go

    // from type parameters to types.
    func (u *unifier) String() string {
    	// sort type parameters for reproducible strings
    	tparams := make(typeParamsById, len(u.handles))
    	i := 0
    	for tpar := range u.handles {
    		tparams[i] = tpar
    		i++
    	}
    	sort.Sort(tparams)
    
    	var buf bytes.Buffer
    	w := newTypeWriter(&buf, nil)
    	w.byte('[')
    	for i, x := range tparams {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    		return nil, err
    	}
    	// '.' comes before '/', which comes before alphanumeric characters.
    	// So just sorting the list will put a filename like "net.md" before
    	// the directory "net". That is what we want.
    	slices.Sort(filenames)
    	return filenames, nil
    }
    
    // lastBlock returns the last block in the document.
    // It panics if the document has no blocks.
    func lastBlock(doc *md.Document) md.Block {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientsManager.java

        void selectIdleClientsToStop(Transformer<List<WorkerDaemonClient>, List<WorkerDaemonClient>> selectionFunction) {
            synchronized (lock) {
                List<WorkerDaemonClient> sortedClients = CollectionUtils.sort(idleClients, comparingInt(WorkerDaemonClient::getUses));
                List<WorkerDaemonClient> clientsToStop = selectionFunction.transform(new ArrayList<>(sortedClients));
                if (!clientsToStop.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionFactory.java

                    public boolean accept(File file) {
                        return hasExtension(file, ".jar");
                    }
                });
                // Make sure file order is always consistent
                Arrays.sort(files);
                return DefaultClassPath.of(files);
            }
        }
    
        private static class ClasspathDistribution implements Distribution {
            @Override
            public String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. cmd/endpoint-ellipses.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"errors"
    	"fmt"
    	"net/url"
    	"runtime"
    	"sort"
    	"strings"
    
    	"github.com/cespare/xxhash/v2"
    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/pkg/v3/ellipses"
    	"github.com/minio/pkg/v3/env"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. cmd/peer-s3-client.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"sort"
    	"strconv"
    	"sync/atomic"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/grid"
    	"github.com/minio/pkg/v3/sync/errgroup"
    	"golang.org/x/exp/slices"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/unify.go

    // from type parameters to types.
    func (u *unifier) String() string {
    	// sort type parameters for reproducible strings
    	tparams := make(typeParamsById, len(u.handles))
    	i := 0
    	for tpar := range u.handles {
    		tparams[i] = tpar
    		i++
    	}
    	sort.Sort(tparams)
    
    	var buf bytes.Buffer
    	w := newTypeWriter(&buf, nil)
    	w.byte('[')
    	for i, x := range tparams {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect.testing;
    
    import static java.util.Collections.sort;
    import static junit.framework.Assert.assertEquals;
    import static junit.framework.Assert.assertFalse;
    import static junit.framework.Assert.assertTrue;
    import static junit.framework.Assert.fail;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/Helpers.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect.testing;
    
    import static java.util.Collections.sort;
    import static junit.framework.Assert.assertEquals;
    import static junit.framework.Assert.assertFalse;
    import static junit.framework.Assert.assertTrue;
    import static junit.framework.Assert.fail;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top