Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 599 for attributes (0.18 sec)

  1. .github/ISSUE_TEMPLATE/11-language-change.yml

    title: "proposal: Go 2: proposal title"
    
    
    body:
      - type: markdown
        attributes:
          value: |
           ## Our process for evaluating language changes can be found [here](https://go.googlesource.com/proposal/+/refs/heads/master#language-changes)
    
      - type: dropdown
        id: author-go-experience
        attributes:
          label: "Go Programming Experience"
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 22 20:49:24 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/bug-report.yaml

      - type: textarea
        id: expected
        attributes:
          label: What did you expect to happen?
        validations:
          required: true
    
      - type: textarea
        id: repro
        attributes:
          label: How can we reproduce it (as minimally and precisely as possible)?
        validations:
          required: true
    
      - type: textarea
        id: additional
        attributes:
          label: Anything else we need to know?
    
    Others
    - Registered: Fri Apr 19 09:05:10 GMT 2024
    - Last Modified: Mon Feb 28 09:34:43 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/user/admin_user_edit.jsp

                                                    key="labels.user_homePhone"/></label>
                                            <div class="col-sm-9">
                                                <la:errors property="attributes.homePhone"/>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 14 12:15:45 GMT 2020
    - 31.4K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/bug_report.yaml

    name: Bug Report
    description: Something is not working as expected
    labels: ["type=defect"]
    body:
      - type: markdown
        attributes:
          value: >
            Thank you for filing a bug report. Please help us identify and resolve the bug by filling
            out the following fields.
    
      - type: textarea
        attributes:
          label: Description
          description: Please describe the issue you encountered.
        validations:
          required: true
    
    Others
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Oct 27 19:53:41 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  5. .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
    Others
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Nov 17 18:47:47 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                final Map<String, Object> attributes = new HashMap<>();
                attributes.put("accesstoken", tr.getAccessToken());
                attributes.put("refreshtoken", tr.getRefreshToken() == null ? "null" : tr.getRefreshToken());
                attributes.put("tokentype", tr.getTokenType());
                attributes.put("expire", tr.getExpiresInSeconds());
                attributes.put("jwtheader", jwtHeader);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                attributes.put("sectlinks", true);
                attributes.put("linkattrs", true);
                attributes.put("reproducible", "");
                attributes.put("docinfo", "");
                attributes.put("lang", "en-US");
                attributes.put("encoding", "utf-8");
                attributes.put("idprefix", "");
                attributes.put("website", "https://gradle.org");
                // TODO: This breaks the provider
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Mar 01 05:46:51 GMT 2024
    - 17.7K bytes
    - Viewed (0)
  8. build-logic/jvm/src/main/kotlin/gradlebuild.launchable-jar.gradle.kts

    fun Configuration.configureAsJarClasspath() {
        isCanBeResolved = true
        isCanBeConsumed = false
    
        attributes {
            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.LIBRARY))
            attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements.JAR))
        }
    }
    
    tasks.jar.configure {
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Feb 28 23:38:57 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  9. .github/DISCUSSION_TEMPLATE/questions.yml

          required: true
      - type: dropdown
        id: os
        attributes:
          label: Operating System
          description: What operating system are you on?
          multiple: true
          options:
            - Linux
            - Windows
            - macOS
            - Other
        validations:
          required: true
      - type: textarea
        id: os-details
        attributes:
          label: Operating System Details
    Others
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Aug 03 15:59:41 GMT 2023
    - 5.8K bytes
    - Viewed (1)
  10. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomAttributeIterator.java

        public int getPosition() {
            return position;
        }
    
        public boolean setPosition(int position) {
            this.position = position;
            attribute = (position > 0 && position <= attributes.size()) ? attributes.get(position - 1) : null;
            return attribute != null;
        }
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
Back to top