Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for REDACTED (0.17 sec)

  1. src/cmd/go/internal/web/http.go

    				if cfg.BuildX {
    					fmt.Fprintf(os.Stderr, "# get %s: insecure\n", url.Redacted())
    				}
    				return nil, fmt.Errorf("insecure URL: %s", url.Redacted())
    			}
    		case "":
    			if security != Insecure {
    				panic("should have returned after HTTPS failure")
    			}
    		default:
    			if cfg.BuildX {
    				fmt.Fprintf(os.Stderr, "# get %s: unsupported\n", url.Redacted())
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. cni/pkg/install/kubeconfig.go

    		c.CertificateAuthority = "REDACTED"
    	}
    	lrcfg, err := latest.Scheme.ConvertToVersion(kcfg, latest.ExternalVersion)
    	if err != nil {
    		return kubeconfig{}, err
    	}
    	redacted, err := yaml.Marshal(lrcfg)
    	if err != nil {
    		return kubeconfig{}, err
    	}
    
    	return kubeconfig{
    		Full:     string(fullYaml),
    		Redacted: string(redacted),
    	}, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. cmd/http-tracer_test.go

    			"?Action=AssumeRoleWithLDAPIdentity&LDAPUsername=myusername&LDAPPassword=*REDACTED*&Version=2011-06-15",
    		},
    		{
    			"LDAPPassword=can+youreadthis%3F&Version=2011-06-15&?Action=AssumeRoleWithLDAPIdentity&LDAPUsername=myusername",
    			"LDAPPassword=*REDACTED*&Version=2011-06-15&?Action=AssumeRoleWithLDAPIdentity&LDAPUsername=myusername",
    		},
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/web/api.go

    	if err := resp.Err(); err != nil {
    		return nil, err
    	}
    	b, err := io.ReadAll(resp.Body)
    	if err != nil {
    		return nil, fmt.Errorf("reading %s: %v", u.Redacted(), err)
    	}
    	return b, nil
    }
    
    type Response struct {
    	URL        string // redacted
    	Status     string
    	StatusCode int
    	Header     map[string][]string
    	Body       io.ReadCloser // Either the original body or &errorDetail.
    
    	fileErr     error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  5. src/runtime/traceback_system_test.go

    	pcs, err := parseStackPCs(crash)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Unwind the stack using this executable's symbol table.
    	got := formatStack(pcs)
    	want := `redacted.go:0: runtime.gopanic
    traceback_system_test.go:85: runtime_test.child7: 	panic("oops")
    traceback_system_test.go:68: runtime_test.child6: 	child7() // appears in stack trace
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. src/net/url/example_test.go

    	u := &url.URL{
    		Scheme: "https",
    		User:   url.UserPassword("user", "password"),
    		Host:   "example.com",
    		Path:   "foo/bar",
    	}
    	fmt.Println(u.Redacted())
    	u.User = url.UserPassword("me", "newerPassword")
    	fmt.Println(u.Redacted())
    	// Output:
    	// https://user:******@****.***/foo/bar
    	// https://me:******@****.***/foo/bar
    }
    
    func ExampleURL_RequestURI() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.2K bytes
    - Viewed (0)
  7. cmd/admin-server-info.go

    		}
    
    		// Do not send sensitive creds.
    		if _, ok := sensitive[key]; ok || strings.Contains(strings.ToLower(key), "password") || strings.HasSuffix(strings.ToLower(key), "key") {
    			props.MinioEnvVars[key] = "*** EXISTS, REDACTED ***"
    			continue
    		}
    		props.MinioEnvVars[key] = value
    	}
    
    	objLayer := newObjectLayerFn()
    	if objLayer != nil {
    		storageInfo := objLayer.LocalStorageInfo(GlobalContext, metrics)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_encryption.go

    		allErrs = append(allErrs, field.Invalid(fieldPath.Child("secret"), "REDACTED", base64EncodingErr))
    		return allErrs
    	}
    
    	lenMatched := false
    	for _, l := range expectedLen {
    		if len(secret) == l {
    			lenMatched = true
    			break
    		}
    	}
    
    	if !lenMatched {
    		allErrs = append(allErrs, field.Invalid(fieldPath.Child("secret"), "REDACTED", fmt.Sprintf(keyLenErrFmt, len(secret), expectedLen)))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. cmd/admin-handlers-config-kv.go

    // 2. `subsys:` -> request for config of a single subsystem and the default target.
    // 3. `subsys` -> request for config of all targets for the given subsystem.
    //
    // This is a reporting API and config secrets are redacted in the response.
    func (a adminAPIHandlers) GetConfigKVHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	objectAPI, cred := validateAdminReq(ctx, w, r, policy.ConfigUpdateAdminAction)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/types_encryption.go

    	// secret is the actual key, encoded in base64.
    	Secret string `json:"secret"`
    }
    
    // String implements Stringer interface in a log safe way.
    func (k Key) String() string {
    	return fmt.Sprintf("Name: %s, Secret: [REDACTED]", k.Name)
    }
    
    // IdentityConfiguration is an empty struct to allow identity transformer in provider configuration.
    type IdentityConfiguration struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top