Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 115 for Preds (0.04 sec)

  1. pilot/pkg/config/kube/gateway/model.go

    package gateway
    
    import (
    	corev1 "k8s.io/api/core/v1"
    	k8s "sigs.k8s.io/gateway-api/apis/v1alpha2"
    
    	"istio.io/istio/pilot/pkg/credentials"
    	"istio.io/istio/pilot/pkg/model"
    	creds "istio.io/istio/pilot/pkg/model/credentials"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	gatewayAliasForAnnotationKey = "gateway.istio.io/alias-for"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. cmd/speedtest.go

    				duration:        opts.duration,
    				storageClass:    opts.storageClass,
    				bucketName:      opts.bucketName,
    				enableSha256:    opts.enableSha256,
    				enableMultipart: opts.enableMultipart,
    				creds:           opts.creds,
    			}
    
    			results := globalNotificationSys.SpeedTest(ctx, sopts)
    			sort.Slice(results, func(i, j int) bool {
    				return results[i].Endpoint < results[j].Endpoint
    			})
    
    			totalPut := uint64(0)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpAuthenticationDependencyResolutionIntegrationTest.groovy

            when:
            settingsFile << 'rootProject.name = "publish"'
            buildFile << """
    repositories {
        ivy {
            url "${ivyHttpRepo.uri}"
            $creds
        }
    }
    configurations { compile }
    dependencies {
        compile 'group:projectA:1.2'
    }
    """
            failedResolve.prepare()
    
            and:
            serverAuthScheme = authScheme
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/grpcgen/grpcgen_test.go

    		t.Run("gRPC-svc-tls", func(t *testing.T) {
    			// Replaces: insecure.NewCredentials
    			creds, err := xdscreds.NewServerCredentials(xdscreds.ServerOptions{FallbackCreds: insecure.NewCredentials()})
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			grpcOptions := []grpc.ServerOption{
    				grpc.Creds(creds),
    			}
    
    			bootstrapB := GRPCBootstrap("echo-rbac-mtls", "test", "127.0.1.1", xdsPort)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. cmd/admin-handlers-users_test.go

    	}
    
    	err = s.adm.SetPolicy(ctx, policy, accessKey, false)
    	if err != nil {
    		c.Fatalf("Unable to set policy: %v", err)
    	}
    
    	// Create an madmin client with user creds
    	userAdmClient, err := madmin.NewWithOptions(s.endpoint, &madmin.Options{
    		Creds:  credentials.NewStaticV4(accessKey, secretKey, ""),
    		Secure: s.secure,
    	})
    	if err != nil {
    		c.Fatalf("Err creating user admin client: %v", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpIntegTest.groovy

        def "reports failure publishing with #credsName credentials to authenticated repository using #authScheme auth"() {
            given:
            def credentialsBlock = ''
            if (creds != null) {
                configureRepositoryCredentials(creds.username, creds.password, "ivy")
                credentialsBlock = "credentials(PasswordCredentials)"
            }
            buildFile << """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_image.go

    		return "", err
    	}
    
    	keyring, err := credentialprovidersecrets.MakeDockerKeyring(pullSecrets, m.keyring)
    	if err != nil {
    		return "", err
    	}
    
    	imgSpec := toRuntimeAPIImageSpec(image)
    
    	creds, withCredentials := keyring.Lookup(repoToPull)
    	if !withCredentials {
    		klog.V(3).InfoS("Pulling image without credentials", "image", img)
    
    		imageRef, err := m.imageService.PullImage(ctx, imgSpec, nil, podSandboxConfig)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. pilot/pkg/xds/ecds.go

    		} else {
    			results[sr.ResourceName] = cred
    		}
    	}
    	return results
    }
    
    func (e *EcdsGenerator) SetCredController(creds credscontroller.MulticlusterController) {
    	e.secretController = creds
    }
    
    func referencedSecrets(proxy *model.Proxy, push *model.PushContext, resourceNames []string) []SecretResource {
    	// The requirement for the Wasm pull secret:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    						Parent:        creds.ParentUser,
    						AccessKey:     creds.AccessKey,
    						SecretKey:     creds.SecretKey,
    						Groups:        creds.Groups,
    						Claims:        claims,
    						SessionPolicy: json.RawMessage(policyJSON),
    						Status:        creds.Status,
    						Name:          creds.Name,
    						Description:   creds.Description,
    						Expiration:    &creds.Expiration,
    					},
    				},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. docs/sts/client-grants.go

    	if err != nil {
    		log.Fatal(err)
    	}
    
    	// Uncomment this to use MinIO API operations by initializing minio
    	// client with obtained credentials.
    
    	opts := &minio.Options{
    		Creds:        sts,
    		BucketLookup: minio.BucketLookupAuto,
    	}
    
    	u, err := url.Parse(stsEndpoint)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	clnt, err := minio.New(u.Host, opts)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 3.3K bytes
    - Viewed (0)
Back to top