Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 268 for 2114 (0.06 sec)

  1. src/archive/tar/common.go

    //	}
    //	var sph sparseHoles = []sparseEntry{
    //		{Offset: 0,  Length: 2},  // Hole fragment for 0..1
    //		{Offset: 7,  Length: 11}, // Hole fragment for 7..17
    //		{Offset: 21, Length: 4},  // Hole fragment for 21..24
    //	}
    //
    // Then the content of the resulting sparse file with a Header.Size of 25 is:
    //
    //	var sparseFile = "\x00"*2 + "abcde" + "\x00"*11 + "fgh" + "\x00"*4
    type (
    	sparseDatas []sparseEntry
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Sep 13 21:03:27 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/Quantiles.java

    /*
     * Copyright (C) 2014 The Guava Authors
     *
     * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
     * in compliance with the License. You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software distributed under the License
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

        testSortDescending(new float[] {1, 2}, new float[] {2, 1});
        testSortDescending(new float[] {1, 3, 1}, new float[] {3, 1, 1});
        testSortDescending(new float[] {-1, 1, -2, 2}, new float[] {2, 1, -1, -2});
        testSortDescending(
            new float[] {-1, 1, Float.NaN, -2, -0f, 0, 2},
            new float[] {Float.NaN, 2, 1, 0, -0f, -1, -2});
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/IntsTest.java

        testSortDescending(new int[] {1, 2}, new int[] {2, 1});
        testSortDescending(new int[] {1, 3, 1}, new int[] {3, 1, 1});
        testSortDescending(new int[] {-1, 1, -2, 2}, new int[] {2, 1, -1, -2});
      }
    
      private static void testSortDescending(int[] input, int[] expectedOutput) {
        input = Arrays.copyOf(input, input.length);
        Ints.sortDescending(input);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/DoublesTest.java

        testSortDescending(new double[] {1, 2}, new double[] {2, 1});
        testSortDescending(new double[] {1, 3, 1}, new double[] {3, 1, 1});
        testSortDescending(new double[] {-1, 1, -2, 2}, new double[] {2, 1, -1, -2});
        testSortDescending(
            new double[] {-1, 1, Double.NaN, -2, -0.0, 0, 2},
            new double[] {Double.NaN, 2, 1, 0, -0.0, -1, -2});
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/primitives/FloatsTest.java

        testSortDescending(new float[] {1, 2}, new float[] {2, 1});
        testSortDescending(new float[] {1, 3, 1}, new float[] {3, 1, 1});
        testSortDescending(new float[] {-1, 1, -2, 2}, new float[] {2, 1, -1, -2});
        testSortDescending(
            new float[] {-1, 1, Float.NaN, -2, -0f, 0, 2},
            new float[] {Float.NaN, 2, 1, 0, -0f, -1, -2});
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/primitives/LongsTest.java

        testSortDescending(new long[] {1, 2}, new long[] {2, 1});
        testSortDescending(new long[] {1, 3, 1}, new long[] {3, 1, 1});
        testSortDescending(new long[] {-1, 1, -2, 2}, new long[] {2, 1, -1, -2});
      }
    
      private static void testSortDescending(long[] input, long[] expectedOutput) {
        input = Arrays.copyOf(input, input.length);
        Longs.sortDescending(input);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/asm.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package asm
    
    import (
    	"fmt"
    	"internal/abi"
    	"strconv"
    	"strings"
    	"text/scanner"
    
    	"cmd/asm/internal/arch"
    	"cmd/asm/internal/flags"
    	"cmd/asm/internal/lex"
    	"cmd/internal/obj"
    	"cmd/internal/obj/ppc64"
    	"cmd/internal/obj/riscv"
    	"cmd/internal/obj/x86"
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Oct 21 14:11:44 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. docs/en/docs/release-notes.md

    * 🌐 Add Chinese translation for Tutorial - Security - Simple OAuth2 with Password and Bearer. PR [#2514](https://github.com/tiangolo/fastapi/pull/2514) by [@waynerv](https://github.com/waynerv).
    * 🌐 Add Japanese translation for Deployment - Deta. PR [#2314](https://github.com/tiangolo/fastapi/pull/2314) by [@tokusumi](https://github.com/tokusumi).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Nov 01 11:25:57 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  10. CREDITS

    github.com/eapache/go-resiliency
    https://github.com/eapache/go-resiliency
    ----------------------------------------------------------------
    The MIT License (MIT)
    
    Copyright (c) 2014 Evan Huus
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 26 15:03:08 UTC 2024
    - 1.6M bytes
    - Viewed (0)
Back to top