Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/compile/internal/ssa/rewrite.go

    	return v.AuxInt == 0
    }
    
    // auxFrom64F encodes a float64 value so it can be stored in an AuxInt.
    func auxFrom64F(f float64) int64 {
    	if f != f {
    		panic("can't encode a NaN in AuxInt field")
    	}
    	return int64(math.Float64bits(f))
    }
    
    // auxFrom32F encodes a float32 value so it can be stored in an AuxInt.
    func auxFrom32F(f float32) int64 {
    	if f != f {
    		panic("can't encode a NaN in AuxInt field")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    	});
    })(jQuery);
    //*/
    
    /*
     * jsTree themes plugin
     * Handles loading and setting themes, as well as detecting path to themes, etc.
     */
    (function ($) {
    	var themes_loaded = [];
    	// this variable stores the path to the themes folder - if left as false - it will be autodetected
    	$.jstree._themes = false;
    	$.jstree.plugin("themes", {
    		__init : function () {
    			this.get_container()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"annotations":                "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 Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
Back to top