- Sort Score
- Result 10 results
- Languages All
Results 1241 - 1250 of 5,847 for stringy (0.06 sec)
-
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/AbstractConflictResolverTest.java
assertEquals(expectedNode, resolvedNode, "Resolution node"); } protected Artifact createArtifact(String id, String version) throws InvalidVersionSpecificationException { return createArtifact(id, version, Artifact.SCOPE_COMPILE); } protected Artifact createArtifact(String id, String version, String scope) throws InvalidVersionSpecificationException {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.4K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadata.java
static final class PluginInfo { @Nonnull final String groupId; @Nonnull private final String artifactId; @Nullable private final String goalPrefix; @Nullable private final String name; PluginInfo(String groupId, String artifactId, String goalPrefix, String name) { this.groupId = groupId;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/CreateForm.java
public Integer crudMode; @Required @Size(max = 100) public String name; @Size(max = 100) public String password; @Size(max = 100) public String confirmPassword; public Map<String, String> attributes = new HashMap<>(); public String[] roles; public String[] groups; public void initialize() { crudMode = CrudMode.CREATE; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.4K bytes - Viewed (0) -
tensorflow/c/eager/c_api_test_util.h
const std::string& op_name, const std::string& send_device, const std::string& recv_device, tensorflow::uint64 send_device_incarnation); // Return a RecvOp op `op_name` with the attributes `send_device`, // `recv_device`, and `send_device_incarnation` set. TFE_Op* RecvOp(TFE_Context* ctx, const std::string& op_name,
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Jul 17 23:43:59 UTC 2023 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java
@Size(max = 100) public String hostname; @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer port; @Size(max = 100) public String authRealm; @Size(max = 10) public String protocolScheme; @Required @Size(max = 100) public String username; @Size(max = 100) public String password; @Size(max = 1000)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/validation/ModelValidationResult.java
return Collections.unmodifiableList(messages); } public void addMessage(String message) { messages.add(message); } public String toString() { return render(""); } public String render(String indentation) { if (messages.size() == 0) { return indentation + "There were no validation errors."; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
schema/constraint_test.go
package schema_test import ( "reflect" "sync" "testing" "gorm.io/gorm/schema" "gorm.io/gorm/utils/tests" ) type UserCheck struct { Name string `gorm:"check:name_checker,name <> 'jinzhu'"` Name2 string `gorm:"check:name <> 'jinzhu'"` Name3 string `gorm:"check:,name <> 'jinzhu'"` } func TestParseCheck(t *testing.T) { user, err := schema.Parse(&UserCheck{}, &sync.Map{}, schema.NamingStrategy{}) if err != nil {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sun Feb 04 07:49:19 UTC 2024 - 2.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/factory/DefaultArtifactFactory.java
} public Artifact createArtifact(String groupId, String artifactId, String version, String scope, String type) { return createArtifact(groupId, artifactId, version, scope, type, null, null); } public Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type, String classifier) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
public static final String LABELS_AUTH_REALM = "{labels.authRealm}"; /** The key of the message: Status */ public static final String LABELS_AVAILABLE = "{labels.available}"; /** The key of the message: Created by */ public static final String LABELS_CREATED_BY = "{labels.createdBy}"; /** The key of the message: Created Time */ public static final String LABELS_CREATED_TIME = "{labels.createdTime}";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 146.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
DES des = new DES( key7 ); des.encrypt( data, e8 ); System.arraycopy( e8, 0, e, i * 8, 8 ); } } static String DEFAULT_DOMAIN; static String DEFAULT_USERNAME; static String DEFAULT_PASSWORD; static final String BLANK = ""; public static final NtlmPasswordAuthentication ANONYMOUS = new NtlmPasswordAuthentication("", "", ""); static void initDefaults() {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 22.5K bytes - Viewed (0)