Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 193 for cdata (0.05 sec)

  1. platforms/documentation/docs/src/snippets/modelRules/modelDslCoercion/groovy/data.csv

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 29 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/staticdata/data.go

    	}
    	size := info.Size()
    	if size <= 1*1024 {
    		data, err := io.ReadAll(f)
    		if err != nil {
    			return nil, 0, err
    		}
    		if int64(len(data)) != size {
    			return nil, 0, fmt.Errorf("file changed between reads")
    		}
    		var sym *obj.LSym
    		if readonly {
    			sym = StringSym(pos, string(data))
    		} else {
    			sym = slicedata(pos, string(data))
    		}
    		if len(hash) > 0 {
    			sum := notsha256.Sum256(data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/dependency-management-configurations.graffle/data.plist

    data.plist ActiveLayerIndex0App.omnigroup.OmniGraffle6169.23.0.276662AutoAdjusttrue{{0, 0}, {669, 686}}ClassSolidGraphicID2{0, 0}CanvasSize{669, 686}ColumnAlign1ColumnSp-11-22 23:16:50 +0000CreatorBenjamin MuschkoDisplayScale1 in = 1 inFileTypeautoGraphD{{16.5, 204.75}, {67, 47}}ClassShapedGraphicFi{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf100 {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\qc\partightenfactor0...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    	data[len(prefix)+1] = 0
    	if ctxt.Arch.ByteOrder == binary.BigEndian {
    		data[len(prefix)+1] = 1
    	}
    	data[len(prefix)+1] |= 2 // signals new pointer-free format
    	data = appendString(data, strdata["runtime.buildVersion"])
    	data = appendString(data, strdata["runtime.modinfo"])
    	// MacOS linker gets very upset if the size os not a multiple of alignment.
    	for len(data)%16 != 0 {
    		data = append(data, 0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. pkg/test/loadbalancersim/timeseries/data.go

    }
    
    func (d Data) Quantile(phi float64) float64 {
    	return d.sorted().quantile(phi)
    }
    
    func (d Data) Quantiles(phis ...float64) []float64 {
    	return d.sorted().quantiles(phis...)
    }
    
    func (d Data) Copy() Data {
    	out := make(Data, 0, len(d))
    	out = append(out, d...)
    	return out
    }
    
    func (d Data) sorted() sorted {
    	out := make(sorted, 0, len(d))
    	out = append(out, d...)
    
    	sort.Float64s(out)
    	return out
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/init/data.go

    Lubomir I. Ivanov <******@****.***> 1699253874 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 06 10:43:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. istioctl/pkg/multicluster/remote_secret_test.go

    	return sa
    }
    
    func makeSecret(name, caData, token string) *v1.Secret {
    	out := &v1.Secret{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        name,
    			Namespace:   testNamespace,
    			Annotations: map[string]string{v1.ServiceAccountNameKey: testServiceAccountName},
    		},
    		Data: map[string][]byte{},
    		Type: v1.SecretTypeServiceAccountToken,
    	}
    	if len(caData) > 0 {
    		out.Data[v1.ServiceAccountRootCAKey] = []byte(caData)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    	}
    	if !writeBarrier.enabled {
    		return
    	}
    	s := spanOf(dst)
    	if s == nil {
    		// If dst is a global, use the data or BSS bitmaps to
    		// execute write barriers.
    		for _, datap := range activeModules() {
    			if datap.data <= dst && dst < datap.edata {
    				bulkBarrierBitmap(dst, src, size, dst-datap.data, datap.gcdatamask.bytedata)
    				return
    			}
    		}
    		for _, datap := range activeModules() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/dec.rules

    // interface ops
    (ITab (IMake itab _)) => itab
    (IData (IMake _ data)) => data
    
    (Load <t> ptr mem) && t.IsInterface() =>
      (IMake
        (Load <typ.Uintptr> ptr mem)
        (Load <typ.BytePtr>
          (OffPtr <typ.BytePtrPtr> [config.PtrSize] ptr)
          mem))
    (Store dst (IMake itab data) mem) =>
      (Store {typ.BytePtr}
        (OffPtr <typ.BytePtrPtr> [config.PtrSize] dst)
        data
        (Store {typ.Uintptr} dst itab mem))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/webhook/client.go

    		cfg.QPS = -1
    
    		// Combine CAData from the config with any existing CA bundle provided
    		if len(cfg.TLSClientConfig.CAData) > 0 {
    			cfg.TLSClientConfig.CAData = append(cfg.TLSClientConfig.CAData, '\n')
    		}
    		cfg.TLSClientConfig.CAData = append(cfg.TLSClientConfig.CAData, cc.CABundle...)
    
    		cfg.ContentConfig.NegotiatedSerializer = cm.negotiatedSerializer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 09:09:10 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top