Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 871 for Dealer (0.82 sec)

  1. cmd/auth-handler_test.go

    		},
    		// Test case - 2
    		// Check for JWT header.
    		{
    			req: &http.Request{
    				URL: &url.URL{
    					Host:   "127.0.0.1:9000",
    					Scheme: httpScheme,
    					Path:   SlashSeparator,
    				},
    				Header: http.Header{
    					"Authorization": []string{"Bearer 12313123"},
    				},
    			},
    			authT: authTypeJWT,
    		},
    		// Test case - 3
    		// Empty authorization header.
    		{
    			req: &http.Request{
    				URL: &url.URL{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. cmd/metrics.go

    			float64(v), string(k),
    		)
    	}
    	for k, v := range bgSeq.getHealedItemsMap() {
    		ch <- prometheus.MustNewConstMetric(
    			prometheus.NewDesc(
    				prometheus.BuildFQName(healMetricsNamespace, "objects", "healed"),
    				"Objects healed since uptime",
    				[]string{"type"}, nil),
    			prometheus.CounterValue,
    			float64(v), string(k),
    		)
    	}
    	for k, v := range bgSeq.getHealFailedItemsMap() {
    		ch <- prometheus.MustNewConstMetric(
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/authenticator/config.go

    				Name:        "authorization",
    				In:          "header",
    				Description: "Bearer Token authentication",
    			},
    		}
    		securitySchemesV3["BearerToken"] = &spec3.SecurityScheme{
    			SecuritySchemeProps: spec3.SecuritySchemeProps{
    				Type:        "apiKey",
    				Name:        "authorization",
    				In:          "header",
    				Description: "Bearer Token authentication",
    			},
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. src/net/mail/message_test.go

    		// except colon, in a header key. Issue #58862.
    		in: `From: ******@****.***
    Custom/Header: v
    
    Body
    `,
    		header: Header{
    			"From":          []string{"******@****.***"},
    			"Custom/Header": []string{"v"},
    		},
    		body: "Body\n",
    	},
    	{
    		// RFC 4155 mbox format. We've historically permitted this,
    		// so we continue to permit it. Issue #60332.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  5. src/net/http/httputil/dump_test.go

    			continue
    		}
    
    		freshReq := func(ti dumpTest) *http.Request {
    			req := ti.Req
    			if req == nil {
    				req = ti.GetReq()
    			}
    
    			if req.Header == nil {
    				req.Header = make(http.Header)
    			}
    
    			if ti.Body == nil {
    				return req
    			}
    			switch b := ti.Body.(type) {
    			case []byte:
    				req.Body = io.NopCloser(bytes.NewReader(b))
    			case func() io.ReadCloser:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  6. tests/integration/security/jwt_test.go

    							check.ReachedTargetClusters(t))
    					},
    				},
    				{
    					name: "invalid-header",
    					customizeCall: func(_ framework.TestContext, _ echo.Instance, opts *echo.CallOptions) {
    						opts.HTTP.Path = ""
    						opts.HTTP.Headers = headers.New().
    							With("Auth-Header-Param", "Bearer "+jwt.TokenIssuer1).
    							Build()
    						opts.Check = check.Status(http.StatusForbidden)
    					},
    				},
    			}))
    		})
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

            }));
        }
    
        public void importCsv(final Reader reader) {
            @SuppressWarnings("resource")
            final CsvReader csvReader = new CsvReader(reader, new CsvConfig());
            final DateFormat formatter = new SimpleDateFormat(CoreLibConstants.DATE_FORMAT_ISO_8601_EXTEND);
            try {
                List<String> list;
                csvReader.readValues(); // ignore header
                while ((list = csvReader.readValues()) != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/net/http/requestwrite_test.go

    			ProtoMajor: 1,
    			ProtoMinor: 0,
    			Header: Header{
    				"X-Foo": []string{"X-Bar"},
    			},
    		},
    
    		WantWrite: "GET /foo HTTP/1.1\r\n" +
    			"Host: \r\n" +
    			"User-Agent: Go-http-client/1.1\r\n" +
    			"X-Foo: X-Bar\r\n\r\n",
    	},
    
    	// If no Request.Host and no Request.URL.Host, we send
    	// an empty Host header, and don't use
    	// Request.Header["Host"]. This is just testing that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 23.3K bytes
    - Viewed (0)
  9. internal/rest/client.go

    		}
    	}
    
    	if c.newAuthToken != nil {
    		req.Header.Set("Authorization", "Bearer "+c.newAuthToken(u.RawQuery))
    	}
    	req.Header.Set("X-Minio-Time", time.Now().UTC().Format(time.RFC3339))
    
    	if tc, ok := ctx.Value(mcontext.ContextTraceKey).(*mcontext.TraceCtxt); ok {
    		req.Header.Set(xhttp.AmzRequestID, tc.AmzReqID)
    	}
    
    	return req, nil
    }
    
    type respBodyMonitor struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authentication/v1/types.go

    	// ImpersonateUIDHeader is used to impersonate a particular UID during an API server request
    	ImpersonateUIDHeader = "Impersonate-Uid"
    
    	// ImpersonateUserExtraHeaderPrefix is a prefix for any header used to impersonate an entry in the
    	// extra map[string][]string for user.Info.  The key will be every after the prefix.
    	// It can be repeated multiplied times for multiple map keys and the same key can be repeated multiple
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top