Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 232 for MULTIPLE (0.3 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

      - On artifact foo-1.0.jar (org:foo:1.0) multiple problems reported:
          - in repository 'maven': artifact was signed but all keys were ignored
          - in repository 'maven': checksum is missing from verification metadata.
      - On artifact foo-1.0.pom (org:foo:1.0) multiple problems reported:
          - in repository 'maven': artifact was signed but all keys were ignored
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		t,
    		"testdata/valid-configs/aes/aes-cbc-multiple-providers.json",
    		"k8s:enc:aescbc:v1:1:",
    		"testdata/valid-configs/aes/aes-cbc-multiple-providers-reversed.json",
    		"k8s:enc:aescbc:v1:2:",
    	)
    }
    
    func TestCBCKeyRotationWithoutOverlappingProviders(t *testing.T) {
    	testCBCKeyRotationWithProviders(
    		t,
    		"testdata/valid-configs/aes/aes-cbc-multiple-keys.json",
    		"k8s:enc:aescbc:v1:A:",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  3. cmd/object-api-multipart_test.go

    		//  Used to test the listing for the case of multiple uploadID's for a given object.
    		res, err = obj.NewMultipartUpload(context.Background(), bucketNames[1], objectNames[0], opts)
    		if err != nil {
    			// Failed to create NewMultipartUpload, abort.
    			t.Fatalf("%s : %s", instanceType, err.Error())
    		}
    
    		uploadIDs = append(uploadIDs, res.UploadID)
    	}
    
    	// Bucket to test for multiple objects, each with unique UUID.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar_test.go

    			nil,
    		},
    		{
    			"sidecar-with-multiple-egress",
    			configs1,
    			nil,
    			nil,
    			nil,
    			nil,
    		},
    		{
    			"sidecar-with-multiple-egress-with-service",
    			configs1,
    			services1,
    			nil,
    
    			[]*Service{
    				{
    					Hostname: "bar",
    				},
    			},
    			nil,
    		},
    		{
    			"sidecar-with-multiple-egress-with-service-on-same-port",
    			configs1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:copying_multiple_files_example]]
    === Copying multiple files
    
    You can extend the previous examples to multiple files very easily by providing multiple arguments to `from()`:
    
    ====
    include::sample[dir="snippets/files/copy/kotlin",files="build.gradle.kts[tags=copy-multiple-files-example]"]
    include::sample[dir="snippets/files/copy/groovy",files="build.gradle[tags=copy-multiple-files-example]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. fastapi/param_functions.py

                This happens automatically when more than one `Body` parameter is declared.
    
                Read more about it in the
                [FastAPI docs for Body - Multiple Parameters](https://fastapi.tiangolo.com/tutorial/body-multiple-params/#embed-a-single-body-parameter).
                """
            ),
        ] = False,
        media_type: Annotated[
            str,
            Doc(
                """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderProfileTest.groovy

    </project>
    """
            pomReader = new PomReader(locallyAvailableExternalResource, moduleIdentifierFactory)
    
            then:
            pomReader.parseActivePomProfiles().size() == 0
        }
    
        def "parse POM with multiple active profiles having the same ID"() {
            when:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
        <artifactId>artifact-one</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  8. pilot/pkg/security/authn/policy_applier_test.go

    							},
    						},
    						Forward:           false,
    						PayloadInMetadata: "https://secret.foo.com",
    					},
    				},
    				BypassCorsPreflight: true,
    			},
    		},
    		{
    			name: "Multiple JWT rule",
    			in: []*v1beta1.JWTRule{
    				{
    					Issuer:  "https://secret.foo.com",
    					JwksUri: jwksURI,
    				},
    				{
    					Issuer: "https://secret.bar.com",
    					Jwks:   "jwks-inline-data",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  9. src/testing/testing.go

    // other parallel tests. When a test is run multiple times due to use of
    // -test.count or -test.cpu, multiple instances of a single test never run in
    // parallel with each other.
    func (t *T) Parallel() {
    	if t.isParallel {
    		panic("testing: t.Parallel called multiple times")
    	}
    	if t.isEnvSet {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            assertTasksReady(dep, b)
            assertTaskReady(a)
            assertTaskReady(finalizerDep)
            assertTaskReadyAndNoMoreToStart(finalizer)
            assertAllWorkComplete()
        }
    
        def "finalizer of multiple tasks and its dependencies run after the last task to be finalized when some do not start"() {
            given:
            Task finalizerDep = task("finalizerDep", type: Async)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
Back to top