Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 4,112 for _ignored (0.39 sec)

  1. 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)
  2. platforms/software/dependency-management/src/main/resources/org/gradle/schema/dependency-verification-1.1.xsd

            </xs:sequence>
        </xs:complexType>
        <xs:complexType name="ignored-keyType">
            <xs:attribute type="xs:string" name="id" use="required"/>
            <xs:attribute type="xs:string" name="reason"/>
        </xs:complexType>
        <xs:complexType name="ignored-keysType">
            <xs:sequence>
                <xs:element type="ignored-keyType" name="ignored-key"/>
            </xs:sequence>
        </xs:complexType>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    				recover()
    			}()
    			defer utilruntime.HandleCrash(
    				func(r interface{}) {
    					if r == nil {
    						return
    					}
    					if ignoreClientCallFailures {
    						// if failures are supposed to ignored, ignore it
    						klog.Warningf("Panic calling webhook, failing open %v: %v", hookName, r)
    						admissionmetrics.Metrics.ObserveWebhookFailOpen(ctx, hookName, "validating")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/comparator.go

    	if err := c.ClusterDiff(); err != nil {
    		return err
    	}
    	if err := c.ListenerDiff(); err != nil {
    		return err
    	}
    	return c.RouteDiff()
    }
    
    // nonstrictResolver is an AnyResolver that ignores unknown proto messages
    type nonstrictResolver struct{}
    
    var envoyResolver nonstrictResolver
    
    func (m *nonstrictResolver) Resolve(typeURL string) (legacyproto.Message, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

        }
    
        // instance method ignored
        public Object badIgnored() {
          return new BadEquals();
        }
    
        // primitive ignored
        public int returnsInt() {
          throw new UnsupportedOperationException();
        }
    
        // void ignored
        public void voidMethod() {
          throw new UnsupportedOperationException();
        }
    
        // non-public method ignored
        static Object badButNotPublic() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  6. src/io/fs/glob.go

    // if there is no matching file. The syntax of patterns is the same
    // as in [path.Match]. The pattern may describe hierarchical names such as
    // usr/*/bin/ed.
    //
    // Glob ignores file system errors such as I/O errors reading directories.
    // The only possible returned error is [path.ErrBadPattern], reporting that
    // the pattern is malformed.
    //
    // If fs implements [GlobFS], Glob calls fs.Glob.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:25:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types.go

    // FailurePolicyType specifies a failure policy that defines how unrecognized errors from the admission endpoint are handled.
    // +enum
    type FailurePolicyType string
    
    const (
    	// Ignore means that an error calling the webhook is ignored.
    	Ignore FailurePolicyType = "Ignore"
    	// Fail means that an error calling the webhook causes the admission to fail.
    	Fail FailurePolicyType = "Fail"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/resources/org/gradle/schema/dependency-verification-1.3.xsd

            </xs:sequence>
        </xs:complexType>
        <xs:complexType name="ignored-keyType">
            <xs:attribute type="xs:string" name="id" use="required"/>
            <xs:attribute type="xs:string" name="reason"/>
        </xs:complexType>
        <xs:complexType name="ignored-keysType">
            <xs:sequence>
                <xs:element type="ignored-keyType" name="ignored-key" minOccurs="0" maxOccurs="unbounded"/>
            </xs:sequence>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 23:01:46 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/gmm/GradleModuleMetadataAvailableAtIntegrationTest.groovy

                        module("org:external:1.0")
                    }
                }
            }
        }
    
        @ToBeFixedForConfigurationCache(because = "task uses Configuration API")
        def "resolution result ignores an ignored available-at variant"() {
            given:
            repository {
                'org:moduleA:1.0' {
                    variants(["api", "runtime"]) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyLifecycleIntegrationTest.groovy

            given:
            buildFile << """
    
    def prop = project.objects.fileProperty()
    
    task thing {
        ${registrationMethod}(prop)
        prop.set(file("file-1"))
        def other = file("ignored")
        doLast {
            prop.set(other)
            println "prop = " + prop.get()
        }
    }
    """
            file("file-1").createFile()
    
            when:
            fails("thing")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22.6K bytes
    - Viewed (0)
Back to top