Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 20 for selectend (0.05 seconds)

  1. build-logic/build-update-utils/src/test/groovy/gradlebuild/buildutils/tasks/UpdateKotlinVersionsTest.groovy

        def "latest patch version"() {
            given:
            def allVersions = ["2.0.30", "2.0.20", "2.0.10", "2.0.0"] + previousVersions
    
            when:
            def selected = UpdateKotlinVersions.selectVersionsFrom(minimumSupported, allVersions)
    
            then:
            selected == ["1.9.10", "1.9.25", "2.0.30"]
        }
    
        def "beta of latest patch version"() {
            given:
            def allVersions = [
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Oct 29 08:29:55 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/orig/view/advance.jsp

    								key="labels.advance_search_filetype_html"
    							/></option>
    						<option value="pdf" <c:if test="${as.filetype.contains('pdf')}">selected</c:if>><la:message
    								key="labels.advance_search_filetype_pdf"
    							/></option>
    						<option value="word" <c:if test="${as.filetype.contains('word')}">selected</c:if>><la:message
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  3. build-logic/build-update-utils/src/test/groovy/gradlebuild/buildutils/tasks/UpdateAgpVersionsTest.groovy

                "8.8.0", "8.9.0",
                "9.0.0-alpha01", "9.0.0-beta01", "9.0.0-rc01"
            ].shuffled()
    
            when:
            def selected = UpdateAgpVersions.selectVersionsFrom(gradleVersion, null, allVersions)
    
            then:
            selected == ["8.9.0", "9.0.0-rc01"]
        }
    
        def "selects matching gradle major versions when stable or rc available (minimumSupported=#minimumSupported)"() {
            given:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 15 06:57:24 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  4. src/main/webapp/WEB-INF/view/advance.jsp

    								key="labels.advance_search_filetype_html"
    							/></option>
    						<option value="pdf" <c:if test="${as.filetype.contains('pdf')}">selected</c:if>><la:message
    								key="labels.advance_search_filetype_pdf"
    							/></option>
    						<option value="word" <c:if test="${as.filetype.contains('word')}">selected</c:if>><la:message
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 13 05:54:52 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  5. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

        private
        lateinit var providedBy: Set<String>
    
        private
        lateinit var selected: String
    
        private
        var upgrade: String? = null
    
        internal
        fun configure(components: ComponentMetadataHandler, configurations: ConfigurationContainer) {
            if (upgrade != null) {
                configurations.forceUpgrade(selected, upgrade!!)
            } else {
                providedBy.forEachIndexed { idx, provider ->
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 26 09:04:32 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  6. src/main/webapp/js/suggestor.js

                $item.attr("aria-selected", isSelected ? "true" : "false");
                if (isSelected) {
                  $textArea.val($item.text());
                }
              });
    
              if (listSelNum === 0) {
                $textArea.val(inputText);
              }
            },
    
            /**
             * Confirm the selected suggestion
             */
            fixList: function () {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 11:04:08 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  7. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        val maxParallelForks: Int = 4,
    ) {
        // Include cross version tests, these take care of selecting a very small set of versions to cover when run as part of this stage, including the current version
        QUICK(true, true, true, 120, 4),
    
        // Include cross version tests, these take care of selecting a very small set of versions to cover when run as part of this stage, including the current version
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 27.5K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java

        }
    
        protected void registerSpecifiedProperty(String propertyName) { // basically called by modified property registration
            if (__specifiedProperties != null) { // normally false, true if e.g. setting after selected
                __specifiedProperties.addPropertyName(propertyName);
            }
        }
    
        // ===================================================================================
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         * This field can be used to store custom application settings.
         */
        @Size(max = 10000)
        public String appValue;
    
        /**
         * Default label value to use when no specific label is selected.
         * This affects which documents are included in search results by default.
         */
        @Size(max = 1000)
        public String defaultLabelValue;
    
        /**
         * Default sort order for search results.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractBehavior.java

            final List<? extends RESULT> list = delegateSelectList(cb, entityType);
            if (list.isEmpty()) {
                return null;
            }
            if (list.size() >= 2) {
                String msg = "The size of selected list is over 1: " + list.size();
                throw new FetchingOverSafetySizeException(msg, 1); // immediately caught by caller and translated
            }
            return list.get(0);
        }
    
        @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 26.4K bytes
    - Click Count (0)
Back to Top