Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for _abc (0.11 sec)

  1. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

      hosts:
      - abc.foo.example.com
      http:
      - match:
        - uri:
            prefix: /abc-foo-example-com
        name: gateway-conformance-infra.attaches-to-abc-foo-example-com-with-hostname-intersection.0
        route:
        - destination:
            host: infra-backend-v1.gateway-conformance-infra.svc.domain.suffix
            port:
              number: 8080
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/isolation.yaml

    kind: HTTPRoute
    metadata:
      name: attaches-to-abc-foo-example-com-with-hostname-intersection
      namespace: gateway-conformance-infra
    spec:
      parentRefs:
        - name: isolation
          namespace: gateway-conformance-infra
          sectionName: abc-foo-example-com
      hostnames:
        - "bar.com" # doesn't match abc-foo-example-com listener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

            val instance = createFromPaths(listOf("abc"))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("abc")))
            assertFalse(instance.isFileSystemCheckIgnoredFor(File("abcdef")))
            assertFalse(instance.isFileSystemCheckIgnoredFor(File("123abc")))
            assertFalse(instance.isFileSystemCheckIgnoredFor(File("abc/def")))
            assertFalse(instance.isFileSystemCheckIgnoredFor(File("xyz/abc")))
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/WindowsInstallationSupplierTest.groovy

                "8.0",
                "9.0-abc"
            ]
            registry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, "SOFTWARE\\AdoptOpenJDK\\JDK\\8.0\\hotspot\\MSI", "Path") >> "c:\\jdk8"
            registry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, "SOFTWARE\\AdoptOpenJDK\\JDK\\9.0-abc\\hotspot\\MSI", "Path") >> "d:\\jdk9"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 22:14:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. testing/integ-test/src/integTest/groovy/org/gradle/integtests/StdioIntegrationTest.groovy

                    super.connect(snk)
                    write(TextUtil.toPlatformLineSeparators("abc\n123").bytes)
                    close()
                }
            })
    
            when:
            run "echo"
    
            then:
            output.contains("[abc][123]")
        }
    
        def "task can read stdin when stdin has unbounded length"() {
            given:
            buildFile << '''
    task echo {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. internal/ioutil/ioutil_test.go

    		expected string
    	}{
    		{bytes.NewBuffer([]byte("")), 0, ""},
    		{bytes.NewBuffer([]byte("")), 1, ""},
    		{bytes.NewBuffer([]byte("abc")), 0, "abc"},
    		{bytes.NewBuffer([]byte("abc")), 1, "bc"},
    		{bytes.NewBuffer([]byte("abc")), 2, "c"},
    		{bytes.NewBuffer([]byte("abc")), 3, ""},
    		{bytes.NewBuffer([]byte("abc")), 4, ""},
    	}
    	for i, testCase := range testCases {
    		r := NewSkipReader(testCase.src, testCase.skipLen)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. security/pkg/util/jwtutil_test.go

    		"65xiNg"
    
    	// oneAudString includes one `aud` claim "abc" of type string.
    	oneAudString = "header.eyJhdWQiOiJhYmMiLCJleHAiOjQ3MzI5OTQ4MDEsImlhdCI6MTU3OTM5NDgwMSwiaXNzIjoidGVzdC1pc3N1ZXItMUBpc3Rpby5pbyIsInN1YiI6InN1Yi0xIn0.signature" // nolint: lll
    
    	// twoAudList includes two `aud` claims ["abc", "xyz"] of type []string.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top