Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 184 for Credential (0.3 sec)

  1. tests/test_tutorial/test_security/test_tutorial005_py39.py

        response = client.get("/users/me", headers={"Authorization": "Bearer nonexistent"})
        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Could not validate credentials"}
        assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"'
    
    
    @needs_py39
    def test_incorrect_token_type(client: TestClient):
        response = client.get(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    - Environment variables
    - Private repository credentials
    - Build cache and Develocity credentials
    - Plugin Portal publishing credentials
    
    It's important to avoid using the `DEBUG` log level when running on public Continuous Integration (CI) services.
    Build logs on these services are accessible to the public and can expose sensitive information.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

        {{- if eq .Values.global.caName "GkeWorkloadCertificate" }}
        - name: gke-workload-certificate
          mountPath: /var/run/secrets/workload-spiffe-credentials
          readOnly: true
        {{- else }}
        - name: workload-certs
          mountPath: /var/run/secrets/workload-spiffe-credentials
        {{- end }}
        {{- if eq .Values.global.pilotCertProvider "istiod" }}
        - mountPath: /var/run/secrets/istio
          name: istiod-ca-cert
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. cmd/object-lambda-handlers.go

    	"github.com/minio/minio-go/v7/pkg/credentials"
    	"github.com/minio/mux"
    	"github.com/minio/pkg/v3/policy"
    
    	"github.com/minio/minio/internal/auth"
    	levent "github.com/minio/minio/internal/config/lambda/event"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/minio/internal/logger"
    )
    
    func getLambdaEventData(bucket, object string, cred auth.Credentials, r *http.Request) (levent.Event, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. cmd/admin-handlers-users_test.go

    }
    
    func (c *check) mustCreateIAMUser(ctx context.Context, admClnt *madmin.AdminClient) madmin.Credentials {
    	c.Helper()
    	randUser := mustGetUUID()
    	randPass := mustGetUUID()
    	err := admClnt.AddUser(ctx, randUser, randPass)
    	if err != nil {
    		c.Fatalf("should be able to create a user: %v", err)
    	}
    	return madmin.Credentials{
    		AccessKey: randUser,
    		SecretKey: randPass,
    	}
    }
    
    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. pilot/pkg/model/extensions.go

    func toSecretResourceName(name, pluginNamespace string) string {
    	if name == "" {
    		return ""
    	}
    	// Convert user provided secret name to secret resource name.
    	rn := credentials.ToResourceName(name)
    	// Parse the secret resource name.
    	sr, err := credentials.ParseResourceName(rn, pluginNamespace, "", "")
    	if err != nil {
    		log.Debugf("Failed to parse wasm secret resource name %v", err)
    		return ""
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. platforms/documentation/docs/build.gradle

            credentialsForExternalToolViaStdin {
                sampleDirectory = samplesRoot.dir("credentials-handling/pass-credentials-to-external-tool-via-stdin")
                displayName = "Supply credentials to external tool"
                description = "Pass credentials to an external tool via stdin using Gradle properties."
                category = "Using Credentials"
            }
    
            structuringSoftwareProjects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  8. security/pkg/server/ca/server_test.go

    package ca
    
    import (
    	"context"
    	"crypto/tls"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"fmt"
    	"net"
    	"strings"
    	"testing"
    	"time"
    
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/credentials"
    	"google.golang.org/grpc/metadata"
    	"google.golang.org/grpc/peer"
    	"google.golang.org/grpc/status"
    	"google.golang.org/protobuf/types/known/structpb"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    				"--cluster-signing-cert-file=" + filepath.Join(testCertsDir, "ca.crt"),
    				"--cluster-signing-key-file=" + filepath.Join(testCertsDir, "ca.key"),
    				"--use-service-account-credentials=true",
    				"--controllers=*,bootstrapsigner,tokencleaner",
    				"--authentication-kubeconfig=" + filepath.Join(kubeadmconstants.KubernetesDir, "controller-manager.conf"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementDslSpec.groovy

                            url "http://repo.internal.net/m2"
                            authentication {
                                basic(BasicAuthentication)
                            }
                            credentials {
                                username = "noob"
                                password = "hunter2"
                            }
                        }
                    }
                }
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top