Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 631 for Succeeded (0.24 sec)

  1. internal/crypto/key_test.go

    	sealedKey := key.Seal(extKey[:], iv, "SSE-S3", "bucket", "object")
    	sealedKey.Algorithm = InsecureSealAlgorithm
    	if err := key.Unseal(extKey[:], sealedKey, "SSE-S3", "bucket", "object"); err == nil {
    		t.Errorf("'%s' test succeeded but it should fail because the legacy algorithm was used", sealedKey.Algorithm)
    	}
    }
    
    var derivePartKeyTest = []struct {
    	PartID  uint32
    	PartKey string
    }{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 02 00:13:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolverTest.java

            assertThrows(
                    ArtifactNotFoundException.class,
                    () -> artifactResolver.resolve(k, remoteRepositories(), localRepository()),
                    "Resolution succeeded when it should have failed");
        }
    
        @Test
        void testResolutionOfAnArtifactWhereOneRemoteRepositoryIsBadButOneIsGood() throws Exception {
            Artifact l = createRemoteArtifact("l", "1.0-SNAPSHOT");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AbstractCatchingFuture.java

          throwable = t;
        }
    
        if (throwable == null) {
          /*
           * The cast is safe: There was no exception, so the assignment from getDone must have
           * succeeded.
           */
          set(uncheckedCastNullableTToT(sourceResult));
          return;
        }
    
        if (!isInstanceOfThrowableClass(throwable, localExceptionType)) {
          setFuture(localInputFuture);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/encoding/gob/type_test.go

    				t.Error(err)
    				return
    			}
    			if err := enc.Encode(x); err != nil {
    				t.Error(err)
    				return
    			}
    			if err := dec.Decode(&m); err == nil {
    				t.Error("decode unexpectedly succeeded")
    				return
    			}
    		}(i)
    	}
    	close(c)
    	wg.Wait()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/lower_globals_to_ml_program.cc

                BlockArgument arg;
                if (traceUpwardsToArgument(operands[blockArg.getArgNumber()], seen,
                                           &arg)
                        .succeeded()) {
                  options.insert(arg);
                }
              }
            } else {
              op->emitOpError("Predecessor op doesn't implement BranchOpInterface");
              return failure();
            }
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/model/StateTransitionControllerTest.groovy

                controller.transition(TestState.A, TestState.B, action)
            }
    
            then:
            1 * action.apply(_) >> { ExecutionResult r ->
                assert r.failures.empty
                ExecutionResult.succeeded()
            }
            0 * action._
            result.failures.empty
        }
    
        def "can transition to new state and take previous failure as input"() {
            def action = Mock(Function)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_test.go

    				}
    
    				if devicePath != attachName {
    					t.Fatalf("csiTest.VolumeAll attacher.WaitForAttach got unexpected value %s", devicePath)
    				}
    
    				t.Log("csiTest.VolumeAll attacher.WaitForAttach succeeded OK, attachment ID:", devicePath)
    
    			} else {
    				t.Log("csiTest.VolumeAll volume attacher not found, skipping attachment")
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 15:55:13 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml

        status: statusValue
        type: typeValue
      failed: 6
      failedIndexes: failedIndexesValue
      ready: 9
      startTime: "2002-01-01T01:01:01Z"
      succeeded: 5
      terminating: 11
      uncountedTerminatedPods:
        failed:
        - failedValue
        succeeded:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    			// but finalizeDelete returns a metav1.Status, so return
    			// the object in the request instead.
    			return obj, false, err
    		}
    		return nil, false, storeerr.InterpretDeleteError(err, e.qualifiedResourceFromContext(ctx), name)
    	}
    	_, err := e.finalizeDelete(ctx, out, true, options)
    	// clients are expecting an updated object if a PUT succeeded, but
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. pilot/pkg/leaderelection/k8sleaderelection/leaderelection_test.go

    				t.Errorf("unexpected result of tryAcquireOrRenew: [succeeded=%v]", true)
    			}
    
    			le.maybeReportTransition()
    
    			// Wait for a response to the leader transition, and add 1 so that we can track the final transition.
    			wg.Wait()
    			wg.Add(1)
    
    			if test.expectSuccess != le.release() {
    				t.Errorf("unexpected result of release: [succeeded=%v]", !test.expectSuccess)
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 23 16:39:43 UTC 2023
    - 42.5K bytes
    - Viewed (0)
Back to top