Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 461 - 470 of 7,655 for fixe (0.08 seconds)

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

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/PruneChangelogsTask.java

            }
    
            LOGGER.warn("The following changelog files {} be deleted:", dryRun ? "can" : "will");
            LOGGER.warn("");
            filesToDelete.forEach(file -> LOGGER.warn("\t{}", rootDir.relativize(file.toPath())));
    
            if (dryRun == false) {
                final Set<File> failedToDelete = deleteHelper.deleteFiles(filesToDelete);
    
                if (failedToDelete.isEmpty() == false) {
                    throw new GradleException(
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 24 10:57:02 GMT 2021
    - 6.6K bytes
    - Click Count (0)
  2. docs/ru/docs/tutorial/request-files.md

    Это связано с тем, что загружаемые файлы передаются как "данные формы".
    
    ///
    
    ## Импорт `File` { #import-file }
    
    Импортируйте `File` и `UploadFile` из модуля `fastapi`:
    
    {* ../../docs_src/request_files/tutorial001_an_py310.py hl[3] *}
    
    ## Определите параметры `File` { #define-file-parameters }
    
    Создайте параметры `File` так же, как вы это делаете для `Body` или `Form`:
    
    {* ../../docs_src/request_files/tutorial001_an_py310.py hl[9] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 11.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/dict/DictionaryCreator.java

         *
         * @param pattern the regular expression pattern to match file paths
         */
        protected DictionaryCreator(final String pattern) {
            this.pattern = Pattern.compile(pattern);
        }
    
        /**
         * Creates a dictionary file for the given path and timestamp if it matches this creator's pattern.
         *
         * @param path the file path to create a dictionary file for
         * @param timestamp the timestamp of the dictionary file
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  4. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionArchiveCheckPluginFuncTest.groovy

            given:
            elasticLicense()
            elasticLicense(file("LICENSE.txt"))
            file("NOTICE.txt").text = """Elasticsearch
    Copyright 2009-2021 Elasticsearch"""
    
            file("ml/NOTICE.txt").text = "Boost Software License - Version 1.0 - August 17th, 2003"
            file('darwin-tar/build.gradle') << """
                distributionArchiveCheck {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 10:22:28 GMT 2021
    - 5.9K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/GenerateReleaseNotesTask.java

    import org.elasticsearch.gradle.VersionProperties;
    import org.gradle.api.DefaultTask;
    import org.gradle.api.GradleException;
    import org.gradle.api.file.ConfigurableFileCollection;
    import org.gradle.api.file.FileCollection;
    import org.gradle.api.file.RegularFile;
    import org.gradle.api.file.RegularFileProperty;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.api.model.ObjectFactory;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 12.9K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/TestingConventionsTasks.java

    import javax.inject.Inject;
    import java.io.File;
    import java.io.IOException;
    import java.lang.annotation.Annotation;
    import java.lang.reflect.Method;
    import java.lang.reflect.Modifier;
    import java.net.MalformedURLException;
    import java.net.URL;
    import java.net.URLClassLoader;
    import java.nio.file.FileVisitResult;
    import java.nio.file.FileVisitor;
    import java.nio.file.Files;
    import java.nio.file.Path;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 17.6K bytes
    - Click Count (0)
  7. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/fixtures/AbstractGitAwareGradleFuncTest.groovy

        TemporaryFolder remoteRepoDirs = new TemporaryFolder()
    
        File remoteGitRepo
    
        def setup() {
            remoteGitRepo = new File(setupGitRemote(), '.git')
            "git clone ${remoteGitRepo.absolutePath} cloned".execute(Collections.emptyList(), testProjectDir.root).waitFor()
            buildFile = new File(testProjectDir.root, 'cloned/build.gradle')
            settingsFile = new File(testProjectDir.root, 'cloned/settings.gradle')
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java

    import org.lastaflute.web.response.JsonResponse;
    
    import jakarta.annotation.Resource;
    
    /**
     * API action for admin file authentication management.
     * Provides RESTful API endpoints for managing file authentication settings in the Fess search engine.
     * File authentication settings define access credentials and permissions for file-based crawling.
     *
     */
    public class ApiAdminFileauthAction extends FessApiAdminAction {
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 9.2K bytes
    - Click Count (0)
  9. guava/src/com/google/common/collect/Queues.java

    /*
     * Copyright (C) 2011 The Guava Authors
     *
     * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
     * in compliance with the License. You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software distributed under the License
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 18K bytes
    - Click Count (0)
  10. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        File getUserSettingsFile();
    
        MavenExecutionRequest setUserSettingsFile(File userSettingsFile);
    
        File getProjectSettingsFile();
    
        MavenExecutionRequest setProjectSettingsFile(File projectSettingsFile);
    
        @Deprecated
        File getGlobalSettingsFile();
    
        @Deprecated
        MavenExecutionRequest setGlobalSettingsFile(File globalSettingsFile);
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Dec 12 11:02:17 GMT 2024
    - 18.6K bytes
    - Click Count (0)
Back to Top