Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for monkey (0.2 sec)

  1. maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java

            //
            // Put in a bogus file to make sure missing files cause the resolution to fail.
            //
            file = new File(getBasedir(), "src/test/repository-system/maven-monkey-2.1.0.jar");
            assertFalse(file.exists());
            d.setSystemPath(file.getCanonicalPath());
            artifact = repositorySystem.createDependencyArtifact(d);
    
            //
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingTable.java

      public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) {
        return delegate().contains(rowKey, columnKey);
      }
    
      @Override
      public boolean containsColumn(@CheckForNull Object columnKey) {
        return delegate().containsColumn(columnKey);
      }
    
      @Override
      public boolean containsRow(@CheckForNull Object rowKey) {
        return delegate().containsRow(rowKey);
      }
    
      @Override
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Jun 29 19:42:21 GMT 2021
    - 3.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableTable.java

      /**
       * {@inheritDoc}
       *
       * @throws NullPointerException if {@code rowKey} is {@code null}
       */
      @Override
      public ImmutableMap<C, V> row(R rowKey) {
        checkNotNull(rowKey, "rowKey");
        return MoreObjects.firstNonNull(
            (ImmutableMap<C, V>) rowMap().get(rowKey), ImmutableMap.<C, V>of());
      }
    
      @Override
      public ImmutableSet<R> rowKeySet() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java

        @CustomSize(maxKey = "form.admin.max.input.size")
        public String urls;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedUrls;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedUrls;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedDocUrls;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java

        public String name;
    
        @Size(max = 1000)
        public String description;
    
        @Required
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerName;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerParameter;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerScript;
    
        @Required
        @ValidateTypeFailure
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/SynchronizedNavigableMapTest.java

          return delegate().floorKey(key);
        }
    
        @Override
        public NavigableMap<K, V> headMap(K toKey, boolean inclusive) {
          assertTrue(Thread.holdsLock(mutex));
          return delegate().headMap(toKey, inclusive);
        }
    
        @Override
        public SortedMap<K, V> headMap(K toKey) {
          return headMap(toKey, false);
        }
    
        @Override
        public @Nullable Entry<K, V> higherEntry(K key) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 12.2K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblemCollector.java

     * it delegates to other components that potentially encounter problems. Then, the problem reporter can focus on
     * providing a simple error message, leaving the donkey work of creating a nice model problem to this component.
     *
     */
    public interface ModelProblemCollector {
    
        /**
         * The collected problems.
         * @return a list of model problems encountered, never {@code null}
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java

          standardClear();
        }
    
        @Override
        public boolean isEmpty() {
          return standardIsEmpty();
        }
    
        @Override
        public SortedMap<K, V> subMap(K fromKey, K toKey) {
          return standardSubMap(fromKey, toKey);
        }
    
        @Override
        public @Nullable Entry<K, V> lowerEntry(K key) {
          return standardLowerEntry(key);
        }
    
        @Override
        public @Nullable K lowerKey(K key) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 9.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/elevateword/CreateForm.java

        @ValidateTypeFailure
        public Integer crudMode;
    
        @Required
        public String suggestWord;
    
        public String reading;
    
        public String targetLabel;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String permissions;
    
        @Required
        @ValidateTypeFailure
        public Float boost;
    
        @Size(max = 1000)
        public String createdBy;
    
        @ValidateTypeFailure
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

        }
    
    
        private static byte[] getHmac ( byte[] data, byte[] key ) throws GeneralSecurityException {
            Key macKey = new SecretKeySpec(key.clone(), KerberosConstants.HMAC_ALGORITHM);
            Mac mac = Mac.getInstance(KerberosConstants.HMAC_ALGORITHM);
            mac.init(macKey);
            return mac.doFinal(data);
        }
    
    
        public String getUserRealm () {
            return this.userRealm;
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 11.4K bytes
    - Viewed (0)
Back to top