Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 89 for dodata (0.45 sec)

  1. src/reflect/export_test.go

    		nptrs := ft.PtrBytes / goarch.PtrSize
    		gcdata := ft.GcSlice(0, (nptrs+7)/8)
    		for i := uintptr(0); i < nptrs; i++ {
    			gc = append(gc, gcdata[i/8]>>(i%8)&1)
    		}
    	}
    	return
    }
    
    func TypeLinks() []string {
    	var r []string
    	sections, offset := typelinks()
    	for i, offs := range offset {
    		rodata := sections[i]
    		for _, off := range offs {
    			typ := (*rtype)(resolveTypeOff(rodata, off))
    			r = append(r, typ.String())
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/hash/crc32/gen_const_ppc64le.go

    		fmt.Fprintf(w, "DATA ·%sConst+%d(SB)/8,$0x%08x%08x\n", polyid, j*8, c, d)
    		fmt.Fprintf(w, "DATA ·%sConst+%d(SB)/8,$0x%08x%08x\n", polyid, (j+1)*8, a, b)
    
    		j += 2
    		fmt.Fprintf(w, "\n")
    	}
    
    	fmt.Fprintf(w, "GLOBL ·%sConst(SB),RODATA,$4336\n", polyid)
    	fmt.Fprintf(w, "\n\t/* Barrett constant m - (4^32)/n */\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                            logger.debug("member: {}", memberOf);
                        }
                        String memberType = (String) memberOf.get("@odata.type");
                        if (memberType == null) {
                            logger.warn("@odata.type is null: {}", memberOf);
                            continue;
                        }
                        memberType = memberType.toLowerCase(Locale.ENGLISH);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/upgrade/node/data.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	clientset "k8s.io/client-go/kubernetes"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    )
    
    // Data is the interface to use for kubeadm upgrade node phases.
    // The "nodeData" type from "cmd/upgrade/node.go" must satisfy this interface.
    type Data interface {
    	EtcdUpgrade() bool
    	RenewCerts() bool
    	DryRun() bool
    	Cfg() *kubeadmapi.UpgradeConfiguration
    	InitCfg() *kubeadmapi.InitConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/join/data.go

    Lubomir I. Ivanov <******@****.***> 1707241405 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. pkg/controlplane/storageversionhashdata/data.go

    Alexander Zielenski <******@****.***> 1716482549 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. src/internal/coverage/rtcov/rtcov.go

    package rtcov
    
    import "unsafe"
    
    // This package contains types whose structure is shared between
    // the runtime package and the "runtime/coverage" implementation.
    
    // CovMetaBlob is a container for holding the meta-data symbol (an
    // RODATA variable) for an instrumented Go package. Here "p" points to
    // the symbol itself, "len" is the length of the sym in bytes, and
    // "hash" is an md5sum for the sym computed by the compiler. When
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/internal/coverage/cfile/emitdata_test.go

    		return
    	}
    	args := []string{"tool", "covdata", "merge", "-pkg=runtime/coverage",
    		"-o", testGoCoverDir, "-i", gocoverdir}
    	t.Logf("up-merge of covdata from %s to %s", gocoverdir, testGoCoverDir)
    	t.Logf("executing: go %+v", args)
    	cmd := exec.Command(testenv.GoToolPath(t), args...)
    	if b, err := cmd.CombinedOutput(); err != nil {
    		t.Fatalf("covdata merge failed (%v): %s", err, b)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. cmd/data-scanner_test.go

    Krishnan Parthasarathi <******@****.***> 1714735138 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 11:18:58 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. cmd/data-usage_test.go

    Harshavardhana <******@****.***> 1711552240 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top