Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for newTree (0.21 sec)

  1. src/hash/crc32/crc32_test.go

    func TestCastagnoliRace(t *testing.T) {
    	// The MakeTable(Castagnoli) lazily initializes castagnoliTable,
    	// which races with the switch on tab during Write to check
    	// whether tab == castagnoliTable.
    	ieee := NewIEEE()
    	go MakeTable(Castagnoli)
    	ieee.Write([]byte("hello"))
    }
    
    type test struct {
    	ieee, castagnoli    uint32
    	in                  string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/net/http/client_test.go

    		{lastReq: "http://gopher:******@****.***", newReq: "http://link.com", want: "http://test.com"},
    		{lastReq: "https://gopher:******@****.***", newReq: "https://link.com", want: "https://test.com"},
    
    		// nothing to do:
    		{lastReq: "http://test.com", newReq: "http://link.com", want: "http://test.com"},
    		{lastReq: "https://test.com", newReq: "https://link.com", want: "https://test.com"},
    
    		// https to http doesn't send a referer:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler.go

    	location := &url.URL{}
    	location.Scheme = "https"
    	location.Host = host
    	location.Path = req.URL.Path
    	location.RawQuery = req.URL.Query().Encode()
    
    	newReq, cancelFn := apiserverproxyutil.NewRequestForProxy(location, req)
    	newReq.Header.Add(PeerProxiedHeader, "true")
    	defer cancelFn()
    
    	proxyRoundTripper := transport.NewAuthProxyRoundTripper(user.GetName(), user.GetGroups(), user.GetExtra(), h.proxyTransport)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/graph_builder.go

    		isUnblocked := c.newRef.BlockOwnerDeletion == nil || (c.newRef.BlockOwnerDeletion != nil && !*c.newRef.BlockOwnerDeletion)
    		if wasBlocked && isUnblocked {
    			node, found := gb.uidToNode.Read(c.newRef.UID)
    			if !found {
    				logger.V(5).Info("cannot find uid in uidToNode", "uid", c.newRef.UID)
    				continue
    			}
    			gb.attemptToDelete.Add(node)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. cmd/admin-handlers-users.go

    	// root user.
    	if newCred.ParentUser != globalActiveCred.AccessKey {
    		replLogIf(ctx, globalSiteReplicationSys.IAMChangeHook(ctx, madmin.SRIAMItem{
    			Type: madmin.SRIAMItemSvcAcc,
    			SvcAccChange: &madmin.SRSvcAccChange{
    				Create: &madmin.SRSvcAccCreate{
    					Parent:        newCred.ParentUser,
    					AccessKey:     newCred.AccessKey,
    					SecretKey:     newCred.SecretKey,
    					Groups:        newCred.Groups,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. pkg/kube/inject/webhook.go

    					if len(pair[0]) > 0 && len(pair) == 2 {
    						newRes = append(newRes, pair...)
    					}
    				}
    				return newRes
    			}
    			newRes = strings.Split(parts[2], "/")
    		}
    		for i, value := range newRes {
    			if i%2 != 0 {
    				// Replace --slash-- with / in values.
    				newRes[i] = strings.ReplaceAll(value, "--slash--", "/")
    			}
    		}
    		return newRes
    	}(path)
    	newEnvs := make(map[string]string)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  7. pkg/log/uds.go

    		buffers: make([]*buffer.Buffer, 0),
    	}
    	for l := zapcore.DebugLevel; l <= zapcore.FatalLevel; l++ {
    		if baseCore.Enabled(l) {
    			uc.minimumLevel = l
    			break
    		}
    	}
    	return zapcore.NewTee(baseCore, uc)
    }
    
    // Enabled implements zapcore.Core.
    func (u *udsCore) Enabled(l zapcore.Level) bool {
    	return l >= u.minimumLevel
    }
    
    // With implements zapcore.Core.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 00:20:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. internal/grid/README.md

        instance := grid.NewStream[*Payload, *Req, *Resp](h, newPayload, newReq, newResp)
    	
        // Tweakable options
        instance.WithPayload = true // default true when newPayload != nil
        instance.OutCapacity = 1    // default
        instance.InCapacity = 1     // default true when newReq != nil
    	
        // Register the handler on the manager
        instance.Register(manager, handler, "asubroute")
    	
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/net/http/cgi/host.go

    	// second request?
    	newReq := &http.Request{
    		Method:     "GET",
    		URL:        url,
    		Proto:      "HTTP/1.1",
    		ProtoMajor: 1,
    		ProtoMinor: 1,
    		Header:     make(http.Header),
    		Host:       url.Host,
    		RemoteAddr: req.RemoteAddr,
    		TLS:        req.TLS,
    	}
    	h.PathLocationHandler.ServeHTTP(rw, newReq)
    }
    
    func upperCaseAndUnderscore(r rune) rune {
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/code.go

    		}
    	} else {
    		fmt.Fprintf(buf, "%s%s\n", prefix1, b.Fence)
    		for _, line := range b.Text {
    			fmt.Fprintf(buf, "%s%s\n", s.prefix, line)
    		}
    		fmt.Fprintf(buf, "%s%s\n", s.prefix, b.Fence)
    	}
    }
    
    func newPre(p *parseState, s line) (line, bool) {
    	peek2 := s
    	if p.para() == nil && peek2.trimSpace(4, 4, false) && !peek2.isBlank() {
    		b := &preBuilder{ /*indent: strings.TrimSuffix(s.string(), peek2.string())*/ }
    		p.addBlock(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top