Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 851 - 860 of 1,405 for rejects (0.08 seconds)

  1. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/precommit/LicenseHeadersPrecommitPluginFuncTest.groovy

    import org.elasticsearch.gradle.fixtures.AbstractGradleFuncTest
    import org.gradle.testkit.runner.TaskOutcome
    
    class LicenseHeadersPrecommitPluginFuncTest extends AbstractGradleFuncTest {
    
        def "detects invalid files with invalid license header"() {
            given:
            buildFile << """
            plugins {
                id 'java'
                id 'elasticsearch.internal-licenseheaders'
            }
            """
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 10:22:28 GMT 2021
    - 4.1K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalPluginBuildPlugin.java

                    public void doCall(Object it) {
                        project.afterEvaluate(project1 -> {
                            // let check depend on check tasks of qa sub-projects
                            final var checkTaskProvider = project1.getTasks().named("check");
                            Optional<Project> qaSubproject = project1.getSubprojects()
                                .stream()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/api/BaseApiManager.java

                return formatType;
            }
    
            formatType = detectFormatType(request);
            request.setAttribute(API_FORMAT_TYPE, formatType);
            return formatType;
        }
    
        /**
         * Detects the format type from the request parameters.
         * @param request The HTTP servlet request.
         * @return The detected format type.
         */
        protected FormatType detectFormatType(final HttpServletRequest request) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.9K bytes
    - Click Count (0)
  4. .teamcity/scripts/CheckWrapper.java

                return t;
            }
        }
    
        private static ExecResult exec(String... cmd) throws IOException, InterruptedException, ExecutionException {
            Objects.requireNonNull(cmd, "cmd");
            if (cmd.length == 0) throw new IllegalArgumentException("cmd must not be empty");
            ProcessBuilder pb = new ProcessBuilder(cmd);
            Process p = pb.start();
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  5. src/main/java/jcifs/netbios/NodeStatusResponse.java

                 * returned by the Node Status. A new NbtAddress object should not be
                 * created for it because the original is potentially being actively
                 * referenced by other objects. We must populate the existing object's
                 * data explicitly (and carefully).
                 */
                if (!addrFound && this.queryAddress.hostName.hexCode == hexCode
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  6. cmd/object-api-input-checks.go

    	}
    	if !IsValidObjectPrefix(object) {
    		return ObjectNameInvalid{Bucket: bucket, Object: object}
    	}
    	if runtime.GOOS == globalWindowsOSName && strings.Contains(object, "\\") {
    		// Objects cannot be contain \ in Windows and is listed as `Characters to Avoid`.
    		return ObjectNameInvalid{Bucket: bucket, Object: object}
    	}
    	return nil
    }
    
    // Checks for all ListObjects arguments validity.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 5.7K bytes
    - Click Count (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

    import java.nio.file.Paths;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    import java.util.Objects;
    import java.util.Properties;
    import java.util.function.UnaryOperator;
    import java.util.stream.Collectors;
    
    import org.apache.maven.api.Constants;
    import org.apache.maven.api.annotations.Nullable;
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 10 07:39:11 GMT 2025
    - 25.5K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/graph/EndpointPairIterator.java

     * limitations under the License.
     */
    
    package com.google.common.graph;
    
    import static com.google.common.base.Preconditions.checkState;
    import static java.util.Objects.requireNonNull;
    
    import com.google.common.collect.AbstractIterator;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Sets;
    import java.util.Iterator;
    import java.util.Set;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 4.9K bytes
    - Click Count (0)
  9. guava/src/com/google/common/collect/JdkBackedImmutableBiMap.java

     */
    package com.google.common.collect;
    
    import static com.google.common.collect.ImmutableList.asImmutableList;
    import static com.google.common.collect.Maps.immutableEntry;
    import static java.util.Objects.requireNonNull;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    import com.google.errorprone.annotations.concurrent.LazyInit;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 23 17:50:58 GMT 2025
    - 4.9K bytes
    - Click Count (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java

    import org.apache.maven.api.annotations.Immutable;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * A Maven artifact is a file, typically a JAR, that is produced and used by Maven projects.
     * It is identified by a unique combination of a group ID, artifact ID, version, classifier,
     * and extension, and it is stored in a repository for dependency management and build purposes.
     *
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Jun 26 07:56:58 GMT 2025
    - 4.6K bytes
    - Click Count (0)
Back to Top