Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 50 for allowing (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt

            val releaseNotesLines: List<String> = releaseNotes.asFile.get().readLines()
            val contributorSectionBeginIndex = releaseNotesLines.indexOfFirst { it.startsWith("We would like to thank the following community members for their contributions to this release of Gradle:") } + 1
    
            if (contributorSectionBeginIndex == 0) {
                error("Can't find the contributors section in the release notes $releaseNotes.")
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jun 24 07:54:08 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslRuntimeGeneratedSources.java

     *
     * Doing it correctly would require running a Gradle build with the full
     * distribution and extracting the generated api jar from its Gradle user home,
     * slowing down building documentation.
     *
     * All this would be so much simpler if the Kotlin extensions to the Gradle API
     * were generated at build time instead.
     *
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Sun Mar 19 17:15:23 GMT 2023
    - 3.9K bytes
    - Click Count (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateFixedIssuesInReleaseNotes.kt

    
    data class GitHubIssue(
        val number: Int,
        val title: String,
        @SerializedName("html_url") val htmlUrl: String
    )
    
    
    const val FIXED_ISSUES_INTRO = "The following issues were resolved:"
    
    
    @DisableCachingByDefault(because = "Depends on GitHub API")
    abstract class UpdateFixedIssuesInReleaseNotes : DefaultTask() {
    
        @get:Internal
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 14:49:33 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

     *
     * <p>This authenticator enables Single Sign-On (SSO) using SAML 2.0 protocol
     * with Identity Providers such as Okta, Azure AD, OneLogin, etc.</p>
     *
     * <h2>Required Configuration</h2>
     * <p>Add the following properties to {@code system.properties}:</p>
     * <pre>
     * # Enable SAML SSO
     * sso.type=saml
     *
     * # Identity Provider settings (obtain from your IdP)
     * saml.idp.entityid=http://www.okta.com/xxxxx
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 03:13:33 GMT 2026
    - 20.2K bytes
    - Click Count (3)
  5. src/packaging/deb/init.d/fess

    if [ `id -u` -ne 0 ]; then
    	echo "You need root privileges to run this script"
    	exit 1
    fi
    
    
    . /lib/lsb/init-functions
    
    if [ -r /etc/default/rcS ]; then
    	. /etc/default/rcS
    fi
    
    # The following variables can be overwritten in $DEFAULT
    
    # Run Fess as this user ID and group ID
    FESS_USER=${packaging.fess.user}
    FESS_GROUP=${packaging.fess.group}
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.8K bytes
    - Click Count (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java

            }
        }
    
        /**
         * Automatically accept changes that are valid property upgrades of a getter or setter.
         *
         * Here we automatically accept the following cases:
         * - A setter `setX` of an upgraded property is removed
         * - A boolean `isX` of an upgraded property is removed
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 24 14:15:15 GMT 2025
    - 9.3K bytes
    - Click Count (0)
  7. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                                }]
                            }]
                            """
                    )
                }
            ) {
                assertOutputContains("The following accessors were upgraded, but didn't match any removed/changed method:\n\ncom.example.Task#setSourceCompatibility(Ljava/lang/String;)V")
            }
        }
    
        @Test
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 24 14:15:15 GMT 2025
    - 26.2K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

     * This class extends Thread and continuously processes access results from the crawler,
     * transforms them into indexed documents, and updates the OpenSearch index.
     *
     * <p>The updater performs the following key operations:
     * <ul>
     * <li>Retrieves crawled documents from the data service</li>
     * <li>Transforms document data using appropriate transformers</li>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 32.9K bytes
    - Click Count (0)
  9. architecture/standards/0006-use-of-provider-apis-in-gradle.md

    some objects set conventions in the object's constructor (3), but this can lead to unexpected assumptions or coupling between plugins.
    
    For external plugins, it's difficult for an object to be used outside the application of a plugin, so following best practices is relatively straightforward.  For core plugins in gradle/gradle, it's easy for an object to be created without applying its associated plugin. For instance, Spring has a plugin that uses the Checkstyle task directly without applying...
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 10K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

        /** Robots tag value indicating no indexing or following */
        private static final String ROBOTS_TAG_NONE = "none";
    
        /** Robots tag value indicating no indexing */
        private static final String ROBOTS_TAG_NOINDEX = "noindex";
    
        /** Robots tag value indicating no following of links */
        private static final String ROBOTS_TAG_NOFOLLOW = "nofollow";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 55.3K bytes
    - Click Count (0)
Back to Top