Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,101 for ignoreMe (0.19 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/GradleDistributionTool.java

        private final GradleDistribution distribution;
        private final String ignored;
    
        public GradleDistributionTool(GradleDistribution distribution) {
            this(distribution, null);
        }
    
        public GradleDistributionTool(GradleDistribution distribution, String ignored) {
            this.distribution = distribution;
            this.ignored = ignored;
        }
    
        @Override
        public boolean matches(String criteria) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

                "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/CompositeTestResults.java

            failures.add(failedTest);
            if (parent != null) {
                parent.failed(failedTest);
            }
        }
    
        protected void ignored(TestResult ignoredTest) {
            ignored.add(ignoredTest);
            if (parent != null) {
                parent.ignored(ignoredTest);
            }
        }
    
        protected TestResult addTest(TestResult test) {
            tests++;
            duration += test.getDuration();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/TestResult.java

            return failures;
        }
    
        public boolean isIgnored() {
            return ignored;
        }
    
        public void addFailure(TestFailure failure) {
            classResults.failed(this);
            failures.add(failure);
        }
    
        public void setIgnored() {
            classResults.ignored(this);
            ignored = true;
        }
    
        @Override
        public int compareTo(TestResult testResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. fastapi/utils.py

        new_field.has_alias = field.has_alias  # type: ignore[attr-defined]
        new_field.alias = field.alias  # type: ignore[misc]
        new_field.class_validators = field.class_validators  # type: ignore[attr-defined]
        new_field.default = field.default  # type: ignore[misc]
        new_field.required = field.required  # type: ignore[misc]
        new_field.model_config = field.model_config  # type: ignore[attr-defined]
        new_field.field_info = field.field_info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/ConfigurableFileTreeIntegrationTest.groovy

            file('files/a/not ONE.txt').createFile()
            file('files/b/ignore.txt').createFile()
            file('files/b/not one to IGNORE.txt').createFile()
            file('files/b/one.ignore').createFile()
            buildFile """
                def files = fileTree(dir: 'files')
                files.include('**/*one*')
                files.exclude('**/*ignore*')
                task copy(type: Copy) {
                    from files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalRepoResolveIntegrationTest.groovy

            when:
            runAndFail 'retrieve'
    
            then:
            failure.assertHasCause("Unable to parse local Maven settings: " + m2.userSettingsFile.absolutePath)
        }
    
        def "mavenLocal is ignored if no local maven repository exists"() {
            given:
            def anotherRepo = maven("another-local-repo")
            def moduleA = anotherRepo.module('group', 'projectA', '1.2').publishWithChangedContent()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/go/types/conversions.go

    	Tp, _ := T.(*TypeParam)
    
    	// "V and T have identical underlying types if tags are ignored
    	// and V and T are not type parameters"
    	if IdenticalIgnoreTags(Vu, Tu) && Vp == nil && Tp == nil {
    		return true
    	}
    
    	// "V and T are unnamed pointer types and their pointer base types
    	// have identical underlying types if tags are ignored
    	// and their pointer base types are not type parameters"
    	if V, ok := V.(*Pointer); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/cmd/doc/dirs.go

    				// For plain files, remember if this directory contains any .go
    				// source files, but ignore them otherwise.
    				if !entry.IsDir() {
    					if !hasGoFiles && strings.HasSuffix(name, ".go") {
    						hasGoFiles = true
    					}
    					continue
    				}
    				// Entry is a directory.
    
    				// The go tool ignores directories starting with ., _, or named "testdata".
    				if name[0] == '.' || name[0] == '_' || name == "testdata" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_gradle_module_metadata.adoc

    .Disabling publication warnings
    ====
    include::sample[dir="snippets/dependencyManagement/modelingFeatures-outgoingCapabilities/kotlin",files="build.gradle.kts[tags=ignore-pom-warnings]"]
    include::sample[dir="snippets/dependencyManagement/modelingFeatures-outgoingCapabilities/groovy",files="build.gradle[tags=ignore-pom-warnings]"]
    ====
    
    [[sub:interactions-other-build-tools]]
    == Interactions with other build tools
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top