Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 756 for covers (0.27 sec)

  1. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

        manager.stopAsync();
        assertThrows(TimeoutException.class, () -> manager.awaitStopped(1, TimeUnit.MILLISECONDS));
        manager.awaitStopped(5, SECONDS); // no exception thrown
      }
    
      /**
       * This covers a case where if the last service to stop failed then the stopped callback would
       * never be called.
       */
      public void testSingleFailedServiceCallsStopped() {
        Service a = new FailStartService();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

        manager.stopAsync();
        assertThrows(TimeoutException.class, () -> manager.awaitStopped(1, TimeUnit.MILLISECONDS));
        manager.awaitStopped(5, SECONDS); // no exception thrown
      }
    
      /**
       * This covers a case where if the last service to stop failed then the stopped callback would
       * never be called.
       */
      public void testSingleFailedServiceCallsStopped() {
        Service a = new FailStartService();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  3. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

    // The trust domain validation should reject a request if it's not from the trust domains configured in the mesh config.
    // The test uses naked client (no sidecar) with custom certificates of different trust domains and covers the following:
    // - plaintext requests are not affected
    // - same trust domain (cluster.local) and aliases (trust-domain-foo and trust-domain-bar)
    // - works for both HTTP and TCP protocol
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. tests/integration/pilot/workloadentry_test.go

    	"istio.io/istio/pkg/test/framework/components/echo/common/ports"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // TestWorkloadEntryGateway covers a model of multi-network where we rely on writing WorkloadEntry
    // resources inside each config cluster rather than doing cross-cluster discovery via remote secret.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. pilot/pkg/xds/monitoring.go

    	// Unavailable or canceled code will be sent when a connection is closing down. This is very normal,
    	// due to the XDS connection being dropped every 30 minutes, or a pod shutting down.
    	isError := s.Code() != codes.Unavailable && s.Code() != codes.Canceled
    	return !ok || isError
    }
    
    // recordSendError records a metric indicating that a push failed. It returns true if this was an unexpected
    // error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterLoggingOutputCaptureIntegrationTest.groovy

                "Test ok(OkTest) -> after err\n" +
                "Test class OkTest -> after class out\n" +
                "Test class OkTest -> after class err\n"
            )
    
            // This test covers current behaviour, not necessarily desired behaviour
    
            def xmlReport = new JUnitXmlTestExecutionResult(testDirectory)
            def classResult = xmlReport.testClass("OkTest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_run_pkg_version.txt

    # This test checks the behavior of 'go run' with a 'cmd@version' argument.
    # Most of 'go run' is covered in other tests.
    # mod_install_pkg_version covers most of the package loading functionality.
    # This test focuses on 'go run' behavior specific to this mode.
    [short] skip
    
    # 'go run pkg@version' works outside a module.
    env GO111MODULE=auto
    go run example.com/cmd/a@v1.0.0
    stdout '^a@v1.0.0$'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/saved_model/saved_model_test.cc

                                      fallback_state.get(), &function_names));
      EXPECT_THAT(function_names, ::testing::SizeIs(1));
    }
    
    // TODO(b/162442824): Add a SavedModel test that covers the error pass.
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 13 01:17:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    			exceedBudget:             false,
    			testRuntimeCELCostBudget: 10,
    			expectRemainingBudget:    pointer.Int64(4), // 10 - 6
    		},
    		{
    			name: "test RuntimeCELCostBudge exactly covers",
    			validations: []ExpressionAccessor{
    				&condition{
    					Expression: "oldObject != null",
    				},
    				&condition{
    					Expression: "object.subsets.size() > 2",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_use_cases.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[use_cases_cache]]
    = Use cases for the build cache
    
    This section covers the different use cases for Gradle’s build cache, from local-only development to caching task outputs across large teams.
    
    == Speed up developer builds with the local cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top