- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 297 for atributos (0.06 sec)
-
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) -
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) -
.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) -
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) -
.github/ISSUE_TEMPLATE/privileged.yml
- body:
- - type: markdown
- attributes:
- value: |
- Thanks for your interest in FastAPI! 🚀
- If you are not @tiangolo or he didn't ask you directly to create an issue here, please start the conversation in a [Question in GitHub Discussions](https://github.com/fastapi/fastapi/discussions/categories/questions) instead.
- - type: checkboxes
- id: privileged
- attributes:
- label: Privileged issue
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Jul 29 23:35:07 UTC 2024 - 888 bytes - Viewed (0) -
tensorflow/c/eager/parallel_device/parallel_device_lib.cc
- const char* operation_name,
- const TFE_OpAttrs* attributes, int expected_max_outputs,
- TF_Status* status) const {
- std::vector<PartialTensorShape> expected_output_shapes(expected_max_outputs);
- StartExecute(context, inputs, operation_name, attributes,
- expected_max_outputs, *default_cancellation_manager_);
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 21 04:14:14 UTC 2024 - 25.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java
- }
- }
- public static void validateAttributes(final Map<String, String> attributes, final Consumer<VaMessenger<FessMessages>> throwError) {
- ComponentUtil.getLdapManager().validateGroupAttributes(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 - 13.2K 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) -
src/main/webapp/WEB-INF/view/admin/group/admin_group_edit.jsp
- <label for="attributes.gidNumber" class="col-sm-3 text-sm-right col-form-label"><la:message
- key="labels.group_gidNumber"/></label>
- <div class="col-sm-9">
- <la:errors property="attributes.gidNumber"/>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Feb 14 12:15:45 UTC 2020 - 4.3K bytes - Viewed (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts
- archiveVersion = moduleIdentity.version.map { it.baseVersion.version }
- manifest.attributes(
- mapOf(
- Attributes.Name.IMPLEMENTATION_TITLE.toString() to "Gradle",
- Attributes.Name.IMPLEMENTATION_VERSION.toString() to moduleIdentity.version.map { it.baseVersion.version }
- )
- )
- }
- }
- fun configureClasspathManifestGeneration() {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed May 01 08:59:48 UTC 2024 - 4.4K bytes - Viewed (0)