Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 354 for represented (0.14 sec)

  1. api/maven-api-annotations/src/main/java/org/apache/maven/api/annotations/Config.java

             * way for users to customize Maven's behavior at runtime.
             */
            USER_PROPERTIES,
            /**
             * Project model properties. These properties are defined in the project's POM file (pom.xml) and
             * are read from the project model during the build. They represent build-time configuration that
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/FieldDesc.java

         * @return {@literal true} if the field is parameterized
         */
        boolean isParameterized();
    
        /**
         * Returns the {@link ParameterizedClassDesc} that represents the type of the field.
         *
         * @return the {@link ParameterizedClassDesc} that represents the type of the field
         */
        ParameterizedClassDesc getParameterizedClassDesc();
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/InternetDomainName.java

       * ["mail", "google", "com"]}.
       */
      public ImmutableList<String> parts() {
        return parts;
      }
    
      /**
       * Indicates whether this domain name represents a <i>public suffix</i>, as defined by the Mozilla
       * Foundation's <a href="http://publicsuffix.org/">Public Suffix List</a> (PSL). A public suffix
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/transport/Request.java

    package jcifs.smb1.util.transport;
    
    /**
     * Marker interface for transport layer request objects.
     * Represents a request that can be sent through the SMB1 transport layer.
     */
    public interface Request {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 205 bytes
    - Viewed (0)
  5. docs/es/docs/tutorial/sql-databases.md

    /// tip | Consejo
    
    Puedes usar cualquier otro paquete de bases de datos SQL o NoSQL que quieras (en algunos casos llamadas <abbr title="Object Relational Mapper, 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. 😎
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/FileEntry.java

    package jcifs.smb1.smb1;
    
    /**
     * Represents a file or directory entry in SMB1 protocol.
     */
    public interface FileEntry {
    
        /**
         * Gets the name of the file or directory.
         *
         * @return the file or directory name
         */
        String getName();
    
        /**
         * Gets the type of the entry.
         *
         * @return the entry type
         */
        int getType();
    
        /**
         * Gets the file attributes.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 881 bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/rpc.java

         * Private constructor to prevent instantiation of utility class.
         */
        private rpc() {
            // Utility class
        }
    
        /**
         * UUID (Universally Unique Identifier) structure for DCE/RPC.
         * Represents a 128-bit UUID as defined by DCE/RPC specification.
         */
        public static class uuid_t extends NdrObject {
    
            /**
             * Default constructor for uuid_t.
             */
            public uuid_t() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ntlmssp/Type2Message.java

    package jcifs.ntlmssp;
    
    import java.io.IOException;
    import java.util.HashMap;
    import java.util.Map;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSContext;
    
    /**
     * Represents an NTLMSSP Type-2 message.
     */
    public class Type2Message extends NtlmMessage {
    
        private static final Logger log = LoggerFactory.getLogger(Type2Message.class);
    
        private byte[] challenge;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponseTest.java

        }
    
        // Helper methods to create mock buffers for different file information types
    
        private byte[] createMockFileBasicInfoBuffer() {
            // Create a buffer that represents FileBasicInfo data
            // FileBasicInfo typically contains creation time, last access time, last write time, change time, and attributes
            byte[] buffer = new byte[40];
    
            // Mock times (8 bytes each)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverResult.java

    import org.apache.maven.api.Repository;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * Represents the result of resolving an artifact.
     * <p>
     * This interface provides access to resolved artifacts, their associated paths, and any related exceptions that
     * occurred during the resolution process.
     * </p>
     *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 4.7K bytes
    - Viewed (0)
Back to top