Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 197 for _abc (0.11 sec)

  1. pkg/util/smallset/smallset_test.go

    				_ = set1000.Contains("456")
    				_ = set1000.Contains("abc")
    			}
    		})
    		b.Run("Contains/100", func(b *testing.B) {
    			for range b.N {
    				_ = set100.Contains("45")
    				_ = set100.Contains("abc")
    			}
    		})
    		b.Run("Contains/2", func(b *testing.B) {
    			for range b.N {
    				_ = set2.Contains("1")
    				_ = set2.Contains("abc")
    			}
    		})
    	})
    	b.Run("SmallSet", func(b *testing.B) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CacheCorruptionTest.kt

              ),
            body = "ABC.1",
          ),
        )
        server.enqueue(
          MockResponse(
            headers =
              headersOf(
                "Last-Modified",
                formatDate(-1, TimeUnit.HOURS)!!,
                "Expires",
                formatDate(1, TimeUnit.HOURS)!!,
              ),
            body = "ABC.2",
          ),
        )
        client =
          client.newBuilder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoSimple/SimpleAnalysisDemo.kt

        types = listOf(Abc::class, C::class, D::class),
        externalFunctions = listOf(::newD),
        defaultImports = listOf(DefaultFqName("com.example", "newD"))
    )
    
    
    object SimpleAnalysisDemo {
        @JvmStatic
        fun main(args: Array<String>) {
            printResolutionResults(
                schema.resolve(
                    """
                        val myB = b()
    
                        a = myB
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionValueNotationParserFactorySpec.groovy

            OptionValueNotationParserFactory factory = new OptionValueNotationParserFactory()
            when:
            def parser = factory.toComposite(TestEnum.class);
            then:
            parser.parseNotation("ABC") == TestEnum.ABC
        }
    
        def "creates notationparser for handling handles integers"(){
            given:
            OptionValueNotationParserFactory factory = new OptionValueNotationParserFactory()
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 08 09:28:44 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top