Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 103 for Ucred (0.06 sec)

  1. cmd/config-encrypted_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	tests := []struct {
    		edata   []byte
    		cred    auth.Credentials
    		success bool
    	}{
    		{edata1, cred1, true},
    		{edata2, cred2, true},
    		{data, cred1, false},
    	}
    
    	for _, test := range tests {
    		t.Run("", func(t *testing.T) {
    			ddata, err := madmin.DecryptData(test.cred.String(), bytes.NewReader(test.edata))
    			if err != nil && test.success {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 20 00:53:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/testdata/registry-secret.yaml

    apiVersion: v1
    data:
      .dockerconfigjson: {{ .DockerConfigJson }}
    kind: Secret
    metadata:
      name: reg-cred
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 143 bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/testdata/wasm-filter.yaml

      {{- end }}
    spec:
      phase: STATS
      selector:
        matchLabels:
          app: {{ .TargetAppName }}
      {{- if .TestWasmModuleURL }}
      url: {{ .TestWasmModuleURL }}
      {{- end }}
      imagePullSecret: reg-cred
      {{- if .ImagePullPolicy }}
      imagePullPolicy: {{ .ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 475 bytes
    - Viewed (0)
  4. cmd/admin-handlers-idp-config.go

    func (a adminAPIHandlers) ListIdentityProviderCfg(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	objectAPI, cred := validateAdminReq(ctx, w, r, policy.ConfigUpdateAdminAction)
    	if objectAPI == nil {
    		return
    	}
    	password := cred.SecretKey
    
    	idpCfgType := mux.Vars(r)["type"]
    	if !madmin.ValidIDPConfigTypes.Contains(idpCfgType) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. tests/integration/ambient/testdata/registry-secret.yaml

    apiVersion: v1
    data:
      .dockerconfigjson: {{ .DockerConfigJson }}
    kind: Secret
    metadata:
      name: reg-cred
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 143 bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/testdata/gateway-wasm-filter.yaml

      phase: STATS
      targetRef:
        kind: Gateway
        group: gateway.networking.k8s.io
        name: {{ .TargetGatewayName}}
      {{- if .TestWasmModuleURL }}
      url: {{ .TestWasmModuleURL }}
      {{- end }}
      imagePullSecret: reg-cred
      {{- if .ImagePullPolicy }}
      imagePullPolicy: {{ .ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:48:31 UTC 2023
    - 516 bytes
    - Viewed (0)
  7. tests/integration/security/file_mounted_certs/p2p_mtls_test.go

    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    const (
    	ServerSecretName = "test-server-cred"
    	ServerCertsPath  = "tests/testdata/certs/mountedcerts-server"
    
    	ClientSecretName = "test-client-cred"
    	ClientCertsPath  = "tests/testdata/certs/mountedcerts-client"
    
    	// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. tests/integration/ambient/testdata/wasm-filter.yaml

      phase: STATS
      targetRef:
        kind: {{ .TargetKind }}
        group: {{ .TargetGroup }}
        name: {{ .TargetName }}
      {{- if .TestWasmModuleURL }}
      url: {{ .TestWasmModuleURL }}
      {{- end }}
      imagePullSecret: reg-cred
      {{- if .ImagePullPolicy }}
      imagePullPolicy: {{ .ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 513 bytes
    - Viewed (0)
  9. tests/integration/telemetry/api/testdata/attributegen.yaml

    apiVersion: extensions.istio.io/v1alpha1
    kind: WasmPlugin
    metadata:
      name: istio.attributegen
    spec:
      phase: STATS
      selector:
        matchLabels:
          app: b
      url: {{ .AttributeGenURL }}
      imagePullSecret: reg-cred
      pluginConfig:
        attributes:
        - output_attribute: istio_responseClass
          match:
          - value: 2xx
            condition: response.code >= 200 && response.code <= 299
        - output_attribute: istio_operationId
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 639 bytes
    - Viewed (0)
  10. cmd/admin-handlers_test.go

    	req, err := newTestRequest(method,
    		adminPathPrefix+adminAPIVersionPrefix+path+"?"+queryVal.Encode(),
    		contentLength, bodySeeker)
    	if err != nil {
    		return nil, err
    	}
    
    	cred := globalActiveCred
    	err = signRequestV4(req, cred.AccessKey, cred.SecretKey)
    	if err != nil {
    		return nil, err
    	}
    
    	return req, nil
    }
    
    func TestAdminServerInfo(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top