Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 243 for _abc (1.27 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFileCollectionFactoryTest.groovy

            'closure'          | ({ ['abc', 'def'] } as Object[])
            'collection(list)' | ['abc', 'def']
            'array'            | (['abc', 'def'] as Object[])
            'FileCollection'   | fileCollectionOf(tmpDir.file('abc'), tmpDir.file('def'))
            'Callable'         | (({ ['abc', 'def'] } as Callable<Object>) as Object[])
            'Provider'         | providerReturning(['abc', 'def'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. plugin/pkg/admission/certificates/ctbattest/admission_test.go

    						SignerName: "abc.com/xyz",
    					},
    				},
    				operation: admission.Update,
    			},
    			authzErr: errors.New("forced error"),
    			allowed:  false,
    		},
    		{
    			description:                      "should allow create if no signer name is specified",
    			clusterTrustBundleFeatureEnabled: true,
    			allowedName:                      "abc.com/xyz",
    			attributes: &testAttributes{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/path/filepath/path_test.go

    	{"/abc/", "/abc"},
    
    	// Remove doubled slash
    	{"abc//def//ghi", "abc/def/ghi"},
    	{"abc//", "abc"},
    
    	// Remove . elements
    	{"abc/./def", "abc/def"},
    	{"/./abc/def", "/abc/def"},
    	{"abc/.", "abc"},
    
    	// Remove .. elements
    	{"abc/def/ghi/../jkl", "abc/def/jkl"},
    	{"abc/def/../ghi/../jkl", "abc/jkl"},
    	{"abc/def/..", "abc"},
    	{"abc/def/../..", "."},
    	{"/abc/def/../..", "/"},
    	{"abc/def/../../..", ".."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultValueSnapshotterTest.groovy

            expect:
            def snapshot = snapshotter.snapshot("abc")
            snapshot instanceof StringValueSnapshot
            snapshot == snapshotter.snapshot("abc")
            snapshot != snapshotter.snapshot("other")
        }
    
        def "creates snapshot for isolated string"() {
            expect:
            def isolated = isolatableFactory.isolate("abc")
            snapshotter.snapshot("abc") == snapshotter.snapshot(isolated)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleSupportedTypesIntegrationTest.groovy

            "DirectoryProperty"           | "objects.directoryProperty()"         | "file('abc')"        | new File('abc')
            "DirectoryProperty"           | "objects.directoryProperty()"         | "(File) null"        | "null"
            "RegularFileProperty"         | "objects.fileProperty()"              | "file('abc')"        | new File('abc')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. src/regexp/all_test.go

    	{"", "", "", ""},
    	{"", "x", "", "x"},
    	{"", "", "abc", "abc"},
    	{"", "x", "abc", "xaxbxcx"},
    
    	// Test empty input and/or replacement, with pattern that does not match the empty string.
    	{"b", "", "", ""},
    	{"b", "x", "", ""},
    	{"b", "", "abc", "ac"},
    	{"b", "x", "abc", "axc"},
    	{"y", "", "", ""},
    	{"y", "x", "", ""},
    	{"y", "", "abc", "abc"},
    	{"y", "x", "abc", "abc"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternMatcherFactoryTest.java

            assertThat(matcher, matchesFile("abc"));
            assertThat(matcher, matchesFile("a", "abc", "a"));
            assertThat(matcher, matchesFile("q", "abc", "r", "abc"));
            assertThat(matcher, matchesFile("q", "r", "abc"));
            assertThat(matcher, matchesFile("abc", "q", "r"));
            assertThat(matcher, matchesFile("q", "r", "abc", "q", "r"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

        }
    
        void "can declare origin of a checksum"() {
            declareChecksum("org:foo:1.0", "sha1", "abc", "from test")
            declareChecksum("org:bar:1.0", "sha1", "abc", "from test")
            declareChecksum("org:bar:1.0", "md5", "abc", "other")
    
            when:
            serialize()
    
            then:
            contents == """<?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/tls/ClientAuthTest.kt

        assertThat(response.body.string()).isEqualTo("abc")
      }
    
      @Test
      fun clientAuthForNeeds() {
        val client = buildClient(clientCert, clientIntermediateCa.certificate)
        val socketFactory = buildServerSslSocketFactory()
        server.useHttps(socketFactory)
        server.requireClientAuth()
        server.enqueue(
          MockResponse.Builder()
            .body("abc")
            .build(),
        )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		// Common ones
    		"Accept-Encoding", "Host", "If-Modified-Since", "X-Forwarded-For",
    		// Weirdo, but still conforming names
    		"a", "ab", "abc", "a1", "-a", "a-", "a-b", "a-1", "a--1--2--b", "--abc-123",
    		"A", "AB", "AbC", "A1", "-A", "A-", "A-B", "A-1", "A--1--2--B", "--123-ABC",
    	}
    	for _, val := range goodValues {
    		if msgs := IsHTTPHeaderName(val); len(msgs) != 0 {
    			t.Errorf("expected true for '%s': %v", val, msgs)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top