Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 98 for ptrdata (0.21 sec)

  1. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

        const uint8_t* const opt_data =
            reinterpret_cast<const uint8_t*>(custom_options.data());
        const size_t opt_size = custom_options.size();
        if (!flexbuffers::VerifyBuffer(opt_data, opt_size)) {
          return emitError(loc, "invalid custom options");
        }
    
        const flexbuffers::Vector& v =
            flexbuffers::GetRoot(opt_data, opt_size).AsVector();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	ldr.SetAttrSpecial(noptrbss.Sym(), false)
    
    	enoptrbss := ldr.CreateSymForUpdate("runtime.enoptrbss", 0)
    	ldr.SetAttrSpecial(enoptrbss.Sym(), false)
    
    	noptrdata := ldr.CreateSymForUpdate("runtime.noptrdata", 0)
    	noptrdata.SetSize(8)
    	ldr.SetAttrSpecial(noptrdata.Sym(), false)
    
    	enoptrdata := ldr.CreateSymForUpdate("runtime.enoptrdata", 0)
    	ldr.SetAttrSpecial(enoptrdata.Sym(), false)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. src/runtime/heapdump.go

    	f := s.fn
    
    	// Figure out what we can about our stack map
    	pc := s.pc
    	pcdata := int32(-1) // Use the entry map at function entry
    	if pc != f.entry() {
    		pc--
    		pcdata = pcdatavalue(f, abi.PCDATA_StackMapIndex, pc)
    	}
    	if pcdata == -1 {
    		// We do not have a valid pcdata value but there might be a
    		// stackmap for this function. It is likely that we are looking
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

              other.data.length());
          for (int i = 0; i < data.length(); i++) {
            putData(i, other.data.get(i));
          }
        }
    
        /**
         * ORs the bits encoded in the {@code i}th {@code long} in the underlying {@link
         * AtomicLongArray} with the given value.
         */
        void putData(int i, long longValue) {
          long ourLongOld;
          long ourLongNew;
          boolean changedAnyBits = true;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  5. pkg/apis/certificates/validation/validation.go

    	if err != nil {
    		return err
    	}
    	// check that the signature is valid
    	return csr.CheckSignature()
    }
    
    func validateCertificate(pemData []byte) error {
    	if len(pemData) == 0 {
    		return nil
    	}
    
    	blocks := 0
    	for {
    		block, remainingData := pem.Decode(pemData)
    		if block == nil {
    			break
    		}
    
    		if block.Type != utilcert.CertificateBlockType {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. cmd/kube-apiserver/apiserver.go

    limitations under the License.
    */
    
    // APIServer is the main API server and master for the cluster.
    // It is responsible for serving the cluster management API.
    package main
    
    import (
    	"os"
    	_ "time/tzdata" // for timeZone support in CronJob
    
    	"k8s.io/component-base/cli"
    	_ "k8s.io/component-base/logs/json/register"          // for JSON log format registration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 05 18:50:03 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    	}
    
    	return nil
    }
    
    func caCertFromBundle(bundlePath string) (*x509.Certificate, error) {
    	pemData, err := ioutil.ReadFile(bundlePath)
    	if err != nil {
    		return nil, err
    	}
    
    	// fetch last block
    	var block *pem.Block
    	for {
    		var nextBlock *pem.Block
    		nextBlock, pemData = pem.Decode(pemData)
    		if nextBlock == nil {
    			if block == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm/obj5.go

    	// we are still in function prologue. We need to fix the
    	// SP data and PCDATA.
    	spfix := obj.Appendp(last, c.newprog)
    	spfix.As = obj.ANOP
    	spfix.Spadj = -framesize
    
    	pcdata := c.ctxt.EmitEntryStackMap(c.cursym, spfix, c.newprog)
    	pcdata = c.ctxt.StartUnsafePoint(pcdata, c.newprog)
    
    	// MOVW	LR, R3
    	movw := obj.Appendp(pcdata, c.newprog)
    	movw.As = AMOVW
    	movw.From.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  9. pkg/controller/volume/expand/expand_controller_test.go

    		}
    	}
    }
    
    func applyPVCPatch(originalPVC *v1.PersistentVolumeClaim, patch []byte) (*v1.PersistentVolumeClaim, error) {
    	pvcData, err := json.Marshal(originalPVC)
    	if err != nil {
    		return nil, fmt.Errorf("failed to marshal pvc with %v", err)
    	}
    	updated, err := strategicpatch.StrategicMergePatch(pvcData, patch, v1.PersistentVolumeClaim{})
    	if err != nil {
    		return nil, fmt.Errorf("failed to apply patch on pvc %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/global_test.go

    	}
    
    	patterns := []string{
    		// It is hard to look for actual instructions in an
    		// arch-independent way. So we'll just look for
    		// pseudo-ops that are arch-independent.
    		"\tTEXT\t",
    		"\tFUNCDATA\t",
    		"\tPCDATA\t",
    	}
    	outstr := string(out)
    	for _, p := range patterns {
    		if !strings.Contains(outstr, p) {
    			println(outstr)
    			panic("can't find pattern " + p)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top