- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 5,126 for flaw (0.02 sec)
-
docs/debugging/xattr/main.go
} func main() { flag.StringVar(&path, "path", "", "path name where the attribute shall be applied") flag.StringVar(&name, "name", "", "attribute name or it can be a wildcard if '.' is specified") flag.Uint64Var(&value, "value", 0, "attribute value expects the value to be uint64") flag.BoolVar(&set, "set", false, "this is a set attribute operation") flag.Parse() if set && value == 0 {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Dec 29 23:52:41 UTC 2023 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java
*/ private int allRecordCount; /** * Total number of pages. */ private int allPageCount; /** * Flag indicating if a previous page exists. */ private boolean existPrePage; /** * Flag indicating if a next page exists. */ private boolean existNextPage; /** * List of page numbers for pagination. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
docs/sts/web-identity.go
return d, nil } func init() { flag.StringVar(&stsEndpoint, "sts-ep", "http://localhost:9000", "STS endpoint") flag.StringVar(&configEndpoint, "config-ep", "http://localhost:8080/auth/realms/minio/.well-known/openid-configuration", "OpenID discovery document endpoint") flag.StringVar(&clientID, "cid", "", "Client ID") flag.StringVar(&clientSec, "csec", "", "Client Secret")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 19 09:13:33 UTC 2023 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
public static final int ACB_NORMAL = 16; /** Account control bit flag: MNS logon user account */ public static final int ACB_MNS = 32; /** Account control bit flag: Interdomain trust account */ public static final int ACB_DOMTRUST = 64; /** Account control bit flag: Workstation trust account */ public static final int ACB_WSTRUST = 128;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
public static final int ACB_NORMAL = 16; /** Account control bit flag: MNS logon user account */ public static final int ACB_MNS = 32; /** Account control bit flag: Interdomain trust account */ public static final int ACB_DOMTRUST = 64; /** Account control bit flag: Workstation trust account */ public static final int ACB_WSTRUST = 128;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/DcerpcMessageTest.java
for (int flag : new int[] { 0, 0xFF, 0x01, 0x80 }) { TestMessage m = new TestMessage(); m.ptype = 0; m.flags = flag; NdrBuffer buf = new NdrBuffer(new byte[1024], 0); m.encode(buf); // Reset and skip to flags field buf.setIndex(3); assertEquals(flag, buf.dec_ndr_small()); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/MathTesting.java
static final Iterable<Integer> ALL_INTEGER_CANDIDATES; static { ImmutableSet.Builder<Integer> intValues = ImmutableSet.builder(); // Add boundary values manually to avoid over/under flow (this covers 2^N for 0 and 31). intValues.add(Integer.MAX_VALUE - 1, Integer.MAX_VALUE); // Add values up to 40. This covers cases like "square of a prime" and such. for (int i = 1; i <= 40; i++) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/Smb2ChannelCapabilities.java
*/ public static final int ABSOLUTE_MAX_CHANNELS = 32; /** * Network interface capability flag for RSS support */ public static final int NETWORK_INTERFACE_CAP_RSS = 0x00000001; /** * Network interface capability flag for RDMA support */ public static final int NETWORK_INTERFACE_CAP_RDMA = 0x00000002; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 2.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/MetadataResolutionRequest.java
private List<ArtifactRepository> remoteRepositories; // This is like a filter but overrides all transitive versions private Map managedVersionMap; /** result type - flat list; the default */ private boolean asList = true; /** result type - dirty tree */ private boolean asDirtyTree = false; /** result type - resolved tree */ private boolean asResolvedTree = false;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/QueryContext.java
protected Set<String> highlightedQuerySet = null; /** Map storing field names and their associated query terms for logging. */ protected Map<String, List<String>> fieldLogMap = null; /** Flag indicating whether role-based query filtering should be disabled. */ protected boolean disableRoleQuery = false; /** The default field to search in when no specific field is specified. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0)