Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 386 for retrieve (0.97 sec)

  1. mvnw

        && CLASSPATH=$(cygpath --path --windows "$CLASSPATH")
      [ -n "$MAVEN_PROJECTBASEDIR" ] \
        && MAVEN_PROJECTBASEDIR=$(cygpath --path --windows "$MAVEN_PROJECTBASEDIR")
    fi
    
    # Provide a "standardized" way to retrieve the CLI args that will
    # work with both Windows and non-Windows executions.
    MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $*"
    export MAVEN_CMD_LINE_ARGS
    
    WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Oct 14 22:24:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

            return searchEngineClient.deleteByQuery(index, queryBuilder);
        }
    
        /**
         * Retrieves a document from the search index by its ID.
         *
         * @param searchEngineClient the search engine client to use for retrieval
         * @param id the document ID to retrieve
         * @param fields the fields to include in the response (null for all fields)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/TreeBasedTable.java

       * Ordering#natural()} is returned.
       *
       * @deprecated Store the {@link Comparator} alongside the {@link Table}. Or, if you know that the
       *     {@link Table} contains at least one value, you can retrieve the {@link Comparator} with:
       *     {@code ((SortedMap<C, V>) table.rowMap().values().iterator().next()).comparator();}.
       */
      @Deprecated
      public Comparator<? super C> columnComparator() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

                metadataRequest.setArtifact(rootArtifact);
                metadataRequest.setResolveManagedVersions(managedVersions == null);
    
                try {
                    ResolutionGroup resolutionGroup = source.retrieve(metadataRequest);
    
                    if (managedVersions == null) {
                        managedVersions = resolutionGroup.getManagedVersions();
                    }
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 25K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbSession.java

                            dc_list_expiration = now + 1000 * 60 * 15; /* 15 min */
                            if (LogStream.level >= 2) {
                                SmbTransport.log.println("Failed to retrieve DC list from WINS");
                            }
                        }
                    }
    
                    final int max = Math.min(dc_list.length, LOOKUP_RESP_LIMIT);
                    for (int j = 0; j < max; j++) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

        void close() throws SmbException {
            close(0L);
        }
    
        /**
         * Returns the {@code NtlmPasswordAuthentication} object used as
         * credentials with this file or pipe. This can be used to retrieve the
         * username for example:
         * {@code
         * String username = f.getPrincipal().getName();
         * }
         * The {@code Principal} object returned will never be {@code null}
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NtlmHttpFilter.java

                        this.dcList = list;
                    } else { /* keep using the old list */
                        this.dcListExpiration = now + 1000 * 60 * 15; /* 15 min */
                        log.warn("Failed to retrieve DC list from WINS");
                    }
                }
    
                final int max = Math.min(this.dcList.length, this.netbiosLookupRespLimit);
                for (int j = 0; j < max; j++) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/SmbOperationExceptionTest.java

            assertFalse(exception.isRetryable());
            assertFalse(exception.shouldRetry(1));
            assertEquals(0, exception.getRetryDelayMs(1));
        }
    
        @Test
        @DisplayName("Should add and retrieve context information")
        void testContextInformation() {
            // Given
            Map<String, Object> initialContext = new HashMap<>();
            initialContext.put("host", "server.example.com");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  9. cmd/admin-heal-ops.go

    			periodicTimer.Reset(time.Minute * 5)
    		case <-ctx.Done():
    			// server could be restarting - need
    			// to exit immediately
    			return
    		}
    	}
    }
    
    // getHealSequenceByToken - Retrieve a heal sequence by token. The second
    // argument returns if a heal sequence actually exists.
    func (ahs *allHealState) getHealSequenceByToken(token string) (h *healSequence, exists bool) {
    	ahs.RLock()
    	defer ahs.RUnlock()
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/DcerpcHandle.java

        /**
         * Gets the session key from the underlying SMB session for encryption
         * @return session key of the underlying smb session
         * @throws CIFSException if unable to retrieve the session key
         */
        public abstract byte[] getSessionKey() throws CIFSException;
    
        @Override
        public String toString() {
            return this.binding.toString();
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.9K bytes
    - Viewed (0)
Back to top