Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 138 for Enumerations (0.16 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/MultiParentClassLoaderTest.groovy

            URL resource3 = new File('res3').toURI().toURL()
    
            given:
            _ * parent1.getResources('resource') >> { return Collections.enumeration([resource1, resource2]) }
            _ * parent2.getResources('resource') >> { return Collections.enumeration([resource1, resource3]) }
    
            expect:
            def resources = loader.getResources('resource').collect { it }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/extension/internal/CoreExtensionEntry.java

    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.net.URL;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.Enumeration;
    import java.util.HashSet;
    import java.util.LinkedHashSet;
    import java.util.Set;
    
    import org.apache.maven.api.xml.XmlNode;
    import org.apache.maven.project.ExtensionDescriptor;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 07:14:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/PathValidation.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api;
    
    /**
     * An enumeration for describing validation policies for file paths.
     */
    public enum PathValidation {
        NONE(), EXISTS(), FILE(), DIRECTORY()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 792 bytes
    - Viewed (0)
  4. src/main/java/jcifs/spnego/NegTokenTarg.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.spnego;
    
    
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.util.Enumeration;
    
    import org.bouncycastle.asn1.ASN1EncodableVector;
    import org.bouncycastle.asn1.ASN1Encoding;
    import org.bouncycastle.asn1.ASN1Enumerated;
    import org.bouncycastle.asn1.ASN1InputStream;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbComTransactionResponse.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    import java.util.Enumeration;
    
    abstract class SmbComTransactionResponse extends ServerMessageBlock implements Enumeration {
    
        // relative to headerStart
        private static final int SETUP_OFFSET        = 61;
    
        private static final int DISCONNECT_TID      = 0x01;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ResolverType.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs;
    
    
    /**
     * Enumeration of usable resolver types
     * 
     * @author mbechler
     *
     */
    public enum ResolverType {
        /**
         * Resolve using WINS server
         */
        RESOLVER_WINS,
    
        /**
         * NETBIOS broadcast
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  7. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

        }
    
        @Override
        public Injector discover(ClassLoader classLoader) {
            try {
                Enumeration<URL> enumeration = classLoader.getResources("META-INF/maven/org.apache.maven.api.di.Inject");
                while (enumeration.hasMoreElements()) {
                    try (InputStream is = enumeration.nextElement().openStream();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/ZipFileTree.java

    import org.gradle.api.provider.Provider;
    import org.gradle.internal.file.Chmod;
    import org.gradle.internal.hash.FileHasher;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Enumeration;
    import java.util.Iterator;
    import java.util.Map;
    import java.util.TreeMap;
    import java.util.concurrent.atomic.AtomicBoolean;
    
    import static java.lang.String.format;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.lang.reflect.Method;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.Enumeration;
    import java.util.HashSet;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Set;
    import java.util.logging.Logger;
    import junit.framework.Test;
    import junit.framework.TestCase;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/spnego/NegTokenInit.java

     */
    
    package jcifs.spnego;
    
    
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.util.Arrays;
    import java.util.Enumeration;
    
    import org.bouncycastle.asn1.*;
    
    import jcifs.util.Hexdump;
    
    
    /**
     * SPNEGO initial token
     */
    @SuppressWarnings ( "javadoc" )
    public class NegTokenInit extends SpnegoToken {
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top