Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 242 for Generic (0.05 sec)

  1. cmd/generic-handlers_test.go

    Klaus Post <******@****.***> 1756435188 +0200
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. cmd/generic-handlers.go

    Klaus Post <******@****.***> 1756435188 +0200
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 20.7K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/core/lang/GenericsUtil.java

            }
            return null;
        }
    
        /**
         * Returns the generic type of the specified type for the given index.
         *
         * @param type the type to analyze
         * @param index the index of the generic type
         * @return the generic type class, or null if not found
         */
        public static Type getGenericParameter(final Type type, final int index) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  4. docs/uk/docs/python-types.md

    ////
    
    //// tab | Python 3.10 і вище
    
    ```Python hl_lines="1"
    {!> ../../docs_src/python_types/tutorial009_py310.py!}
    ```
    
    ////
    
    #### Generic типи
    
    Ці типи, які приймають параметри типу у квадратних дужках, називаються **Generic types** or **Generics**, наприклад:
    
    //// tab | Python 3.8 і вище
    
    * `List`
    * `Tuple`
    * `Set`
    * `Dict`
    * `Union`
    * `Optional`
    * ...та інші.
    
    ////
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/ACETest.java

                // Generic rights should be in bits 28-31 (0xF0000000)
                assertTrue(ACE.GENERIC_ALL >= 0x10000000, "GENERIC_ALL should be in generic rights range");
                assertTrue(ACE.GENERIC_EXECUTE >= 0x10000000, "GENERIC_EXECUTE should be in generic rights range");
                assertTrue(ACE.GENERIC_WRITE >= 0x10000000, "GENERIC_WRITE should be in generic rights range");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CompoundOrdering.java

      final Comparator<? super T>[] comparators;
    
      @SuppressWarnings("unchecked") // Generic array creation
      CompoundOrdering(Comparator<? super T> primary, Comparator<? super T> secondary) {
        this.comparators = (Comparator<? super T>[]) new Comparator<?>[] {primary, secondary};
      }
    
      @SuppressWarnings("unchecked") // Generic array creation
      CompoundOrdering(Iterable<? extends Comparator<? super T>> comparators) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jun 04 13:03:16 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/ACE.java

        public static final int SYNCHRONIZE = 0x00100000; // 20
        /** Generic all permissions */
        public static final int GENERIC_ALL = 0x10000000; // 28
        /** Generic execute permission */
        public static final int GENERIC_EXECUTE = 0x20000000; // 29
        /** Generic write permission */
        public static final int GENERIC_WRITE = 0x40000000; // 30
        /** Generic read permission */
        public static final int GENERIC_READ = 0x80000000; // 31
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ACE.java

         */
        int SYNCHRONIZE = 0x00100000; // 20
        /**
         * Generic all permissions
         */
        int GENERIC_ALL = 0x10000000; // 28
        /**
         * Generic execute permission
         */
        int GENERIC_EXECUTE = 0x20000000; // 29
        /**
         * Generic write permission
         */
        int GENERIC_WRITE = 0x40000000; // 30
        /**
         * Generic read permission
         */
        int GENERIC_READ = 0x80000000; // 31
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  9. docs/tr/docs/python-types.md

    #### Generic tipler
    
    Köşeli parantez içinde tip parametreleri alan bu türler, örneğin:
    
    * `List`
    * `Tuple`
    * `Set`
    * `Dict`
    * `Optional`
    * ...and others.
    
    **Generic types** yada  **Generics** olarak adlandırılır.
    
    ### Tip olarak Sınıflar
    
    Bir değişkenin tipini bir sınıf ile bildirebilirsiniz.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        /** Synchronize access right */
        int SYNCHRONIZE = 0x00100000; // 20
        /** Generic all access right */
        int GENERIC_ALL = 0x10000000; // 28
        /** Generic execute access right */
        int GENERIC_EXECUTE = 0x20000000; // 29
        /** Generic write access right */
        int GENERIC_WRITE = 0x40000000; // 30
        /** Generic read access right */
        int GENERIC_READ = 0x80000000; // 31
    
        // flags for move and copy
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top