Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 297 for atributos (0.06 sec)

  1. guava/module.json

    1. "version": "${pom.version}",
    2. "attributes": {
    3. "org.gradle.status": "${module.status}"
    4. }
    5. },
    6. "createdBy": {
    7. "maven": {
    8. "version": "${maven.version}",
    9. "buildId": "${maven.build.version}"
    10. }
    11. },
    12. "variants": [
    13. {
    14. "name": "${variant.jvmEnvironmentVariantName}ApiElements",
    15. "attributes": {
    16. "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)
  2. src/main/java/org/codelibs/fess/es/user/exentity/Role.java

    1. public String toString() {
    2. return "Role [name=" + name + "]";
    3. }
    4.  
    5. public Map<String, String> getAttributes() {
    6. return attributes;
    7. }
    8.  
    9. public void setAttributes(final Map<String, String> attributes) {
    10. this.attributes = attributes;
    11. }
    12.  
    13. @Override
    14. public Map<String, Object> toSource() {
    15. 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)
  3. .github/ISSUE_TEMPLATE/feature_enhancement_request.yaml

    1. - type: textarea
    2. attributes:
    3. label: Why do we need it to be improved?
    4. validations:
    5. required: true
    6.  
    7. - type: textarea
    8. attributes:
    9. label: Example
    10. description: >
    11. Please provide an example usage of the feature that would be different with the improvement.
    12. render: java
    13. validations:
    14. required: true
    15.  
    16. - type: textarea
    17. attributes:
    18. 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)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/DomBuilder.groovy

    1. }
    2.  
    3. protected Element createNode(Object name, Map attributes) {
    4. Element element = createNode(name)
    5. attributes.each {key, value ->
    6. element.setAttribute(key as String, value as String)
    7. }
    8. return element
    9. }
    10.  
    11. protected Element createNode(Object name, Map attributes, Object value) {
    12. Element element = createNode(name, attributes)
    13. 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)
  5. .github/ISSUE_TEMPLATE/privileged.yml

    1. body:
    2. - type: markdown
    3. attributes:
    4. value: |
    5. Thanks for your interest in FastAPI! 🚀
    6.  
    7. 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.
    8. - type: checkboxes
    9. id: privileged
    10. attributes:
    11. 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)
  6. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

    1. const char* operation_name,
    2. const TFE_OpAttrs* attributes, int expected_max_outputs,
    3. TF_Status* status) const {
    4. std::vector<PartialTensorShape> expected_output_shapes(expected_max_outputs);
    5. StartExecute(context, inputs, operation_name, attributes,
    6. 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)
  7. src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java

    1. }
    2. }
    3.  
    4. public static void validateAttributes(final Map<String, String> attributes, final Consumer<VaMessenger<FessMessages>> throwError) {
    5. ComponentUtil.getLdapManager().validateGroupAttributes(Long.class, attributes,
    6. s -> throwError.accept(messages -> messages.addErrorsPropertyTypeLong("attributes." + s, "attributes." + s)));
    7. }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java

    1. if (manifest != null && manifest.getEntries() != null) {
    2. final Attributes attributes = manifest.getMainAttributes();
    3. if (attributes != null
    4. && (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)
  9. src/main/webapp/WEB-INF/view/admin/group/admin_group_edit.jsp

    1. <label for="attributes.gidNumber" class="col-sm-3 text-sm-right col-form-label"><la:message
    2. key="labels.group_gidNumber"/></label>
    3. <div class="col-sm-9">
    4. <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)
  10. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

    1. archiveVersion = moduleIdentity.version.map { it.baseVersion.version }
    2. manifest.attributes(
    3. mapOf(
    4. Attributes.Name.IMPLEMENTATION_TITLE.toString() to "Gradle",
    5. Attributes.Name.IMPLEMENTATION_VERSION.toString() to moduleIdentity.version.map { it.baseVersion.version }
    6. )
    7. )
    8. }
    9. }
    10.  
    11. 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)
Back to top