Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,269 for Failed (0.53 sec)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.collect-failed-tasks.gradle.kts

    Bo Zhang <******@****.***> 1660200971 +0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 07:01:27 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. pkg/test/failer.go

    	"sync"
    	"testing"
    
    	"istio.io/istio/pkg/log"
    )
    
    var (
    	_ Failer = &testing.T{}
    	_ Failer = &testing.B{}
    	_ Failer = &errorWrapper{}
    )
    
    // Failer is an interface to be provided to test functions of the form XXXOrFail. This is a
    // substitute for testing.TB, which cannot be implemented outside of the testing
    // package.
    type Failer interface {
    	Fail()
    	FailNow()
    	Fatal(args ...any)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 15 23:58:50 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/testdata/host/host.go

    	if err != nil {
    		log.Fatalf("filepath.Abs(%q) failed: %v", subpPath, err)
    	}
    	subp, err := plugin.Open(subpPath)
    	if err != nil {
    		log.Fatalf("plugin.Open(%q) failed: %v", subpPath, err)
    	}
    
    	funcVar, err := subp.Lookup("FuncVar")
    	if err != nil {
    		log.Fatalf(`sub/plugin1.Lookup("FuncVar") failed: %v`, err)
    	}
    	called := false
    	*funcVar.(*func()) = func() {
    		called = true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/operations/logging/DefaultBuildOperationLoggerTest.groovy

    <output>
    <operation> failed.
    <output>
    <operation> failed.
    <output>
    <operation> failed.
    <output>
    <operation> failed.
    <output>
    <operation> failed.
    <output>
    <operation> failed.
    <output>
    <operation> failed.
    <output>
    Finished <testTask>, see full log $pathToLogStr.
    """
        }
    
        def "logs end of overall operation"() {
            when:
            log.start()
            log.done()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/uncountedterminatedpods.go

    // If called multiple times, values provided by each call will be appended to the Failed field.
    func (b *UncountedTerminatedPodsApplyConfiguration) WithFailed(values ...types.UID) *UncountedTerminatedPodsApplyConfiguration {
    	for i := range values {
    		b.Failed = append(b.Failed, values[i])
    	}
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 15:31:59 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/kotlinDsl/configurations-and-dependencies-declarative/tests/dependencies.out

    +--- com.example:lib:1.1 FAILED
    \--- com.example:test-support:1.3 FAILED
    
    testImplementation - Implementation only dependencies for source set 'test'. (n)
    \--- com.example:test-support:1.3 (n)
    
    testRuntimeClasspath - Runtime classpath of source set 'test'.
    +--- com.example:lib:1.1 FAILED
    +--- com.example:runtime:1.0 FAILED
    +--- com.example:test-support:1.3 FAILED
    \--- com.example:test-junit-jupiter-runtime:1.3 FAILED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/configurations-and-dependencies-imperative/tests/dependencies.out

    +--- com.example:lib:1.1 FAILED
    \--- com.example:test-support:1.3 FAILED
    
    testImplementation - Implementation only dependencies for source set 'test'. (n)
    \--- com.example:test-support:1.3 (n)
    
    testRuntimeClasspath - Runtime classpath of source set 'test'.
    +--- com.example:lib:1.1 FAILED
    +--- com.example:runtime:1.0 FAILED
    +--- com.example:test-support:1.3 FAILED
    \--- com.example:test-junit-jupiter-runtime:1.3 FAILED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. src/go/doc/testdata/testing.2.golden

    	func (c *B) Errorf(format string, args ...any)
    
    	// Fail marks the function as having failed but continues ...
    	func (c *B) Fail()
    
    	// FailNow marks the function as having failed and stops its ...
    	func (c *B) FailNow()
    
    	// Failed reports whether the function has failed. 
    	func (c *B) Failed() bool
    
    	// Fatal is equivalent to Log() followed by FailNow(). 
    	func (c *B) Fatal(args ...any)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/plugin-config-merging/pom.xml

              <version>2.1-SNAPSHOT</version>
              <configuration>
                <propertiesFile>FAILED</propertiesFile>
                <stringParams>
                  <stringParam>FAILED-1</stringParam>
                  <stringParam>FAILED-3</stringParam>
                  <stringParam>FAILED-2</stringParam>
                  <stringParam>FAILED-4</stringParam>
                </stringParams>
              </configuration>
            </plugin>
          </plugins>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  10. pkg/volume/util/fs/fs_windows_test.go

    		t.Fatalf("TestDiskUsage failed: %s", err.Error())
    	}
    	size, err := resource.ParseQuantity(fmt.Sprintf("%d", usage.Bytes))
    	if err != nil {
    		t.Fatalf("TestDiskUsage failed: %s", err.Error())
    	}
    
    	used, err := resource.ParseQuantity(fmt.Sprintf("%d", total))
    	if err != nil {
    		t.Fatalf("TestDiskUsage failed: %s", err.Error())
    	}
    	if size.Cmp(used) != 0 {
    		t.Fatalf("TestDiskUsage failed: expected 0, got %d", size.Cmp(used))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top