- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 323 for ridentifier (0.04 sec)
-
src/main/java/jcifs/dcerpc/msrpc/MsrpcLookupSids.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.dcerpc.msrpc; /** * MSRPC implementation for looking up security identifiers (SIDs). * This class provides functionality to resolve SIDs to their corresponding * account names using the LSA RPC interface. */ public class MsrpcLookupSids extends jcifs.dcerpc.msrpc.lsarpc.LsarLookupSids {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java
return CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, name()); } } /** Identifies all enterXxx and tryEnterXxx methods. */ private static boolean isAnyEnter(Method method) { return method.getName().startsWith("enter") || method.getName().startsWith("tryEnter"); } /** Identifies just tryEnterXxx methods (a subset of {@link #isAnyEnter}), which never block. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 27K bytes - Viewed (0) -
cmd/bitrot.go
return nil } } // Available reports whether the given algorithm is available. func (a BitrotAlgorithm) Available() bool { _, ok := bitrotAlgorithms[a] return ok } // String returns the string identifier for a given bitrot algorithm. // If the algorithm is not supported String panics. func (a BitrotAlgorithm) String() string { name, ok := bitrotAlgorithms[a] if !ok {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Feb 26 19:26:13 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java
* The CRUD operation mode for this form. * Indicates whether this is a create, read, update, or delete operation. */ @ValidateTypeFailure public int crudMode; /** * The unique identifier of the job log entry being edited. * This is a required field for identifying which job log to update. */ @Required @ValidateTypeFailure public String id; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java
private String[] newInputs; /** The new output synonyms, if updated. */ private String[] newOutputs; /** * Constructs a new synonym item. * * @param id The unique identifier of the item. * @param inputs The input words. * @param outputs The output synonyms. */ public SynonymItem(final long id, final String[] inputs, final String[] outputs) { this.id = id;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryCreator.java
return pattern.matcher(path).find(); } /** * Creates a new dictionary file instance for the given parameters. * * @param id the encoded identifier for the dictionary file * @param path the file path of the dictionary * @param timestamp the timestamp of the dictionary file * @return a new DictionaryFile instance */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
gradlew.bat
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem @rem SPDX-License-Identifier: Apache-2.0 @rem @if "%DEBUG%"=="" @echo off @rem ########################################################################## @rem @rem Gradle startup script for Windows @rem
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Apr 26 02:17:22 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2LockRequest.java
private final Smb2Lock[] locks; /** * Constructs an SMB2 lock request with the specified parameters. * * @param config the configuration for this request * @param fileId the file identifier for the file to lock * @param locks the array of lock elements to apply */ public Smb2LockRequest(final Configuration config, final byte[] fileId, final Smb2Lock[] locks) { super(config, SMB2_LOCK);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChange.java
private final boolean watchTree; /** * Constructs an NT transaction for change notification monitoring. * @param config the configuration context * @param fid the file identifier to monitor * @param completionFilter bitmask specifying the types of changes to monitor * @param watchTree true to monitor the entire directory tree, false for directory only */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/UploadForm.java
* This form is used in the admin interface to upload custom stopwords dictionary files. */ public class UploadForm { /** * The dictionary ID that identifies which stopwords dictionary configuration to update. * This ID corresponds to a specific stopwords dictionary instance in the system. */ @Required public String dictId; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0)