Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1821 - 1830 of 1,896 for unprotected (0.08 sec)

  1. guava/src/com/google/common/primitives/Longs.java

        static final Converter<String, Long> INSTANCE = new LongConverter();
    
        @Override
        protected Long doForward(String value) {
          return Long.decode(value);
        }
    
        @Override
        protected String doBackward(Long value) {
          return value.toString();
        }
    
        @Override
        public String toString() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 29K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

    /**
     */
    @Named
    @Singleton
    @Deprecated
    public class DefaultArtifactResolver implements ArtifactResolver, Disposable {
        @Inject
        private Logger logger;
    
        @Inject
        protected ArtifactFactory artifactFactory;
    
        @Inject
        private ArtifactCollector artifactCollector;
    
        @Inject
        private ResolutionErrorHandler resolutionErrorHandler;
    
        @Inject
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/sql-databases.md

    Next, we create a `HeroPublic` model, this is the one that will be **returned** to the clients of the API.
    
    It has the same fields as `HeroBase`, so it won't include `secret_name`.
    
    Finally, the identity of our heroes is protected! 🥷
    
    It also re-declares `id: int`. By doing this, we are making a **contract** with the API clients, so that they can always expect the `id` to be there and to be an `int` (it will never be `None`).
    
    /// tip
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 09 19:44:42 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/hash/BloomFilterTest.java

     */
    public class BloomFilterTest extends TestCase {
      private static final int NUM_PUTS = 100_000;
      private static final ThreadLocal<Random> random =
          new ThreadLocal<Random>() {
            @Override
            protected Random initialValue() {
              return new Random();
            }
          };
    
      private static final int GOLDEN_PRESENT_KEY = random.get().nextInt();
    
      @AndroidIncompatible // OutOfMemoryError
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/Helpers.java

        /*
         * We don't serialize this class in GWT, so we don't care about whether GWT will serialize this
         * field.
         */
        @GwtTransient private final String justAfterNull;
    
        protected NullsBefore(String justAfterNull) {
          if (justAfterNull == null) {
            throw new NullPointerException();
          }
    
          this.justAfterNull = justAfterNull;
        }
    
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.apple.installer+xml",
    				"application/vnd.apple.iwork",
    				"application/vnd.apple.keynote",
    				"application/vnd.apple.pages",
    				"application/vnd.apple.numbers",
    				"application/x-tika-iworks-protected",
    				"application/vnd.arastra.swi",
    				"application/vnd.audiograph",
    				"application/vnd.autopackage",
    				"application/vnd.avistar+xml",
    				"application/vnd.blueice.multipass",
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableList.java

        private final ImmutableList<E> list;
    
        Itr(ImmutableList<E> list, int index) {
          super(list.size(), index);
          this.list = list;
        }
    
        @Override
        protected E get(int index) {
          return list.get(index);
        }
      }
    
      @Override
      public int indexOf(@CheckForNull Object object) {
        return (object == null) ? -1 : Lists.indexOfImpl(this, object);
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

      private StatsAccumulator longManyValuesAccumulatorByAddAllIterator;
      private StatsAccumulator longManyValuesAccumulatorByAddAllVarargs;
    
      @Override
      protected void setUp() throws Exception {
        super.setUp();
    
        emptyAccumulator = new StatsAccumulator();
    
        emptyAccumulatorByAddAllEmptyIterable = new StatsAccumulator();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/InternetDomainName.java

       * registry suffix is one under which Internet users can directly register names via a domain name
       * registrar, and have such registrations lawfully protected by internet-governing bodies such as
       * ICANN. Examples of registry suffixes include {@code com}, {@code co.uk}, and {@code
       * pvt.k12.wy.us}. Examples of domain names that are <i>not</i> registry suffixes include {@code
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/ImmutableMapTest.java

                .createTestSuite());
    
        suite.addTest(
            MapTestSuiteBuilder.using(
                    new TestStringMapGenerator() {
                      @Override
                      protected Map<String, String> create(Entry<String, String>[] entries) {
                        ImmutableMap.Builder<String, String> builder = ImmutableMap.builder();
                        builder.putAll(asList(entries));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top