- Sort Score
- Result 10 results
- Languages All
Results 2121 - 2130 of 5,939 for stringy (0.09 sec)
-
src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.idl
typedef struct { [string] wchar_t *netname; int type; [string] wchar_t *remark; uint32_t permissions; uint32_t max_uses; uint32_t current_uses; [string] wchar_t *path; [string] wchar_t *password; uint32_t sd_size; [size_is(sd_size)] uint8_t *security_descriptor; } ShareInfo502; typedef struct { int count; [size_is(count)] ShareInfo502 *array; } ShareInfoCtr502;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 2.2K bytes - Viewed (0) -
cmd/bucket-replication-metrics_gen.go
// string "Count" o = append(o, 0x82, 0xa5, 0x43, 0x6f, 0x75, 0x6e, 0x74) o = msgp.AppendFloat64(o, z.Avg.Count) // string "Bytes" o = append(o, 0xa5, 0x42, 0x79, 0x74, 0x65, 0x73) o = msgp.AppendFloat64(o, z.Avg.Bytes) // string "pq" o = append(o, 0xa2, 0x70, 0x71) // map header, size 2 // string "Count" o = append(o, 0x82, 0xa5, 0x43, 0x6f, 0x75, 0x6e, 0x74) o = msgp.AppendFloat64(o, z.Max.Count) // string "Bytes"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Mar 21 17:21:35 UTC 2024 - 33.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
dependencyArtifact.setDependencyFilter(createDependencyFilter(dependency, inheritedFilter)); return dependencyArtifact; } private static String getEffectiveScope(String originalScope, String inheritedScope) { String effectiveScope = Artifact.SCOPE_RUNTIME; if (originalScope == null) { originalScope = Artifact.SCOPE_COMPILE; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 30.3K bytes - Viewed (0) -
common-protos/k8s.io/api/networking/v1beta1/generated.proto
// +optional optional string aPIGroup = 1; // kind is the type of resource being referenced. optional string kind = 2; // name is the name of resource being referenced. optional string name = 3; // scope represents if this refers to a cluster or namespace scoped resource. // This may be set to "Cluster" (default) or "Namespace". optional string scope = 4;
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 14.9K bytes - Viewed (0) -
tests/test_tutorial/test_security/test_tutorial003_an.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 8K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/DuplicateMojoDescriptorException.java
/** * DuplicateMojoDescriptorException */ public class DuplicateMojoDescriptorException extends InvalidPluginDescriptorException { public DuplicateMojoDescriptorException( String goalPrefix, String goal, String existingImplementation, String newImplementation) { super("Goal: " + goal + " already exists in the plugin descriptor for prefix: " + goalPrefix
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/SearchForm.java
*/ package org.codelibs.fess.app.web.admin.failureurl; /** * @author codelibs * @author Keiichi Watanabe */ public class SearchForm { public String url; public String errorCountMin; public String errorCountMax; public String errorName;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 880 bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/IncludesArtifactFilter.java
private final Set<String> patterns; public IncludesArtifactFilter(List<String> patterns) { this.patterns = new LinkedHashSet<>(patterns); } public boolean include(Artifact artifact) { String id = artifact.getGroupId() + ":" + artifact.getArtifactId(); boolean matched = false; for (Iterator<String> i = patterns.iterator(); i.hasNext() & !matched; ) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java
protected int sizeForDelete = 100; protected String scrollForDelete = "1m"; protected int sizeForCursor = 100; protected String scrollForCursor = "1m"; protected String searchTimeout = "3m"; protected String indexTimeout = "3m"; protected String scrollSearchTimeout = "3m"; protected String bulkTimeout = "3m"; protected String deleteTimeout = "3m"; protected String refreshTimeout = "1m";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 26.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/HashCodeTest.java
} public void testRoundTrip() { for (ExpectedHashCode expected : expectedHashCodes) { String string = HashCode.fromBytes(expected.bytes).toString(); assertEquals(expected.toString, string); assertEquals( expected.toString, HashCode.fromBytes(BaseEncoding.base16().lowerCase().decode(string)).toString()); } } public void testFromStringFailsWithInvalidHexChar() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 13.1K bytes - Viewed (0)