Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for qsub (0.03 sec)

  1. pkg/registry/core/pod/storage/storage.go

    	registrypod "k8s.io/kubernetes/pkg/registry/core/pod"
    	podrest "k8s.io/kubernetes/pkg/registry/core/pod/rest"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // PodStorage includes storage for pods and all sub resources
    type PodStorage struct {
    	Pod                 *REST
    	Binding             *BindingREST
    	LegacyBinding       *LegacyBindingREST
    	Eviction            *EvictionREST
    	Status              *StatusREST
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. src/encoding/xml/xml.go

    	// It works for all actual cases, though.
    	param = param + "="
    	lenp := len(param)
    	i := 0
    	var sep byte
    	for i < len(s) {
    		sub := s[i:]
    		k := strings.Index(sub, param)
    		if k < 0 || lenp+k >= len(sub) {
    			return ""
    		}
    		i += lenp + k + 1
    		if c := sub[lenp+k]; c == '\'' || c == '"' {
    			sep = c
    			break
    		}
    	}
    	if sep == 0 {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/authentication.go

    			"in the oidc-ca-file, otherwise the host's root CA set will be used.")
    
    		fs.StringVar(&o.OIDC.UsernameClaim, oidcUsernameClaimFlag, "sub", ""+
    			"The OpenID claim to use as the user name. Note that claims other than the default ('sub') "+
    			"is not guaranteed to be unique and immutable. This flag is experimental, please see "+
    			"the authentication documentation for further details.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_builder.go

    )
    
    // A stateful listener builder
    // Support the below intentions
    // 1. Use separate inbound capture listener(:15006) and outbound capture listener(:15001)
    // 2. The above listeners use bind_to_port sub listeners or filter chains.
    type ListenerBuilder struct {
    	node              *model.Proxy
    	push              *model.PushContext
    	gatewayListeners  []*listener.Listener
    	inboundListeners  []*listener.Listener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. pkg/bootstrap/option/instances_test.go

    			option:   option.Region("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "zone",
    			key:      "zone",
    			option:   option.Zone("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "sub zone",
    			key:      "sub_zone",
    			option:   option.SubZone("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "node metadata nil",
    			key:      "meta_json_str",
    			option:   option.NodeMetadata(nil, nil),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  6. src/net/http/fs.go

    	if ius == "" || isZeroTime(modtime) {
    		return condNone
    	}
    	t, err := ParseTime(ius)
    	if err != nil {
    		return condNone
    	}
    
    	// The Last-Modified header truncates sub-second precision so
    	// the modtime needs to be truncated too.
    	modtime = modtime.Truncate(time.Second)
    	if ret := modtime.Compare(t); ret <= 0 {
    		return condTrue
    	}
    	return condFalse
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. internal/rest/client.go

    				if atomic.LoadInt32(&c.connected) == closed {
    					return
    				}
    				if c.HealthCheckFn() {
    					if atomic.CompareAndSwapInt32(&c.connected, offline, online) {
    						now := time.Now()
    						disconnected := now.Sub(c.LastConn())
    						logger.Event(context.Background(), "healthcheck", "Client '%s' re-connected in %s", c.url.String(), disconnected)
    						atomic.StoreInt64(&c.lastConn, now.UnixNano())
    					}
    					return
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. src/runtime/symtab.go

    	if datap == nil {
    		return funcInfo{}
    	}
    	const nsub = uintptr(len(findfuncbucket{}.subbuckets))
    
    	pcOff, ok := datap.textOff(pc)
    	if !ok {
    		return funcInfo{}
    	}
    
    	x := uintptr(pcOff) + datap.text - datap.minpc // TODO: are datap.text and datap.minpc always equal?
    	b := x / abi.FuncTabBucketSize
    	i := x % abi.FuncTabBucketSize / (abi.FuncTabBucketSize / nsub)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  9. src/image/png/writer.go

    	// The none filter.
    	sum = 0
    	for i := 0; i < n; i++ {
    		sum += abs8(cdat0[i])
    		if sum >= best {
    			break
    		}
    	}
    	if sum < best {
    		best = sum
    		filter = ftNone
    	}
    
    	// The sub filter.
    	sum = 0
    	for i := 0; i < bpp; i++ {
    		cdat1[i] = cdat0[i]
    		sum += abs8(cdat1[i])
    	}
    	for i := bpp; i < n; i++ {
    		cdat1[i] = cdat0[i] - cdat0[i-bpp]
    		sum += abs8(cdat1[i])
    		if sum >= best {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. pilot/pkg/simulation/traffic.go

    func NewSimulation(t *testing.T, s *xds.FakeDiscoveryServer, proxy *model.Proxy) *Simulation {
    	return NewSimulationFromConfigGen(t, s.ConfigGenTest, proxy)
    }
    
    // withT swaps out the testing struct. This allows executing sub tests.
    func (sim *Simulation) withT(t *testing.T) *Simulation {
    	cpy := *sim
    	cpy.t = t
    	return &cpy
    }
    
    func (sim *Simulation) RunExpectations(es []Expect) {
    	for _, e := range es {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top