Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 208 for representan (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/es/docs/tutorial/sql-databases.md

    Puedes usar cualquier otro paquete de bases de datos SQL o NoSQL que quieras (en algunos casos llamadas <abbr title="Object Relational Mapper – Mapeador Objeto-Relacional: un término elegante para un paquete donde algunas clases representan tablas SQL y las instances representan filas en esas tablas">"ORMs"</abbr>), FastAPI no te obliga a usar nada. 😎
    
    ///
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Dec 16 16:33:45 GMT 2025
    - 17K bytes
    - Click Count (0)
  2. docs/es/docs/advanced/security/oauth2-scopes.md

    La especificación de OAuth2 define "scopes" como una lista de strings separados por espacios.
    
    El contenido de cada uno de estos strings puede tener cualquier formato, pero no debe contener espacios.
    
    Estos scopes representan "permisos".
    
    En OpenAPI (por ejemplo, en la documentación de la API), puedes definir "esquemas de seguridad".
    
    Cuando uno de estos esquemas de seguridad usa OAuth2, también puedes declarar y usar scopes.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 10:15:01 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/core/lang/ClassUtil.java

        /**
         * Returns a {@link Constructor} object that reflects the specified {@code public} constructor of the class represented by the {@link Class} object.
         *
         * @param <T>
         *            The class represented by the {@link Class} object
         * @param clazz
         *            The {@link Class} object representing the class. Must not be {@literal null}.
         * @param argTypes
         *            The parameter types array
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 25.6K bytes
    - Click Count (0)
  4. src/main/java/jcifs/SmbResource.java

         * Tests to see if the file this <code>SmbResource</code> represents is not a directory.
         *
         * @return <code>true</code> if this <code>SmbResource</code> is not a directory
         * @throws CIFSException if an error occurs accessing the resource
         */
        boolean isFile() throws CIFSException;
    
        /**
         * Tests to see if the file this <code>SmbResource</code> represents is a directory.
         *
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 28K bytes
    - Click Count (1)
  5. src/main/java/jcifs/smb1/smb1/SID.java

                }
            }
        }
    
        /**
         * Gets the members of the group represented by this SID.
         *
         * @param authorityServerName the server to use for resolution
         * @param auth the authentication credentials to use
         * @param flags resolution flags
         * @return array of SIDs representing group members
         * @throws IOException if there is an error retrieving group members
         */
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 31.5K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

                return new ApiResult(this);
            }
        }
    
        /**
         * Represents an API response containing a list of backup files.
         */
        public static class ApiBackupFilesResponse extends ApiResponse {
            /**
             * The list of backup files, where each file is represented by a map of strings.
             */
            protected List<Map<String, String>> files;
            /**
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 24.9K bytes
    - Click Count (0)
  7. internal/s3select/sql/parser.go

    // Operand grammar follows below
    
    // Expression represents a logical disjunction of clauses
    type Expression struct {
    	And []*AndCondition `parser:"@@ ( \"OR\" @@ )*"`
    }
    
    // ListExpr represents a literal list with elements as expressions.
    type ListExpr struct {
    	Elements []*Expression `parser:"\"(\" @@ ( \",\" @@ )* \")\" | \"[\" @@ ( \",\" @@ )* \"]\""`
    }
    
    // AndCondition represents logical conjunction of clauses
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 12.9K bytes
    - Click Count (0)
  8. guava/src/com/google/common/net/InetAddresses.java

      private InetAddresses() {}
    
      /**
       * Returns an {@link Inet4Address}, given a byte array representation of the IPv4 address.
       *
       * @param bytes byte array representing an IPv4 address (should be of length 4)
       * @return {@link Inet4Address} corresponding to the supplied byte array
       * @throws IllegalArgumentException if a valid {@link Inet4Address} can not be created
       */
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Feb 19 21:24:11 GMT 2025
    - 47.4K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/core/io/TraversalUtil.java

            return className.replace('.', '/') + ".class";
        }
    
        /**
         * Returns the base directory above the root package from a URL representing a file.
         *
         * @param url
         *            The URL representing the file.
         * @param baseName
         *            The base name.
         * @return The base directory above the root package.
         */
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 18.6K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/core/lang/FieldUtil.java

         */
        protected FieldUtil() {
        }
    
        /**
         * Returns the value of a {@code static} field represented by the given {@link Field}.
         *
         * @param <T> the type of the field
         * @param field the field (must not be {@literal null})
         * @return the value represented by the {@code static} field
         * @throws IllegalAccessRuntimeException if the field cannot be accessed
         * @see Field#get(Object)
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 9.8K bytes
    - Click Count (0)
Back to Top