Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 165 for Storep (0.16 sec)

  1. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "additionalProperties": {
                  "default": "",
                  "type": "string"
                },
                "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    		if err != nil {
    			log.Errorf("create envoyfilter failed %v", err)
    		}
    	}
    	return store
    }
    
    func buildEnvoyFilterConfigStoreWithPriorities(configPatches []*networking.EnvoyFilter_EnvoyConfigObjectPatch, priorities []int32) model.ConfigStore {
    	store := memory.Make(collections.Pilot)
    
    	for i, cp := range configPatches {
    		_, err := store.Create(config.Config{
    			Meta: config.Meta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  3. src/reflect/type.go

    		}
    		funcLookupCache.m.Store(hash, append(rts, tt))
    		return toType(tt)
    	}
    
    	// Look in known types for the same string representation.
    	str := funcStr(ft)
    	for _, tt := range typesByString(str) {
    		if haveIdenticalUnderlyingType(&ft.Type, tt, true) {
    			return addToCache(tt)
    		}
    	}
    
    	// Populate the remaining fields of ft and store in cache.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm_s390x.s

     * H  = X2*T1
     * H  = H-U1
     * Z3 = Z1*Z2
     * Z3 = Z3*H << store-out Z3 result reg.. could override Z1, if slices have same backing array
     *
     * S1 = Z2*T2
     * S1 = Y1*S1
     * R  = Z1*T1
     * R  = Y2*R
     * R  = R-S1
     *
     * T1 = H*H
     * T2 = H*T1
     * U1 = U1*T1
     *
     * X3 = R*R
     * X3 = X3-T2
     * T1 = 2*U1
     * X3 = X3-T1 << store-out X3 result reg
     *
     * T2 = S1*T2
     * Y3 = U1-X3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    const (
    	// types of channel
    	// must match ../../../../reflect/type.go:/ChanDir
    	Crecv ChanDir = 1 << 0
    	Csend ChanDir = 1 << 1
    	Cboth ChanDir = Crecv | Csend
    )
    
    // Types stores pointers to predeclared named types.
    //
    // It also stores pointers to several special types:
    //   - Types[TANY] is the placeholder "any" type recognized by SubstArgTypes.
    //   - Types[TBLANK] represents the blank variable's type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    		o2 = uint32(val >> 32)
    	}
    
    	// On AIX, TOC data accesses are always made indirectly against R2 (a sequence of addis+ld+load/store). If the
    	// The target of the load is known, the sequence can be written into addis+addi+load/store. On Linux,
    	// TOC data accesses are always made directly against R2 (e.g addis+load/store).
    	if target.IsAIX() {
    		if !strings.HasPrefix(ldr.SymName(rs), "TOC.") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    				// Update the informer because the lister gets called and must have the claim.
    				store := testCtx.informerFactory.Resource().V1alpha2().ResourceClaims().Informer().GetStore()
    				if tc.oldObj == nil {
    					require.NoError(t, store.Add(claim))
    				} else {
    					require.NoError(t, store.Update(claim))
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    	syncHandler         func(ctx context.Context, jobKey string) error
    	// podStoreSynced returns true if the pod store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	podStoreSynced cache.InformerSynced
    	// jobStoreSynced returns true if the job store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	jobStoreSynced cache.InformerSynced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. src/time/time.go

    	// The nanoseconds field is in the range [0, 999999999].
    	// If the hasMonotonic bit is 0, then the 33-bit field must be zero
    	// and the full signed 64-bit wall seconds since Jan 1 year 1 is stored in ext.
    	// If the hasMonotonic bit is 1, then the 33-bit field holds a 33-bit
    	// unsigned wall seconds since Jan 1 year 1885, and ext holds a
    	// signed 64-bit monotonic clock reading, nanoseconds since process start.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    // and (where appropriate) the prolog's lowered closure ptr store inst.
    //
    // Example:
    //
    //	b1:
    //	    v3 = ArgIntReg <int> {p1+0} [0] : AX
    //	    ... more arg regs ..
    //	    v4 = ArgFloatReg <float32> {f1+0} [0] : X0
    //	    v52 = MOVQstore <mem> {p1} v2 v3 v1
    //	    ... more stores ...
    //	    v68 = MOVSSstore <mem> {f4} v2 v67 v66
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top