Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 164 for __data (0.09 sec)

  1. src/cmd/link/internal/ld/symtab.go

    	ctxt.xdefine("runtime.enoptrdata", sym.SNOPTRDATA, 0)
    	ctxt.xdefine("runtime.data", sym.SDATA, 0)
    	ctxt.xdefine("runtime.edata", sym.SDATA, 0)
    	ctxt.xdefine("runtime.bss", sym.SBSS, 0)
    	ctxt.xdefine("runtime.ebss", sym.SBSS, 0)
    	ctxt.xdefine("runtime.noptrbss", sym.SNOPTRBSS, 0)
    	ctxt.xdefine("runtime.enoptrbss", sym.SNOPTRBSS, 0)
    	ctxt.xdefine("runtime.covctrs", sym.SNOPTRBSS, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/v1/zz_generated.conversion.go

    	out.CertFile = in.CertFile
    	out.KeyFile = in.KeyFile
    	out.CAFile = in.CAFile
    	out.CertData = *(*[]byte)(unsafe.Pointer(&in.CertData))
    	out.KeyData = *(*[]byte)(unsafe.Pointer(&in.KeyData))
    	out.CAData = *(*[]byte)(unsafe.Pointer(&in.CAData))
    	return nil
    }
    
    // Convert_v1_ExtenderTLSConfig_To_config_ExtenderTLSConfig is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  3. src/reflect/type.go

    		prog = append(prog, 0)
    		*(*uint32)(unsafe.Pointer(&prog[0])) = uint32(len(prog) - 4)
    		typ.Kind_ |= abi.KindGCProg
    		typ.GCData = &prog[0]
    	} else {
    		typ.Kind_ &^= abi.KindGCProg
    		bv := new(bitVector)
    		addTypeBits(bv, 0, &typ.Type)
    		if len(bv.data) > 0 {
    			typ.GCData = &bv.data[0]
    		}
    	}
    	typ.Equal = nil
    	if comparable {
    		typ.Equal = func(p, q unsafe.Pointer) bool {
    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. pkg/test/framework/components/echo/kube/deployment.go

    		}
    
    		// push bootstrap config as a ConfigMap so we can mount it on our "vm" pods
    		cmData := map[string][]byte{}
    		generatedFiles, err := os.ReadDir(subsetDir)
    		if err != nil {
    			return err
    		}
    		for _, file := range generatedFiles {
    			if file.IsDir() {
    				continue
    			}
    			cmData[file.Name()], err = os.ReadFile(path.Join(subsetDir, file.Name()))
    			if err != nil {
    				return err
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  5. cmd/data-usage-cache.go

    		hashPathCutSet = dataUsageRoot + string(filepath.Separator)
    	}
    }
    
    // hashPath calculates a hash of the provided string.
    func hashPath(data string) dataUsageHash {
    	if data != dataUsageRoot {
    		data = strings.Trim(data, hashPathCutSet)
    	}
    	return dataUsageHash(path.Clean(data))
    }
    
    //msgp:ignore dataUsageHashMap
    type dataUsageHashMap map[string]struct{}
    
    // DecodeMsg implements msgp.Decodable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  6. cmd/dummy-data-generator_test.go

    Klaus Post <******@****.***> 1663610716 +0200
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  7. pkg/kubelet/certificate/transport.go

    	})
    
    	// Zero out all existing TLS options since our new transport enforces them.
    	clientConfig.CertData = nil
    	clientConfig.KeyData = nil
    	clientConfig.CertFile = ""
    	clientConfig.KeyFile = ""
    	clientConfig.CAData = nil
    	clientConfig.CAFile = ""
    	clientConfig.Insecure = false
    	clientConfig.NextProtos = nil
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 13:57:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/main.go

    	ctxt.findfunctab(pclnState, containers)
    	bench.Start("dwarfGenerateDebugSyms")
    	dwarfGenerateDebugSyms(ctxt)
    	bench.Start("symtab")
    	symGroupType := ctxt.symtab(pclnState)
    	bench.Start("dodata")
    	ctxt.dodata(symGroupType)
    	bench.Start("address")
    	order := ctxt.address()
    	bench.Start("dwarfcompress")
    	dwarfcompress(ctxt)
    	bench.Start("layout")
    	filesize := ctxt.layout(order)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. cmd/data-usage-cache_gen_test.go

    Krishnan Parthasarathi <******@****.***> 1705132268 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jan 13 07:51:08 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. cmd/data-usage-cache_test.go

    Krishnan Parthasarathi <******@****.***> 1705132268 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jan 13 07:51:08 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top