Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 243 for _abc (0.04 sec)

  1. pilot/pkg/security/authz/model/generator_test.go

              name: :authority`),
    		},
    		{
    			name:  "pathGenerator",
    			g:     pathGenerator{},
    			value: "/abc",
    			want: yamlPermission(t, `
             urlPath:
              path:
                exact: /abc`),
    		},
    		{
    			name:  "pathGenerator-template",
    			g:     pathGenerator{},
    			value: "/abc/{*}",
    			want: yamlPermission(t, `
             uriTemplate:
               name: uri-template
               typedConfig:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryIntegrationTest.groovy

                }
    
                def t = objects.newInstance(Thing)
                assert t.value.toString() == "property 'value'"
                assert !t.value.present
                t.value = 'abc'
                assert t.value.get() == 'abc'
    """
    
            expect:
            succeeds()
        }
    
        def "plugin can create instance of abstract class with mutable properties"() {
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 07 02:25:12 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. pkg/util/taints/taints_test.go

    		{
    			name:        "invalid spec format without effect",
    			spec:        []string{"foo=abc"},
    			expectedErr: true,
    		},
    		{
    			name:        "invalid spec format with multiple '=' separators",
    			spec:        []string{"foo=abc=xyz:NoSchedule"},
    			expectedErr: true,
    		},
    		{
    			name:        "invalid spec format with multiple ':' separators",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    			driverNames:      []string{ebsCSIDriverName},
    			test:             "ephemeral volume missing",
    			wantStatus:       framework.NewStatus(framework.UnschedulableAndUnresolvable, `looking up PVC test/abc-xyz: persistentvolumeclaims "abc-xyz" not found`),
    		},
    		{
    			newPod:           ephemeralVolumePod,
    			filterName:       "csi",
    			ephemeralEnabled: true,
    			extraClaims:      []v1.PersistentVolumeClaim{*conflictingClaim},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                    prop.set(provider { "abc" })
                    doLast { println("$S{name} -> value = $S{prop.get()}") }
                }
                """
            )
    
            assertThat(
                build("broken", "ok1", "ok2").output,
                allOf(
                    containsString("broken -> value = abc"),
                    containsString("ok1 -> value = abc"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/webhook_converter_test.go

    				"annotations": map[string]interface{}{"a": "1", "b": "2"},
    			}, "spec": map[string]interface{}{}},
    			map[string]interface{}{"metadata": map[string]interface{}{
    				"foo":         "abc",
    				"labels":      map[string]interface{}{"a": "AA", "b": "B"},
    				"annotations": map[string]interface{}{"a": "1", "b": "22"},
    			}, "spec": map[string]interface{}{}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/MultipartReaderTest.kt

    @Tag("Slowish")
    class MultipartReaderTest {
      @Test fun `parse multipart`() {
        val multipart =
          """
          |--simple boundary
          |Content-Type: text/plain; charset=utf-8
          |Content-ID: abc
          |
          |abcd
          |efgh
          |--simple boundary
          |Content-Type: text/plain; charset=utf-8
          |Content-ID: ijk
          |
          |ijkl
          |mnop
          |
          |--simple boundary--
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/net/http_test.go

    			header:     `  299 - "text\"\\\a\b\c"  `,
    			wantResult: WarningHeader{Code: 299, Agent: `-`, Text: `text"\abc`},
    		},
    		{
    			name:       "ok with date",
    			header:     `  299 - "text\"\\\a\b\c"  "Tue, 15 Nov 1994 08:12:31 GMT" `,
    			wantResult: WarningHeader{Code: 299, Agent: `-`, Text: `text"\abc`},
    		},
    		{
    			name:       "ok with date and comma",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:21:56 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  9. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

      }
    
      fun testCachedRequest() {
        enableTls()
    
        server.enqueue(MockResponse(body = "abc", headers = Headers.headersOf("cache-control", "public, max-age=3")))
        server.enqueue(MockResponse(body = "abc"))
    
        val ctxt = InstrumentationRegistry.getInstrumentation().targetContext.applicationContext
    
        val cacheSize = 1L * 1024 * 1024 // 1MB
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/local/LocalFileStandInExternalResourceTest.groovy

            def result = resource.writeToIfPresent(outFile)
            result.bytesRead == 4
            outFile.text == "1234"
    
            file.setText("abc")
            def result2 = resource.writeTo(outFile)
            result2.bytesRead == 3
            outFile.text == "abc"
        }
    
        def "can ignore missing file when copying to file"() {
            def file = tmpDir.file("missing")
            def outFile = tmpDir.file("out")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 14K bytes
    - Viewed (0)
Back to top