Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for somekey (4.65 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact_test.go

    )
    
    func TestCompact(t *testing.T) {
    	client := testserver.RunEtcd(t, nil)
    	ctx := context.Background()
    
    	putResp, err := client.Put(ctx, "/somekey", "data")
    	if err != nil {
    		t.Fatalf("Put failed: %v", err)
    	}
    
    	putResp1, err := client.Put(ctx, "/somekey", "data2")
    	if err != nil {
    		t.Fatalf("Put failed: %v", err)
    	}
    
    	_, _, err = compact(ctx, client, 0, putResp1.Header.Revision)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 23 14:22:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/AbstractS3DependencyResolutionTest.groovy

        }
    
        String mavenAwsRepoDsl() {
            """
            repositories {
                maven {
                    url "${mavenS3Repo.uri}"
                    credentials(AwsCredentials) {
                        accessKey "someKey"
                        secretKey "someSecret"
                    }
                }
            }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/audit/fuzzer/fuzzer.go

    					Raw:         []byte(`{"apiVersion":"","kind":"Pod","someKey":"someValue"}`),
    					ContentType: runtime.ContentTypeJSON,
    				}
    			}
    			switch c.RandBool() {
    			case true:
    				e.ResponseObject = nil
    			case false:
    				e.ResponseObject = &runtime.Unknown{
    					TypeMeta:    runtime.TypeMeta{APIVersion: "", Kind: ""},
    					Raw:         []byte(`{"apiVersion":"","kind":"Pod","someKey":"someValue"}`),
    					ContentType: runtime.ContentTypeJSON,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 04 16:10:17 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

            credentials(AwsCredentials) {
                accessKey "someKey"
                secretKey "someSecret"
                // optional
                sessionToken "someSTSToken"
            }
        }
    
        ivy {
            url "s3://myCompanyBucket/ivyrepo"
            credentials(AwsCredentials) {
                accessKey "someKey"
                secretKey "someSecret"
                // optional
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. pkg/apis/admission/fuzzer/fuzzer.go

    	return []interface{}{
    		func(s *runtime.RawExtension, c fuzz.Continue) {
    			u := &unstructured.Unstructured{Object: map[string]interface{}{
    				"apiVersion": "unknown.group/unknown",
    				"kind":       "Something",
    				"somekey":    "somevalue",
    			}}
    			s.Object = u
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 14 21:57:55 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

            credentials(AwsCredentials::class) {
                accessKey = "someKey"
                secretKey = "someSecret"
                // optional
                sessionToken = "someSTSToken"
            }
        }
    
        ivy {
            url = uri("s3://myCompanyBucket/ivyrepo")
            credentials(AwsCredentials::class) {
                accessKey = "someKey"
                secretKey = "someSecret"
                // optional
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/ivy/IvyPublishS3IntegrationTest.groovy

        }
    
        def "can publish to an S3 Ivy repository"() {
            given:
            def ivyRepo = server.remoteIvyRepo
    
            settingsFile << 'rootProject.name = "publishS3Test"'
            configureRepositoryKeys("someKey", "someSecret", "ivy")
            buildFile << """
    apply plugin: 'java'
    apply plugin: 'ivy-publish'
    
    group = 'org.gradle.test'
    version = '1.0'
    
    publishing {
        repositories {
            ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenPublishS3ErrorsIntegrationTest.groovy

        }
    
        def "should fail with an authentication error"() {
            setup:
            settingsFile << "rootProject.name = '${projectName}'"
    
            propertiesFile << """
            mavenAccessKey=someKey
            mavenSecretKey=someSecret
            """
            buildFile << """
        apply plugin: 'java'
        apply plugin: 'maven-publish'
    
        group = "org.gradle"
        version = '${mavenVersion}'
    
        publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/example/fuzzer/fuzzer.go

    			if true { //c.RandBool() {
    				*j = &runtime.Unknown{
    					// We do not set TypeMeta here because it is not carried through a round trip
    					Raw:         []byte(`{"apiVersion":"unknown.group/unknown","kind":"Something","someKey":"someValue"}`),
    					ContentType: runtime.ContentTypeJSON,
    				}
    			} else {
    				types := []runtime.Object{&example.Pod{}}
    				t := types[c.Rand.Intn(len(types))]
    				c.Fuzz(t)
    				*j = t
    			}
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 01 19:31:12 UTC 2018
    - 3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/fuzzer/fuzzer.go

    			if true { //c.RandBool() {
    				*j = &runtime.Unknown{
    					// We do not set TypeMeta here because it is not carried through a round trip
    					Raw:         []byte(`{"apiVersion":"unknown.group/unknown","kind":"Something","someKey":"someValue"}`),
    					ContentType: runtime.ContentTypeJSON,
    				}
    			} else {
    				types := []runtime.Object{&testapigroup.Carp{}}
    				t := types[c.Rand.Intn(len(types))]
    				c.Fuzz(t)
    				*j = t
    			}
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 01 19:31:12 UTC 2018
    - 3.1K bytes
    - Viewed (0)
Back to top