Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 531 for _abc (0.06 sec)

  1. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

            assertOrder(X_GT_Y, "1-abc", "1-alpha");
            assertOrder(X_GT_Y, "1-abc", "1-beta");
            assertOrder(X_GT_Y, "1-abc", "1-milestone");
            assertOrder(X_GT_Y, "1-abc", "1-rc");
            assertOrder(X_GT_Y, "1-abc", "1-snapshot");
            assertOrder(X_GT_Y, "1-abc", "1");
            assertOrder(X_GT_Y, "1-abc", "1-sp");
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    		}, true, true},
    		{"foo  in	 (abc)", internalSelector{
    			getRequirement("foo", selection.In, sets.NewString("abc"), t),
    		}, true, true},
    		{"x notin\n (abc)", internalSelector{
    			getRequirement("x", selection.NotIn, sets.NewString("abc"), t),
    		}, true, true},
    		{"x  notin	\t	(abc,def)", internalSelector{
    			getRequirement("x", selection.NotIn, sets.NewString("abc", "def"), t),
    		}, true, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

            final Map<String, Object> paramMap = new HashMap<>();
            paramMap.put("param1", "PARAM1");
            paramMap.put("param2", "PARAM2+");
            paramMap.put("param3", "PARAM3*");
    
            value = "\"abc\"";
            assertEquals("abc", dataStore.convertValue(Constants.DEFAULT_SCRIPT, value, paramMap));
    
            value = "param1";
            assertEquals("PARAM1", dataStore.convertValue(Constants.DEFAULT_SCRIPT, value, paramMap));
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/AbstractMinimalProviderTest.groovy

            expect:
            def mapped = provider.map(transformer)
            !mapped.present
            mapped.getOrNull() == null
            mapped.getOrElse("s2") == "s2"
    
            provider.value("abc")
            mapped.present
            mapped.get() == "[abc]"
    
            provider.value(null)
            !mapped.present
    
            provider.value("123")
            mapped.present
            mapped.get() == "[123]"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/ResponseCommonTest.kt

        assertThat(peekedBody.string()).isEqualTo("abc")
        assertThat(response.body.string()).isEqualTo("abcdef")
      }
    
      @Test fun peekLongerThanResponse() {
        val response = newResponse(responseBody("abc"))
        val peekedBody = response.peekBody(6)
        assertThat(peekedBody.string()).isEqualTo("abc")
        assertThat(response.body.string()).isEqualTo("abc")
      }
    
      @Test fun eachPeakIsIndependent() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/strings/compare_test.go

    import (
    	"internal/testenv"
    	. "strings"
    	"testing"
    	"unsafe"
    )
    
    var compareTests = []struct {
    	a, b string
    	i    int
    }{
    	{"", "", 0},
    	{"a", "", 1},
    	{"", "a", -1},
    	{"abc", "abc", 0},
    	{"ab", "abc", -1},
    	{"abc", "ab", 1},
    	{"x", "ab", 1},
    	{"ab", "x", -1},
    	{"x", "a", 1},
    	{"b", "x", -1},
    	// test runtime·memeq's chunked implementation
    	{"abcdefgh", "abcdefgh", 0},
    	{"abcdefghi", "abcdefghi", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:33:55 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. test/typeparam/issue48604.go

    package main
    
    type Foo[T any] interface {
    	CreateBar() Bar[T]
    }
    
    type Bar[T any] func() Bar[T]
    
    func (f Bar[T]) CreateBar() Bar[T] {
    	return f
    }
    
    func abc[R any]() {
    	var _ Foo[R] = Bar[R](nil)()
    }
    
    func main() {
    	abc[int]()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 396 bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/sample.kt

    package com.example
    
    
    fun Abc.body() {
        val myB = b()
    
        a = myB
        val myD = newD("shared")
    
        c(1) {
            x = f(y)
            d = myD
        }
        c(2) {
            x = f("another test")
            d = myD
        }
    }
    
    
    object Main {
        @JvmStatic
        fun main(args: Array<String>) {
            val receiver = Abc()
            receiver.body()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:30:30 UTC 2024
    - 425 bytes
    - Viewed (0)
  9. okhttp-coroutines/src/test/kotlin/okhttp3/coroutines/ExecuteAsyncTest.kt

        this.server = server
      }
    
      @Test
      fun suspendCall() {
        runTest {
          server.enqueue(MockResponse(body = "abc"))
    
          val call = client.newCall(request)
    
          call.executeAsync().use {
            withContext(Dispatchers.IO) {
              assertThat(it.body.string()).isEqualTo("abc")
            }
          }
        }
      }
    
      @Test
      fun timeoutCall() {
        runTest {
          server.enqueue(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation_test.go

    					Name:            "abc",
    					Namespace:       metav1.NamespaceDefault,
    					ResourceVersion: "1",
    				},
    				Status: batch.JobStatus{
    					Active:      1,
    					Succeeded:   2,
    					Failed:      3,
    					Terminating: pointer.Int32(4),
    				},
    			},
    			update: batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "abc",
    					Namespace:       metav1.NamespaceDefault,
    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