Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for enumeration (0.17 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/MultiParentClassLoader.java

            }
            return null;
        }
    
        @SuppressWarnings("URLEqualsHashCode")
        @Override
        public Enumeration<URL> getResources(String name) throws IOException {
            Set<URL> resources = new LinkedHashSet<URL>();
            for (ClassLoader parent : parents) {
                Enumeration<URL> parentResources = parent.getResources(name);
                while (parentResources.hasMoreElements()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/path-params.md

    <img src="/img/tutorial/path-params/image03.png">
    
    ### Trabalhando com os *enumeration* do Python
    
    O valor do *parâmetro da rota* será um *membro de enumeration*.
    
    #### Compare *membros de enumeration*
    
    Você pode comparar eles com o *membro de enumeration* no enum `ModelName` que você criou:
    
    ```Python hl_lines="17"
    {!../../../docs_src/path_params/tutorial005.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

     *
     * <h2>Relationship with Java compiler standard location</h2>
     * This enumeration is closely related to the {@link JavaFileManager.Location} enumerations.
     * A difference is that the latter enumerates input and output files, while {@code JavaPathType}
     * enumerates only input dependencies. Another difference is that {@code JavaPathType} contains
     * some enumeration values used only at runtime and therefore not available in {@code javax.tool},
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. docs/fr/docs/tutorial/path-params.md

    <img src="/img/tutorial/path-params/image03.png">
    
    ### Manipuler les *énumérations* Python
    
    La valeur du *paramètre de chemin* sera un des "membres" de l'énumération.
    
    #### Comparer les *membres d'énumération*
    
    Vous pouvez comparer ce paramètre avec les membres de votre énumération `ModelName` :
    
    ```Python hl_lines="17"
    {!../../../docs_src/path_params/tutorial005.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/impl/FileZipInput.java

    import org.gradle.internal.file.FileException;
    
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Enumeration;
    import java.util.Iterator;
    import java.util.zip.ZipFile;
    
    public class FileZipInput implements ZipInput {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. 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)
  7. android/guava/src/com/google/common/collect/Iterators.java

       *
       * <p>The {@code Iterable} equivalent of this method is either {@link Collections#enumeration} (if
       * you have a {@link Collection}), or {@code Iterators.asEnumeration(collection.iterator())}.
       */
      public static <T extends @Nullable Object> Enumeration<T> asEnumeration(Iterator<T> iterator) {
        checkNotNull(iterator);
        return new Enumeration<T>() {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Iterators.java

       *
       * <p>The {@code Iterable} equivalent of this method is either {@link Collections#enumeration} (if
       * you have a {@link Collection}), or {@code Iterators.asEnumeration(collection.iterator())}.
       */
      public static <T extends @Nullable Object> Enumeration<T> asEnumeration(Iterator<T> iterator) {
        checkNotNull(iterator);
        return new Enumeration<T>() {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. src/runtime/traceexp.go

    	refill := w.traceBuf == nil || !w.available(maxSize)
    	if refill {
    		w.traceWriter = w.traceWriter.refill(w.exp)
    	}
    	return w, refill
    }
    
    // traceExperiment is an enumeration of the different kinds of experiments supported for tracing.
    type traceExperiment uint8
    
    const (
    	// traceNoExperiment indicates no experiment.
    	traceNoExperiment traceExperiment = iota
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

        public boolean isEmpty() {
            reportAggregatingAccess();
            return delegate.isEmpty();
        }
    
        @Override
        public Enumeration<Object> keys() {
            reportAggregatingAccess();
            return delegate.keys();
        }
    
        @Override
        public Enumeration<Object> elements() {
            reportAggregatingAccess();
            return delegate.elements();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top