Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for covering (0.26 sec)

  1. android/guava-tests/test/com/google/common/primitives/LongArrayAsListTest.java

    import com.google.common.collect.testing.features.ListFeature;
    import java.util.List;
    import junit.framework.Test;
    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    
    /**
     * Test suite covering {@link Longs#asList(long[])}.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible(emulated = true)
    public class LongArrayAsListTest extends TestCase {
    
      private static List<Long> asList(Long[] values) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/ShortArrayAsListTest.java

    import com.google.common.collect.testing.features.ListFeature;
    import java.util.List;
    import junit.framework.Test;
    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    
    /**
     * Test suite covering {@link Shorts#asList(short[])}.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible(emulated = true)
    public class ShortArrayAsListTest extends TestCase {
    
      private static List<Short> asList(Short[] values) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. tests/integration/pilot/multi_version_revision_test.go

    			instances = append(instances, apps.A[0])
    
    			testAllEchoCalls(t, instances)
    		})
    }
    
    // testAllEchoCalls takes list of revisioned namespaces and generates list of echo calls covering
    // communication between every pair of namespaces
    func testAllEchoCalls(t framework.TestContext, echoInstances []echo.Instance) {
    	trafficTypes := []string{"http", "tcp", "grpc"}
    	for _, from := range echoInstances {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/FloatArrayAsListTest.java

    import com.google.common.collect.testing.features.ListFeature;
    import java.util.List;
    import junit.framework.Test;
    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    
    /**
     * Test suite covering {@link Floats#asList(float[])})}.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible(emulated = true)
    public class FloatArrayAsListTest extends TestCase {
    
      private static List<Float> asList(Float[] values) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/FloatArrayAsListTest.java

    import com.google.common.collect.testing.features.ListFeature;
    import java.util.List;
    import junit.framework.Test;
    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    
    /**
     * Test suite covering {@link Floats#asList(float[])})}.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible(emulated = true)
    public class FloatArrayAsListTest extends TestCase {
    
      private static List<Float> asList(Float[] values) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/primitives/IntArrayAsListTest.java

    import com.google.common.collect.testing.features.ListFeature;
    import java.util.List;
    import junit.framework.Test;
    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    
    /**
     * Test suite covering {@link Ints#asList(int[])}.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible(emulated = true)
    @SuppressWarnings("cast") // redundant casts are intentional and harmless
    public class IntArrayAsListTest extends TestCase {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. pkg/quota/v1/evaluator/core/services.go

    }
    
    // UncoveredQuotaScopes takes the input matched scopes which are limited by configuration and the matched quota scopes.
    // It returns the scopes which are in limited scopes but don't have a corresponding covering quota scope
    func (p *serviceEvaluator) UncoveredQuotaScopes(limitedScopes []corev1.ScopedResourceSelectorRequirement, matchedQuotaScopes []corev1.ScopedResourceSelectorRequirement) ([]corev1.ScopedResourceSelectorRequirement, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/travis-ci.adoc

    As example, this guide is going to focus on a Java-based project.
    More specifically, a Gradle plugin written in Java and tested with https://www.spekframework.org/[Spek].
    First, we'll get the project set up on your local machine before covering the same steps on CI.
    
    Just follow these steps:
    
    === Clone the https://github.com/gradle/gradle-site-plugin[Gradle Site Plugin] repository
    
    [listing.terminal.sample-command]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/html/template/escape_test.go

    		"urlquery": `http://www.foo.com/index.html?title=main`,
    	}
    	for _, test := range [...]struct {
    		desc, input, output string
    	}{
    		// covering issue 20323
    		{
    			"field with predefined escaper name 1",
    			`{{.html | print}}`,
    			`&lt;h1&gt;Hi!&lt;/h1&gt;`,
    		},
    		// covering issue 20323
    		{
    			"field with predefined escaper name 2",
    			`{{.urlquery | print}}`,
    			`http://www.foo.com/index.html?title=main`,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/interface.go

    // before committing to a concurrency allotment for the second.
    type QueueSetFactory interface {
    	// BeginConstruction does the first phase of creating a QueueSet.
    	// The RatioedGaugePair observes number of requests,
    	// execution covering just the regular phase.
    	// The denominator for the waiting phase is
    	// max(1, QueuingConfig.QueueLengthLimit) X max(1, QueuingConfig.DesiredNumQueues).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top