Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for broken3 (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            failure.assertHasCause("broken: broken.jar")
            failure.assertHasCause("Could not download a-1.3.jar (test:a:1.3)")
            failure.assertHasCause("Failed to transform broken-2.0.jar (test:broken:2.0) to match attributes {artifactType=size, org.gradle.status=release}")
            failure.assertHasCause("broken: broken-2.0.jar")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        println "Transformed \$input.name to \$output.name into \$outputDirectory"
    
                        if (System.getProperty("broken")) {
                            new File(outputDirectory, "some-garbage").text = "delete-me"
                            throw new RuntimeException("broken")
                        }
                    }
                }
    
                allprojects {
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    		broken := false
    		numOpen := db.numOpen
    
    		*hook = func() bool {
    			if !broken {
    				broken = true
    			}
    			return broken
    		}
    
    		if err := op(); !errors.Is(err, driver.ErrBadConn) {
    			t.Errorf(name+": %v", err)
    			return
    		}
    
    		if !broken {
    			t.Error(name + ": Failed to simulate broken connection")
    		}
    		*hook = nil
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. pkg/apis/batch/validation/validation_test.go

    				TimeZone:          pointer.String("broken"),
    				ConcurrencyPolicy: batch.AllowConcurrent,
    				JobTemplate: batch.JobTemplateSpec{
    					Spec: batch.JobSpec{
    						Template: validPodTemplateSpec,
    					},
    				},
    			},
    			new: &batch.CronJobSpec{
    				Schedule:          "0 * * * *",
    				TimeZone:          pointer.String("broken"),
    				ConcurrencyPolicy: batch.AllowConcurrent,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    				# TYPE kubelet_orphaned_runtime_pods_total counter
    				kubelet_orphaned_runtime_pods_total 1
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    	*brokenState
    }
    
    type brokenState struct {
    	sync.Mutex
    	broken bool
    }
    
    func (w *breakableConn) Write(b []byte) (n int, err error) {
    	w.Lock()
    	defer w.Unlock()
    	if w.broken {
    		return 0, errors.New("some write error")
    	}
    	return w.Conn.Write(b)
    }
    
    // Issue 34978: don't cache a broken HTTP/2 connection
    func TestDontCacheBrokenHTTP2Conn(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      It did so indeed, and much sooner than she had expected:
    before she had drunk half the bottle, she found her head pressing
    against the ceiling, and had to stoop to save her neck from being
    broken.  She hastily put down the bottle, saying to herself
    `That's quite enough--I hope I shan't grow any more--As it is, I
    can't get out at the door--I do wish I hadn't drunk quite so
    much!'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      It did so indeed, and much sooner than she had expected:
    before she had drunk half the bottle, she found her head pressing
    against the ceiling, and had to stoop to save her neck from being
    broken.  She hastily put down the bottle, saying to herself
    `That's quite enough--I hope I shan't grow any more--As it is, I
    can't get out at the door--I do wish I hadn't drunk quite so
    much!'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/routing.go

    //     (which is moving to Sidecar soon)
    //  2. Another service, B', with P -> T'. In this case, the listener will be distinct, since its based on the target.
    //     The cluster, however, will be shared, which is broken, because we should be forwarding to T when we call B, and T' when we call B'.
    //  3. Another service, B', with P' -> T. In this case, the listener is shared. This is fine, with the exception of different protocols
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

          ),
        )
        val responseAfter = MockResponse(body = "This comes after a busted connection")
        server.enqueue(responseAfter)
        server.enqueue(responseAfter) // Enqueue 2x because the broken connection may be reused.
        val response1 = getResponse(newRequest("/a"))
        response1.body.source().timeout().timeout(100, TimeUnit.MILLISECONDS)
        assertContent("This connection won't pool properly", response1)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
Back to top