Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 137 for getY (0.34 sec)

  1. docs/en/docs/tutorial/security/get-current-user.md

    # Get Current User { #get-current-user }
    
    In the previous chapter the security system (which is based on the dependency injection system) was giving the *path operation function* a `token` as a `str`:
    
    {* ../../docs_src/security/tutorial001_an_py39.py hl[12] *}
    
    But that is still not that useful.
    
    Let's make it give us the current user.
    
    ## Create a user model { #create-a-user-model }
    
    First, let's create a Pydantic user model.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/lease/LeaseManager.java

        public LeaseEntry getLease(Smb2LeaseKey key) {
            return leases.get(key);
        }
    
        /**
         * Get lease entry by path
         *
         * @param path file path
         * @return lease entry or null if not found
         */
        public LeaseEntry getLeaseByPath(String path) {
            Smb2LeaseKey key = pathToLease.get(path);
            return key != null ? leases.get(key) : null;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

        /**
         * Gets the witness reconnect delay in milliseconds.
         *
         * @return the reconnect delay
         */
        long getWitnessReconnectDelay();
    
        /**
         * Gets whether witness service discovery is enabled.
         *
         * @return true if discovery is enabled
         */
        boolean isWitnessServiceDiscovery();
    
        /**
         * Get RDMA port number
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        /**
         * Gets the design JSP file name for a given key.
         *
         * @param fileName The key for the JSP file.
         * @return The file name.
         */
        public String getDesignJspFileName(final String fileName) {
            return designJspFileNameMap.get(fileName);
        }
    
        /**
         * Gets an array of design JSP file names.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        }
    
        /**
         * Gets a document asynchronously.
         *
         * @param request the get request
         * @return a future for the get response
         */
        @Override
        public ActionFuture<GetResponse> get(final GetRequest request) {
            return client.get(request);
        }
    
        /**
         * Gets a document asynchronously with a callback.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/PreauthIntegrityService.java

        }
    
        /**
         * Gets the list of supported hash algorithms.
         *
         * @return array of supported algorithms
         */
        public int[] getSupportedHashAlgorithms() {
            return new int[] { HASH_ALGO_SHA512 };
        }
    
        /**
         * Gets the selected hash algorithm.
         *
         * @return the hash algorithm
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/BufferCache.java

        /**
         * Gets a buffer from the cache or creates a new one if the cache is empty.
         *
         * Performance: O(1) operation using concurrent queue
         *
         * @return a byte buffer for SMB operations
         * @throws IllegalStateException if buffer size exceeds maximum allowed
         */
        static public byte[] getBuffer() {
            // Try to get from cache first - O(1) operation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/MultiChannelManager.java

        }
    
        /**
         * Gets statistics for the multi-channel manager.
         *
         * @return channel statistics
         */
        public ChannelStatistics getStatistics() {
            return new ChannelStatistics(sessionChannels.size(),
                    sessionChannels.values().stream().mapToInt(ChannelGroup::getChannelCount).sum(), totalRequests.get(),
                    totalChannelsCreated.get());
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/util/transport/Transport.java

            } finally {
                super.finalize();
            }
        }
    
        /**
         * Gets the current usage count for this transport.
         *
         * @return the number of known usages
         */
        protected long getUsageCount() {
            return this.usageCount.get();
        }
    
        /**
         * Generate a unique key for the given request
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

        @Override
        public int getInitialCredits() {
            return getCredit();
        }
    
        /**
         * Gets the SMB dialect revision selected by the server.
         *
         * @return the dialectRevision
         */
        public int getDialectRevision() {
            return this.dialectRevision;
        }
    
        /**
         * Gets the server GUID used for identification.
         *
         * @return the serverGuid
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
Back to top