Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 122 for jailed (0.34 sec)

  1. pkg/registry/batch/job/strategy_test.go

    		},
    		"invalid attempt to transition to Failed=True with uncountedTerminatedPods.Failed>0": {
    			enableJobManagedBy: true,
    			job: &batch.Job{
    				ObjectMeta: validObjectMeta,
    			},
    			newJob: &batch.Job{
    				ObjectMeta: validObjectMeta,
    				Status: batch.JobStatus{
    					StartTime: &now,
    					UncountedTerminatedPods: &batch.UncountedTerminatedPods{
    						Failed: []types.UID{"a"},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            fails "resolve"
    
            then:
            failure.assertHasDescription("Execution failed for task ':resolve'.")
            failure.assertHasCause("Could not resolve all files for configuration ':compile'.")
            failure.assertHasCause("Failed to transform a.jar to match attributes {artifactType=size}")
            failure.assertHasCause("Execution failed for ToNullTransform: ${file("a.jar").absolutePath}.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    // permanent deletes (by specifying a version ID in the delete operation) have three states "Pending", "Complete"
    // and "Failed" to mark the status of the replication of "DELETE" operation. All failed operations can
    // then be retried by healing. In the case of permanent deletes, until the replication is completed on the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    		req = req.WithContext(httptrace.WithClientTrace(req.Context(), trace))
    
    		resp, err := c.Do(req)
    		if err != nil {
    			t.Fatalf("request failed: %v", err)
    		}
    		defer resp.Body.Close()
    		_, err = io.ReadAll(resp.Body)
    		if err != nil {
    			t.Fatalf("read body failed: %v", err)
    		}
    	}
    
    	wg := sync.WaitGroup{}
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			doReq()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. src/crypto/x509/verify_test.go

    			if !ok {
    				t.Fatalf("failed to parse root #%d", j)
    			}
    		}
    	}
    
    	for j, intermediate := range test.intermediates {
    		ok := opts.Intermediates.AppendCertsFromPEM([]byte(intermediate))
    		if !ok {
    			t.Fatalf("failed to parse intermediate #%d", j)
    		}
    	}
    
    	leaf, err := certificateFromPEM(test.leaf)
    	if err != nil {
    		t.Fatalf("failed to parse leaf: %v", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller_test.go

    		{numFailedPods: 1, numNormalPods: 0, expectedCreates: 0, expectedDeletes: 1, expectedEvents: 1, test: "1 failed pod (kill 1), 0 normal pod (create 0; will create in the next sync)"},
    		{numFailedPods: 1, numNormalPods: 3, expectedCreates: 0, expectedDeletes: 3, expectedEvents: 1, test: "1 failed pod (kill 1), 3 normal pods (kill 2)"},
    	}
    
    	for _, test := range tests {
    		t.Run(test.test, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // expected-error @+1 {{op failed to verify that params and output must have same element type}}
      %0 = "tfl.gather"(%arg0, %arg1) {axis = 1 : i32}: (tensor<?xi32>,tensor<?xi32>) -> tensor<?xf32>
      func.return %0 : tensor<?xf32>
    }
    
    // -----
    
    func.func @testGatherUnsupportedRank(%arg0 : tensor<f32>, %arg1 : tensor<1xi32>) -> tensor<?xf32> {
      // expected-error @+1 {{op failed to verify that operand 0 is 1-D}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    	for i, timeout := range tries {
    		err := testFunc(timeout)
    		if err == nil {
    			return
    		}
    		t.Logf("failed at %v: %v", timeout, err)
    		if i != len(tries)-1 {
    			t.Logf("retrying at %v ...", tries[i+1])
    		}
    	}
    	t.Fatal("all attempts failed")
    }
    
    // Test that the HTTP/2 server RSTs stream on slow write.
    func TestWriteDeadlineEnforcedPerStream(t *testing.T) {
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    					// Don't pass detailed error back to the user because it could give information about host filesystem
    					klog.ErrorS(err, "Failed to create subPath directory for volumeMount of the container", "containerName", container.Name, "volumeMountName", mount.Name)
    					return nil, cleanupAction, fmt.Errorf("failed to create subPath directory for volumeMount %q of container %q", mount.Name, container.Name)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation_test.go

    				{Type: field.ErrorTypeDuplicate, Field: "status.uncountedTerminatedPods.failed[0]"},
    				{Type: field.ErrorTypeDuplicate, Field: "status.uncountedTerminatedPods.failed[3]"},
    				{Type: field.ErrorTypeInvalid, Field: "status.uncountedTerminatedPods.failed[4]"},
    			},
    		},
    	}
    	for name, tc := range cases {
    		t.Run(name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
Back to top