Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for foobody (0.13 sec)

  1. cmd/config-current.go

    			return err
    		}
    	}
    
    	return nil
    }
    
    func validateConfig(ctx context.Context, s config.Config, subSys string) error {
    	objAPI := newObjectLayerFn()
    
    	// We must have a global lock for this so nobody else modifies env while we do.
    	defer env.LockSetEnv()()
    
    	// Disable merging env values with config for validation.
    	env.SetEnvOff()
    
    	// Enable env values to validate KMS.
    	defer env.SetEnvOn()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  2. src/net/http/httputil/reverseproxy_test.go

    		},
    		{
    			name: "modifyresponse_noerr",
    			transport: staticResponseRoundTripper{
    				&http.Response{StatusCode: 345, Body: http.NoBody},
    			},
    			modifyResponse: func(res *http.Response) error {
    				res.StatusCode++
    				return nil
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route_test.go

    		g := NewWithT(t)
    		cg := core.NewConfigGenTest(t, core.TestOptions{})
    
    		fooNode := cg.SetupProxy(&model.Proxy{
    			ConfigNamespace: "foo",
    		})
    
    		routes, err := route.BuildHTTPRoutesForVirtualService(fooNode, virtualServiceMatchingOnSourceNamespace,
    			serviceRegistry, nil, 8080, gatewayNames, route.RouteOptions{})
    		xdstest.ValidateRoutes(t, routes)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  4. cmd/metacache-set.go

    					resCh = nil
    					returned = true
    				}
    				continue
    			}
    			results.o = append(results.o, entry)
    		}
    		if resCh != nil {
    			resErr = io.EOF
    			select {
    			case <-ctx.Done():
    				// Nobody wants it.
    			case resCh <- results:
    			}
    		}
    	}()
    	return func() (metaCacheEntriesSorted, error) {
    		select {
    		case <-ctx.Done():
    			mu.Lock()
    			done = true
    			mu.Unlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		})
    	}
    }
    
    // TestStoreListResourceVersion tests that if List with ResourceVersion > 0, it will wait until
    // the results are as fresh as given version.
    func TestStoreListResourceVersion(t *testing.T) {
    	fooPod := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Namespace: "test", Name: "foo"},
    		Spec:       example.PodSpec{NodeName: "machine"},
    	}
    	barPod := &example.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  6. src/net/http/request_test.go

    	tests := []struct {
    		r    io.Reader
    		want int64
    	}{
    		{bytes.NewReader([]byte("123")), 3},
    		{bytes.NewBuffer([]byte("1234")), 4},
    		{strings.NewReader("12345"), 5},
    		{strings.NewReader(""), 0},
    		{NoBody, 0},
    
    		// Not detected. During Go 1.8 we tried to make these set to -1, but
    		// due to Issue 18117, we keep these returning 0, even though they're
    		// unknown.
    		{struct{ io.Reader }{strings.NewReader("xyz")}, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    			b = s.endBlock()
    			b.Kind = ssa.BlockIf
    			b.SetControl(cmp1)
    			b.AddEdgeTo(cacheHit)
    			b.AddEdgeTo(loopBody)
    
    			// Look for an empty entry, the tombstone for this hash table.
    			//   if e.Typ == nil { goto miss }
    			s.startBlock(loopBody)
    			cmp2 := s.newValue2(ssa.OpEqPtr, typs.Bool, eTyp, s.constNil(typs.BytePtr))
    			b = s.endBlock()
    			b.Kind = ssa.BlockIf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    // This lets rewindBody avoid an error result when the request
    // does not have GetBody but the body hasn't been read at all yet.
    func setupRewindBody(req *Request) *Request {
    	if req.Body == nil || req.Body == NoBody {
    		return req
    	}
    	newReq := *req
    	newReq.Body = &readTrackingBody{ReadCloser: req.Body}
    	return &newReq
    }
    
    // rewindBody returns a new request with the body rewound.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    // at the beginning of main).
    var MemProfileRate int = 512 * 1024
    
    // disableMemoryProfiling is set by the linker if runtime.MemProfile
    // is not used and the link type guarantees nobody else could use it
    // elsewhere.
    var disableMemoryProfiling bool
    
    // A MemProfileRecord describes the live objects allocated
    // by a particular call sequence (stack trace).
    type MemProfileRecord struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/net/http/server.go

    	}
    }
    
    // requestBodyRemains reports whether future calls to Read
    // on rc might yield more data.
    func requestBodyRemains(rc io.ReadCloser) bool {
    	if rc == NoBody {
    		return false
    	}
    	switch v := rc.(type) {
    	case *expectContinueReader:
    		return requestBodyRemains(v.readCloser)
    	case *body:
    		return v.bodyRemains()
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top