Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for broken2 (0.52 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. 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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	5:  "trace/breakpoint trap",
    	6:  "aborted",
    	7:  "bus error",
    	8:  "floating point exception",
    	9:  "killed",
    	10: "user defined signal 1",
    	11: "segmentation fault",
    	12: "user defined signal 2",
    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    }
    
    const (
    	FILE_READ_DATA        = 0x00000001
    	FILE_READ_ATTRIBUTES  = 0x00000080
    	FILE_READ_EA          = 0x00000008
    	FILE_WRITE_DATA       = 0x00000002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    	// backslash is really an escape at all.
    	if quote != 0 {
    		return nil, errors.New("unterminated quoted string in pkgconf output")
    	}
    	if escaped {
    		return nil, errors.New("broken character escaping in pkgconf output")
    	}
    
    	if len(flag) > 0 || didQuote {
    		flags = append(flags, string(flag))
    	}
    	return flags, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top