Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 631 for Succeeded (0.13 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

        try {
          collection.add(sampleElement);
          fail("add succeeded on unmodifiable collection");
        } catch (UnsupportedOperationException expected) {
        }
    
        assertCollectionsAreEquivalent(copy, collection);
    
        try {
          collection.addAll(siblingCollection);
          fail("addAll succeeded on unmodifiable collection");
        } catch (UnsupportedOperationException expected) {
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

        try {
          collection.add(sampleElement);
          fail("add succeeded on unmodifiable collection");
        } catch (UnsupportedOperationException expected) {
        }
    
        assertCollectionsAreEquivalent(copy, collection);
    
        try {
          collection.addAll(siblingCollection);
          fail("addAll succeeded on unmodifiable collection");
        } catch (UnsupportedOperationException expected) {
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/utils/math_utils_test.cc

      int32_t quantized_fraction;
      int32_t shift;
    
      EXPECT_TRUE(succeeded(QuantizeMultiplier(1.2, quantized_fraction, shift)));
      EXPECT_EQ(quantized_fraction, 19661);
      EXPECT_EQ(shift, 1);
    
      EXPECT_TRUE(succeeded(QuantizeMultiplier(15.5, quantized_fraction, shift)));
      EXPECT_EQ(quantized_fraction, 31744);
      EXPECT_EQ(shift, 4);
    
      EXPECT_TRUE(succeeded(QuantizeMultiplier(1, quantized_fraction, shift)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 05:58:41 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitTestResults.groovy

        }
    
        def checkTestCases(int total, int succeeded, int failed) {
            checkSummaryRecord('Test Cases', total, succeeded, failed)
        }
    
        def checkAssertions(int total, int succeeded, int failed) {
            checkSummaryRecord('Assertions', total, succeeded, failed)
        }
    
        private def checkSummaryRecord(String name, int total, int succeeded, int failed) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/uncountedterminatedpods.go

    )
    
    // UncountedTerminatedPodsApplyConfiguration represents an declarative configuration of the UncountedTerminatedPods type for use
    // with apply.
    type UncountedTerminatedPodsApplyConfiguration struct {
    	Succeeded []types.UID `json:"succeeded,omitempty"`
    	Failed    []types.UID `json:"failed,omitempty"`
    }
    
    // UncountedTerminatedPodsApplyConfiguration constructs an declarative configuration of the UncountedTerminatedPods type for use with
    // apply.
    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. pkg/controller/job/metrics/metrics.go

    	// based on the reason for their creation (i.e. if PodReplacementPolicy was specified)
    	// and the status of the creation (i.e. if the Pod creation succeeded or failed).
    	// Possible label values:
    	//   reason: new, recreate_terminating_or_failed, recreate_failed
    	//   status: succeeded, failed
    	JobPodsCreationTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem: JobControllerSubsystem,
    			Name:      "job_pods_creation_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/xla_sharding_util_test.cc

      xla::OpSharding sharding;
      EXPECT_TRUE(DecodeShardingAttribute("", sharding).succeeded());
      EXPECT_TRUE(DecodeShardingAttribute("manual", sharding).failed());
    }
    
    TEST(DecodeShardingAttributeTest, CheckManualShardString) {
      xla::OpSharding sharding;
      EXPECT_TRUE(DecodeShardingAttribute("{manual}", sharding).succeeded());
      EXPECT_TRUE(sharding.type() == sharding.MANUAL);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/lang_test.go

    		t.Error("compilation with -lang=go9.99 succeeded unexpectedly")
    	}
    
    	// This test will have to be adjusted if we ever reach 1.99 or 2.0.
    	if testLang(t, "go1.99", src, outfile) == nil {
    		t.Error("compilation with -lang=go1.99 succeeded unexpectedly")
    	}
    
    	if testLang(t, "go1.8", src, outfile) == nil {
    		t.Error("compilation with -lang=go1.8 succeeded unexpectedly")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/preflight/checks_test.go

    	if result {
    		t.Fatal("checkConnection should not have succeeded")
    	}
    }
    
    func TestCheckEtcdServersEmpty(t *testing.T) {
    	etcd := new(EtcdConnection)
    	result, err := etcd.CheckEtcdServers()
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if result {
    		t.Fatal("CheckEtcdServers should not have succeeded")
    	}
    }
    
    func TestCheckEtcdServersUri(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 01 21:37:52 UTC 2017
    - 2.7K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    	uncountedStatus := status.UncountedTerminatedPods
    	newUncounted := filterInUncountedUIDs(uncountedStatus.Succeeded, uidsWithFinalizer)
    	if len(newUncounted) != len(uncountedStatus.Succeeded) {
    		updated = true
    		status.Succeeded += int32(len(uncountedStatus.Succeeded) - len(newUncounted))
    		uncountedStatus.Succeeded = newUncounted
    	}
    	newUncounted = filterInUncountedUIDs(uncountedStatus.Failed, uidsWithFinalizer)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top