- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 556 for attributes (0.08 sec)
-
.github/ISSUE_TEMPLATE/02-pkgsite-removal.yml
title: "x/pkgsite: package removal request for [type path here]" labels: ["pkgsite/package-removal"] body: - type: markdown attributes: value: "Please answer these questions before submitting your issue. Thanks!" - type: input id: package-path attributes: label: "What is the path of the package that you would like to have removed?" description: |
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jan 04 23:31:17 UTC 2024 - 1.9K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/50_maintainer_chore.yml
labels: [ "a:chore", "to-triage" ] assignees: [ ] body: - type: dropdown id: issue-type attributes: label: Issue type options: - Polishing - Deprecation - Refactoring - Other validations: required: true - type: textarea id: description attributes: label: Problem description description: |
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 12 11:52:53 UTC 2023 - 856 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/exentity/Role.java
public String toString() { return "Role [name=" + name + "]"; } public Map<String, String> getAttributes() { return attributes; } public void setAttributes(final Map<String, String> attributes) { this.attributes = attributes; } @Override public Map<String, Object> toSource() { final Map<String, Object> sourceMap = new HashMap<>();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.8K bytes - Viewed (0) -
guava/module.json
"version": "${pom.version}", "attributes": { "org.gradle.status": "${module.status}" } }, "createdBy": { "maven": { "version": "${maven.version}", "buildId": "${maven.build.version}" } }, "variants": [ { "name": "${variant.jvmEnvironmentVariantName}ApiElements", "attributes": { "org.gradle.category": "library",
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Sep 23 17:17:08 UTC 2024 - 8.2K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/feature_enhancement_request.yaml
- type: textarea attributes: label: Why do we need it to be improved? validations: required: true - type: textarea attributes: label: Example description: > Please provide an example usage of the feature that would be different with the improvement. render: java validations: required: true - type: textarea attributes: label: Current Behavior
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Nov 17 18:47:47 UTC 2023 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2SetFileInformation.java
static final int SMB_FILE_BASIC_INFO = 0x101; private int fid; private int attributes; private long createTime, lastWriteTime; Trans2SetFileInformation( int fid, int attributes, long createTime, long lastWriteTime ) { this.fid = fid; this.attributes = attributes; this.createTime = createTime; this.lastWriteTime = lastWriteTime;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java
} public static void validateAttributes(final Map<String, String> attributes, final Consumer<VaMessenger<FessMessages>> throwError) { ComponentUtil.getLdapManager().validateUserAttributes(Long.class, attributes, s -> throwError.accept(messages -> messages.addErrorsPropertyTypeLong("attributes." + s, "attributes." + s))); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/annotation/Secured.java
import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Java 5 annotation for describing service layer security attributes. * * <p> * The <code>Secured</code> annotation is used to define a list of security configuration * attributes for business methods. * <p> * For example: * * <pre> * @Secured({ "ROLE_USER" }) * public void create(Contact contact); *
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.8K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/DomBuilder.groovy
} protected Element createNode(Object name, Map attributes) { Element element = createNode(name) attributes.each {key, value -> element.setAttribute(key as String, value as String) } return element } protected Element createNode(Object name, Map attributes, Object value) { Element element = createNode(name, attributes) if (value instanceof Node) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java
if (manifest != null && manifest.getEntries() != null) { final Attributes attributes = manifest.getMainAttributes(); if (attributes != null && (attributes.get("Fess-WebAppJar") != null || attributes.getValue("Fess-WebAppJar") != null)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.5K bytes - Viewed (0)