Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for podstore (0.14 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheStrategy.kt

              return false
            }
          }
    
          // A 'no-store' directive on request or response prevents the response from being cached.
          return !response.cacheControl.noStore && !request.cacheControl.noStore
        }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritegeneric.go

    			break
    		}
    		v.reset(OpStore)
    		v.Aux = typeToAux(t1)
    		v0 := b.NewValue0(v.Pos, OpStore, types.TypeMem)
    		v0.Aux = typeToAux(t2)
    		v1 := b.NewValue0(v.Pos, OpStore, types.TypeMem)
    		v1.Aux = typeToAux(t3)
    		v2 := b.NewValue0(v.Pos, OpStore, types.TypeMem)
    		v2.Aux = typeToAux(t4)
    		v2.AddArg3(op4, d4, mem)
    		v1.AddArg3(op3, d3, v2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  3. pkg/registry/core/service/storage/storage.go

    )
    
    type EndpointsStorage interface {
    	rest.Getter
    	rest.GracefulDeleter
    }
    
    type PodStorage interface {
    	rest.Getter
    }
    
    type REST struct {
    	*genericregistry.Store
    	primaryIPFamily   api.IPFamily
    	secondaryIPFamily api.IPFamily
    	alloc             Allocators
    	endpoints         EndpointsStorage
    	pods              PodStorage
    	proxyTransport    http.RoundTripper
    }
    
    var (
    	_ rest.CategoriesProvider     = &REST{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. src/net/http/cgi/child.go

    		s := params["QUERY_STRING"]
    		if s != "" {
    			uriStr += "?" + s
    		}
    	}
    
    	// There's apparently a de-facto standard for this.
    	// https://web.archive.org/web/20170105004655/http://docstore.mik.ua/orelly/linux/cgi/ch03_02.htm#ch03-35636
    	if s := params["HTTPS"]; s == "on" || s == "ON" || s == "1" {
    		r.TLS = &tls.ConnectionState{HandshakeComplete: true}
    	}
    
    	if r.Host != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Common with math Float64bits, Float64frombits
    (MOVDload [off] {sym} ptr (FMOVDstore [off] {sym} ptr x _)) => (MFVSRD x)
    (FMOVDload [off] {sym} ptr (MOVDstore [off] {sym} ptr x _)) => (MTVSRD x)
    
    (FMOVDstore [off] {sym} ptr (MTVSRD x) mem) => (MOVDstore [off] {sym} ptr x mem)
    (MOVDstore [off] {sym} ptr (MFVSRD x) mem) => (FMOVDstore [off] {sym} ptr x mem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    (MOVFstore [off1] {sym} x:(ADDconst [off2] ptr) val mem) && (is16Bit(int64(off1+off2)) || x.Uses == 1) => (MOVFstore [off1+off2] {sym} ptr val mem)
    (MOVDstore [off1] {sym} x:(ADDconst [off2] ptr) val mem) && (is16Bit(int64(off1+off2)) || x.Uses == 1) => (MOVDstore [off1+off2] {sym} ptr val mem)
    
    (MOVBstorezero [off1] {sym} x:(ADDconst [off2] ptr) mem) && (is16Bit(int64(off1+off2)) || x.Uses == 1) => (MOVBstorezero [off1+off2] {sym} ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		v.AddArg3(dst, v0, v1)
    		return true
    	}
    	// match: (Move [32] {t} dst src mem)
    	// cond: t.Alignment()%8 == 0
    	// result: (MOVDstore [24] dst (MOVDload [24] src mem) (MOVDstore [16] dst (MOVDload [16] src mem) (MOVDstore [8] dst (MOVDload [8] src mem) (MOVDstore dst (MOVDload src mem) mem))))
    	for {
    		if auxIntToInt64(v.AuxInt) != 32 {
    			break
    		}
    		t := auxToType(v.Aux)
    		dst := v_0
    		src := v_1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  8. pkg/controller/controller_utils.go

    	// ControllerExpectationsInterface.
    	uidStore cache.Store
    }
    
    // GetUIDs is a convenience method to avoid exposing the set of expected uids.
    // The returned set is not thread safe, all modifications must be made holding
    // the uidStoreLock.
    func (u *UIDTrackingControllerExpectations) GetUIDs(controllerKey string) sets.String {
    	if uid, exists, err := u.uidStore.GetByKey(controllerKey); err == nil && exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

      }
    
      @Test
      fun cacheControl() {
        val cacheControl: CacheControl = CacheControl.Builder().build()
        val noCache: Boolean = cacheControl.noCache
        val noStore: Boolean = cacheControl.noStore
        val maxAgeSeconds: Int = cacheControl.maxAgeSeconds
        val sMaxAgeSeconds: Int = cacheControl.sMaxAgeSeconds
        val mustRevalidate: Boolean = cacheControl.mustRevalidate
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/topologymanager/topology_manager_test.go

    		ctnScopeManager.scope.(*containerScope).hintProviders = tc.hp
    
    		podScopeManager := manager{}
    		podScopeManager.scope = NewPodScope(tc.policy)
    		podScopeManager.scope.(*podScope).hintProviders = tc.hp
    
    		pod := &v1.Pod{
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{
    						Resources: v1.ResourceRequirements{},
    					},
    				},
    			},
    			Status: v1.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 13:04:32 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top