Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 237 for _ignored (0.19 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         */
        String FATJAR = "fatjar";
    
        /**
         * Artifact type name for a JAR file to unconditionally place on the class-path.
         * If the JAR is modular, its module information are ignored.
         * This type is new in Maven 4.
         */
        String CLASSPATH_JAR = "classpath-jar";
    
        /**
         * Artifact type name for a JAR file to unconditionally place on the module-path.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInputListenerLifecycleIntegrationTest.groovy

            when:
            configurationCacheRun()
            configurationCacheRun("-D$IGNORE_INPUTS_PROPERTY=true")
    
            then:
            outputContains("the set of ignored configuration inputs has changed")
        }
    
        private static final String IGNORE_INPUTS_PROPERTY = StartParameterBuildOptions.ConfigurationCacheIgnoreInputsInTaskGraphSerialization.PROPERTY_NAME
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    //   the user explicitly provided representative dataset configs to
    //   `calibration_options`. In that case, the explicit configs take precedence
    //   and the preset's configs are ignored.
    //   - For `QuantizationSpecs`, the expanded `QuantizationSpec`s will be
    //   populated first and user-provided `QuantizationSpec`s, if any, will be
    //   appended. This expresses the fact that user-provided specs take precedence.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r23/StandardStreamsCrossVersionSpec.groovy

            }
    
            and:
            !stdOutAndErr.stdOut.contains("logging")
            !stdOutAndErr.stdErr.contains("logging")
        }
    
        def "can specify color output when output is being ignored"() {
            file("build.gradle") << """
    task log {
        outputs.upToDateWhen { true }
    }
    """
    
            when:
            withConnection { ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. docs/iam/identity-manager-plugin.go

    //go:build ignore
    // +build ignore
    
    // Copyright (c) 2015-2022 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 21:31:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. hack/ginkgo-e2e.sh

      ginkgo_args+=("--no-color")
    fi
    
    # The --host setting is used only when providing --auth_config
    # If --kubeconfig is used, the host to use is retrieved from the .kubeconfig
    # file and the one provided with --host is ignored.
    # Add path for things like running kubectl binary.
    PATH=$(dirname "${e2e_test}"):"${PATH}"
    export PATH
    
    # Choose the program to execute and additional arguments for it.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r213/ModelsWithGradleProjectIdentifierCrossVersionSpec.groovy

    import org.gradle.tooling.model.GradleProject
    import org.gradle.tooling.model.ProjectIdentifier
    import org.gradle.tooling.model.gradle.BuildInvocations
    import org.gradle.tooling.model.gradle.ProjectPublications
    import spock.lang.Ignore
    
    class ModelsWithGradleProjectIdentifierCrossVersionSpec extends ToolingApiSpecification {
        static List<Class<?>> modelsHavingGradleProjectIdentifier = [BuildInvocations, ProjectPublications]
    
        TestFile rootSingle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ThrottlingOutputEventListener.java

            this.listener = listener;
            this.executor = executor;
            this.clock = clock;
            scheduleUpdateNow();
        }
    
        private void scheduleUpdateNow() {
            ScheduledFuture<?> ignored = executor.scheduleAtFixedRate(new Runnable() {
                @Override
                public void run() {
                    try {
                        onOutput(new UpdateNowEvent(clock.getCurrentTime()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. pkg/test/echo/docker/Dockerfile.app_sidecar_base_centos

    ARG VM_IMAGE_NAME=rockylinux
    ARG VM_IMAGE_VERSION=9
    FROM ${VM_IMAGE_NAME}:${VM_IMAGE_VERSION}
    
    # hadolint ignore=DL3005,DL3008,DL3033
    RUN yum install -y \
        iptables \
        iproute \
        sudo \
        nmap-ncat \
        tcpdump \
        procps \
        conntrack \
        net-tools \
        ca-certificates \
        && update-ca-trust \
        && yum clean all \
        && rm -rf /var/cache/yum
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 568 bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDebugLogIntegrationTest.groovy

            (output =~ pattern)
                .findAll()
                .collect { matchResult ->
                    //noinspection GroovyUnusedAssignment
                    def (ignored, profile, type, frame) = matchResult
                    [profile: profile, type: type, frame: frame]
                }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top