Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 999 for _ignored (0.14 sec)

  1. pom.xml

    						<id>check-compatibility</id>
    						<goals>
    							<goal>check</goal>
    						</goals>
    					</execution>
    				</executions>
    				<configuration>
    					<failOnError>false</failOnError>
    					<ignored>
    						<difference>
    							<!-- seems to be a clirr bug that it cannot handle the different inherited 
    								return types -->
    							<className>**</className>
    							<differenceType>7006</differenceType>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. pkg/apis/batch/types.go

    	// to the pod, which don't count towards the backoff limit, according to the
    	// pod failure policy. When the annotation is absent zero is implied.
    	JobIndexIgnoredFailureCountAnnotation = labelPrefix + "job-index-ignored-failure-count"
    	// JobControllerName reserved value for the managedBy field for the built-in
    	// Job controller.
    	JobControllerName = "kubernetes.io/job-controller"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/PropertyAnnotationHandler.java

         */
        ImmutableSet<Class<? extends Annotation>> getAllowedModifiers();
    
        /**
         * Does this handler do something useful with the properties that match it? Or can these properties be ignored?
         *
         * Should consider splitting up this type, perhaps into something that inspects the properties and produces the actual handlers and validation problems.
         */
        boolean isPropertyRelevant();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCleanupIntegrationTest.groovy

    import org.gradle.test.fixtures.ConcurrentTestUtil
    import org.gradle.test.fixtures.file.TestFile
    import spock.lang.Ignore
    
    
    class ConfigurationCacheCleanupIntegrationTest
        extends AbstractConfigurationCacheIntegrationTest
        implements FileAccessTimeJournalFixture {
    
        @Ignore('https://github.com/gradle/gradle-private/issues/3121')
        def "cleanup deletes old entries"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. pilot/pkg/model/authentication_test.go

    		}),
    		createTestRequestAuthenticationResource("ignored-gateway-selector", "foo", &selectorpb.WorkloadSelector{
    			MatchLabels: map[string]string{
    				constants.GatewayNameLabel: "my-gateway",
    			},
    		}, nil),
    		createTestRequestAuthenticationResource("with-targetref", "bar", &selectorpb.WorkloadSelector{
    			MatchLabels: map[string]string{ // should be ignored by non-gateway workloads
    				"app": "httpbin",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BasicTypeInitIntegrationTest.groovy

            then:
            gitignoreFile.file
            gitignoreFile.text == toPlatformLineSeparators("""*.class
    existingIgnores
    # Ignore Gradle project-specific cache directory
    .gradle
    
    # Ignore Gradle build output directory
    build
    """)
    
            where:
            scriptDsl << ScriptDslFixture.SCRIPT_DSLS
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r65/ToolingApiEclipseModelLifeCycleCrossVersionSpec.groovy

    import org.gradle.test.fixtures.maven.MavenFileModule
    import org.gradle.test.fixtures.maven.MavenFileRepository
    import spock.lang.Ignore
    import spock.lang.Issue
    
    @Issue('https://github.com/gradle/gradle/issues/13137')
    @Ignore
    @TargetGradleVersion(">=3.0")
    class ToolingApiEclipseModelLifeCycleCrossVersionSpec extends ToolingApiSpecification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. istioctl/pkg/util/configdump/wrapper.go

    func (r *resolver) FindMessageByURL(url string) (protoreflect.MessageType, error) {
    	typ, err := r.Types.FindMessageByURL(url)
    	if err != nil {
    		// Here we ignore the error since we want istioctl to ignore unknown types due to the Envoy version change
    		msg := exprpb.Type{TypeKind: &exprpb.Type_Dyn{Dyn: &emptypb.Empty{}}}
    		return msg.ProtoReflect().Type(), nil
    	}
    	return typ, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSet.java

       * the first are ignored.
       */
      public static <E> ImmutableSet<E> of(E e1, E e2) {
        return construct(2, e1, e2);
      }
    
      /**
       * Returns an immutable set containing the given elements, minus duplicates, in the order each was
       * first specified. That is, if multiple elements are {@linkplain Object#equals equal}, all except
       * the first are ignored.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. src/cmd/dist/buildtool.go

    	"math/bits",
    	"sort",
    }
    
    // File prefixes that are ignored by go/build anyway, and cause
    // problems with editor generated temporary files (#18931).
    var ignorePrefixes = []string{
    	".",
    	"_",
    	"#",
    }
    
    // File suffixes that use build tags introduced since Go 1.17.
    // These must not be copied into the bootstrap build directory.
    // Also ignore test files.
    var ignoreSuffixes = []string{
    	"_test.s",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top