Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 384 for config_url (0.07 seconds)

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

  1. build-tools-internal/src/integTest/resources/org/elasticsearch/gradle/internal/fake_git/remote/distribution/archives/build.gradle

        }
    
        tasks.register('extracted', Copy) {
            from('.')
            destinationDir = file('build/extractedDistro')
        }
    
        tasks.register("extractedAssemble").configure {
            dependsOn('extracted')
        }
    
        tasks.named("assemble").configure {
            dependsOn('tar')
        }
    }
    
    def calculateBranchVersion() {
        File f = rootProject.file(".git/refs/heads/origin")
        def branchName = f.list()?.first().trim()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

            assertTrue(result.contains("Delete operation failed"));
            assertTrue(result.endsWith("\n"));
        }
    
        @Test
        public void test_execute_withCustomFieldName() {
            // Configure custom expires field name
            expiresFieldName = "custom_expires_field";
    
            // Re-register FessConfig with updated field name
            fessConfig = new TestFessConfig() {
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.4K bytes
    - Click Count (0)
  3. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/precommit/PrecommitTaskPlugin.java

                    );
            project.getPluginManager().withPlugin("java", p -> {
                // run compilation as part of precommit
                project.getExtensions().getByType(JavaPluginExtension.class).getSourceSets().all(sourceSet ->
                        precommit.configure(t -> t.shouldRunAfter(sourceSet.getClassesTaskName()))
                );
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jun 23 09:36:58 GMT 2021
    - 1.8K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/InternalClusterTestPlugin.java

        @Override
        public void apply(Project project) {
            TaskProvider<Test> internalClusterTest = GradleUtils.addTestSourceSet(project, SOURCE_SET_NAME);
            internalClusterTest.configure(task -> {
                // Set GC options to mirror defaults in jvm.options
                if (BuildParams.getRuntimeJavaVersion().compareTo(JavaVersion.VERSION_14) < 0) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jun 02 23:12:29 GMT 2021
    - 1.8K bytes
    - Click Count (0)
  5. helm-releases/minio-4.0.12.tgz

    See https://docs.min.io/minio/baremetal/security/openid-external-identity-management/external-authentication-with-openid-identity-provider.html#minio-external-identity-management-openid for a tutorial on using these variables. oidc: enabled: false configUrl: "https://identity-provider-url/.well-known/openid-configuration" clientId: "minio" clientSecret: "" claimName: "policy" scopes: "openid,profile,email" redirectUri: "https://console-endpoint-url/oauth_callback" # Can leave empty claimPrefix: "" comment:...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Aug 14 05:50:43 GMT 2022
    - 19.4K bytes
    - Click Count (0)
  6. helm-releases/minio-4.0.13.tgz

    See https://docs.min.io/minio/baremetal/security/openid-external-identity-management/external-authentication-with-openid-identity-provider.html#minio-external-identity-management-openid for a tutorial on using these variables. oidc: enabled: false configUrl: "https://identity-provider-url/.well-known/openid-configuration" clientId: "minio" clientSecret: "" claimName: "policy" scopes: "openid,profile,email" redirectUri: "https://console-endpoint-url/oauth_callback" # Can leave empty claimPrefix: "" comment:...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 23 18:18:14 GMT 2022
    - 19.5K bytes
    - Click Count (0)
  7. internal/config/ilm/help.go

    const (
    	transitionWorkers = "transition_workers"
    	expirationWorkers = "expiration_workers"
    	// EnvILMTransitionWorkers env variable to configure number of transition workers
    	EnvILMTransitionWorkers = "MINIO_ILM_TRANSITION_WORKERS"
    	// EnvILMExpirationWorkers env variable to configure number of expiration workers
    	EnvILMExpirationWorkers = "MINIO_ILM_EXPIRATION_WORKERS"
    )
    
    var (
    	defaultHelpPostfix = func(key string) string {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu May 30 08:14:58 GMT 2024
    - 1.8K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/StandaloneTestPlugin.java

            project.getTasks().register("test", Test.class).configure(test -> {
                test.setGroup(JavaBasePlugin.VERIFICATION_GROUP);
                test.setDescription("Runs unit tests that are separate");
                test.mustRunAfter(project.getTasks().getByName("precommit"));
            });
    
            project.getTasks().named("check").configure(task -> task.dependsOn(project.getTasks().named("test")));
        }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jun 23 09:36:58 GMT 2021
    - 1.4K bytes
    - Click Count (0)
  9. MIGRATION.md

      --data-binary @documents.ndjson
    ```
    
    #### Crawl-Based Migration
    
    Alternatively, let Fess recrawl your content:
    
    1. **Web Content**: Configure Web Crawler with starting URLs
    2. **File Shares**: Configure File Crawler with SMB/FTP paths
    3. **Databases**: Configure Data Store crawling with JDBC connections
    
    ---
    
    ## Data Import Methods
    
    Fess provides multiple methods for importing data:
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 12:40:11 GMT 2025
    - 23.2K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/TestWithSslPlugin.java

                .configureEach(plugin -> project.getTasks().named(FORBIDDEN_PATTERNS_TASK_NAME).configure(t -> t.dependsOn(exportKeyStore)));
            project.getPlugins()
                .withType(FilePermissionsPrecommitPlugin.class)
                .configureEach(
                    filePermissionPlugin -> project.getTasks().named(FILEPERMISSIONS_TASK_NAME).configure(t -> t.dependsOn(exportKeyStore))
                );
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.1K bytes
    - Click Count (0)
Back to Top