Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2381 - 2390 of 3,421 for list (0.04 sec)

  1. src/archive/zip/reader.go

    		n = count
    	}
    	if n == 0 {
    		if count <= 0 {
    			return nil, nil
    		}
    		return nil, io.EOF
    	}
    	list := make([]fs.DirEntry, n)
    	for i := range list {
    		s, err := d.files[d.offset+i].stat()
    		if err != nil {
    			return nil, err
    		}
    		list[i] = s
    	}
    	d.offset += n
    	return list, nil
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Sat Aug 03 01:05:29 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.dict.synonym;
    
    import java.util.ArrayList;
    import java.util.Date;
    import java.util.List;
    
    import org.codelibs.fess.dict.DictionaryFile.PagingList;
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class SynonymFileTest extends UnitFessTestCase {
        private SynonymFile synonymFile;
    
        // TODO
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. helm-releases/minio-3.6.4.tgz

    of the configuration parameters used above - - `policies[].name` - name of the policy to create, must be a string with length > 0 - `policies[].statements[]` - list of statements, includes actions and resources - `policies[].statements[].resources[]` - list of resources that applies the statement - `policies[].statements[].actions[]` - list of actions granted ### Create user after install Install the chart, specifying the users you want to create after install: ```bash helm install --set users[0]...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Apr 12 01:30:28 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/WebConfigDbm.java

        public ColumnInfo columnUserAgent() {
            return _columnUserAgent;
        }
    
        public ColumnInfo columnVirtualHosts() {
            return _columnVirtualHosts;
        }
    
        protected List<ColumnInfo> ccil() {
            List<ColumnInfo> ls = newArrayList();
            ls.add(columnAvailable());
            ls.add(columnBoost());
            ls.add(columnConfigParameter());
            ls.add(columnCreatedBy());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * done.
       */
      public static final class DeferredCloser {
        @RetainedWith private final CloseableList list;
    
        DeferredCloser(CloseableList list) {
          this.list = list;
        }
    
        /**
         * Captures an object to be closed when a {@link ClosingFuture} pipeline is done.
         *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 08 19:36:35 UTC 2024
    - 98.5K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/header-params.md

    โญ โš’ `convert_underscores` `False`, ๐Ÿป ๐Ÿคฏ ๐Ÿ‘ˆ ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐Ÿ—ณ &amp; ๐Ÿ’ฝ / โš™๏ธ ๐ŸŽš โฎ๏ธ ๐ŸŽฆ.
    
    ///
    
    ## โŽ ๐ŸŽš
    
    โšซ๏ธ ๐Ÿ’ช ๐Ÿ“จ โŽ ๐ŸŽš. ๐Ÿ‘ˆ โ›“, ๐ŸŽ ๐ŸŽš โฎ๏ธ ๐Ÿ’— ๐Ÿ’ฒ.
    
    ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ”ฌ ๐Ÿ‘ˆ ๐Ÿ’ผ โš™๏ธ ๐Ÿ“‡ ๐Ÿ†Ž ๐Ÿ“„.
    
    ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ“จ ๐ŸŒ ๐Ÿ’ฒ โšช๏ธโžก๏ธ โŽ ๐ŸŽš ๐Ÿ `list`.
    
    ๐Ÿ–ผ, ๐Ÿ“ฃ ๐ŸŽš `X-Token` ๐Ÿ‘ˆ ๐Ÿ’ช ๐Ÿ˜‘ ๐ŸŒ… ๐ŸŒ˜ ๐Ÿ•, ๐Ÿ‘† ๐Ÿ’ช โœ:
    
    //// tab | ๐Ÿ 3๏ธโƒฃ.6๏ธโƒฃ &amp; ๐Ÿ”›
    
    ```Python hl_lines="9"
    {!> ../../docs_src/header_params/tutorial003.py!}
    ```
    
    ////
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/testers/MapEqualsTester.java

        assertFalse(
            "Maps of different sizes should not be equal.", getMap().equals(newHashMap(moreEntries)));
      }
    
      public void testEquals_list() {
        assertFalse(
            "A List should never equal a Map.", getMap().equals(copyToList(getMap().entrySet())));
      }
    
      private static <K, V> Map<K, V> newHashMap(
          Collection<? extends Entry<? extends K, ? extends V>> entries) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/ParametricNullness.java

     *       where the {@code ...} contains the names of all the other {@code ParametricNullness}
     *       annotations in Guava. Or you might prefer to omit Guava from your {@code AnnotatedPackages}
     *       list.
     *   <li><a href="https://developers.google.com/j2objc">J2ObjC</a>
     *   <li>{@code NullPointerTester}, at least in the Android backport (where the type-use annotations
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Aug 10 21:27:51 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ## Adicionando `dependencies` ao decorador da operaรงรฃo de rota
    
    O *decorador da operaรงรฃo de rota* recebe um argumento opcional `dependencies`.
    
    Ele deve ser uma lista de `Depends()`:
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="19"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/ParametricNullness.java

     *       where the {@code ...} contains the names of all the other {@code ParametricNullness}
     *       annotations in Guava. Or you might prefer to omit Guava from your {@code AnnotatedPackages}
     *       list.
     *   <li><a href="https://developers.google.com/j2objc">J2ObjC</a>
     *   <li>{@code NullPointerTester}, at least in the Android backport (where the type-use annotations
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Aug 10 21:27:51 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top