Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,681 for Subject (0.73 sec)

  1. android/guava/src/com/google/common/annotations/Beta.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Signifies that a public API (public class, method or field) is subject to incompatible changes,
     * or even removal, in a future release. An API bearing this annotation is exempt from any
     * compatibility guarantees made by its containing library. Note that the presence of this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/Kerb5Context.java

            }
        }
    
    
        Key searchSessionKey ( Subject subject ) throws GSSException {
            MIEName src = new MIEName(this.gssContext.getSrcName().export());
            MIEName targ = new MIEName(this.gssContext.getTargName().export());
    
            ASN1ObjectIdentifier mech = ASN1ObjectIdentifier.getInstance(this.gssContext.getMech().getDER());
            for ( KerberosTicket ticket : subject.getPrivateCredentials(KerberosTicket.class) ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Aug 02 08:22:42 UTC 2018
    - 13.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreator.java

                }
    
                @Override
                protected OptionalThing<SMailSubjectFilter> createSubjectFilter() {
                    return OptionalThing.of((view, subject) -> subject);
                }
    
                @Override
                protected OptionalThing<SMailAsyncStrategy> createAsyncStrategy() {
                    return OptionalThing.of((view, runnable) -> async(asyncManager, runnable));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java

                throw new ExtractException(e);
            }
        }
    
        protected void putValue(final ExtractData data, final String key, final Object value) {
            try {
                if (value instanceof String) {
                    if ("Subject".equals(key)) {
                        data.putValue(key, getDecodeText(value.toString()));
                    } else {
                        data.putValue(key, value.toString());
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         */
        String getMailSmtpServerMainHostAndPort();
    
        /**
         * Get the value for the key 'mail.subject.test.prefix'. <br>
         * The value is, e.g. [Test] <br>
         * comment: The prefix of subject to show test environment or not
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionRemoveAllTester.java

        } catch (UnsupportedOperationException expected) {
        }
        expectUnchanged();
        assertTrue(collection.contains(e0()));
      }
    
      /*
       * AbstractCollection fails the removeAll(null) test when the subject
       * collection is empty, but we'd still like to test removeAll(null) when we
       * can. We split the test into empty and non-empty cases. This allows us to
       * suppress only the former.
       */
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

         * 
         * Two <tt>NtlmPasswordAuthentication</tt> objects are equal if their caseless domain and username fields are equal
         *
         * @see java.lang.Object#equals(java.lang.Object)
         */
        @Override
        public boolean equals ( Object obj ) {
            if ( obj instanceof NtlmPasswordAuthenticator ) {
                NtlmPasswordAuthenticator ntlm = (NtlmPasswordAuthenticator) obj;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 18.8K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

       * @return the contents of the container under test, for use by {@link #expectContents(Object[])
       *     expectContents(E...)} and its friends.
       */
      protected abstract Collection<E> actualContents();
    
      /**
       * Replaces the existing container under test with a new container created by the subject
       * generator.
       *
       * @see #resetContainer(Object) resetContainer(C)
       * @return the new container instance.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionRetainAllTester.java

        initCollectionWithNullElement();
        expectReturnsTrue(disjoint);
        expectContents();
      }
    
      // retainAll(null)
    
      /*
       * AbstractCollection fails the retainAll(null) test when the subject
       * collection is empty, but we'd still like to test retainAll(null) when we
       * can. We split the test into empty and non-empty cases. This allows us to
       * suppress only the former.
       */
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java

         */
        final class Key<T> {
    
            private final Class<T> type;
            private final Object id;
    
            private Key(Class<T> type, Object id) {
                this.type = type;
                this.id = id;
            }
    
            public Class<T> type() {
                return type;
            }
    
            @Override
            public boolean equals(Object o) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top