Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for isInitialized (0.17 sec)

  1. src/cmd/internal/obj/arm/asm5.go

    	var op *obj.Prog
    
    	p = cursym.Func().Text
    	if p == nil || p.Link == nil { // handle external functions and ELF section symbols
    		return
    	}
    
    	if oprange[AAND&obj.AMask] == nil {
    		ctxt.Diag("arm ops not initialized, call arm.buildop first")
    	}
    
    	c := ctxt5{ctxt: ctxt, newprog: newprog, cursym: cursym, autosize: p.To.Offset + 4}
    	pc := int32(0)
    
    	op = p
    	p = p.Link
    	var m int
    	var o *Optab
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  2. src/go/printer/testdata/parser.go

    // Advance to the next token.
    func (p *parser) next0() {
    	// Because of one-token look-ahead, print the previous token
    	// when tracing as it provides a more readable output. The
    	// very first token (!p.pos.IsValid()) is not initialized
    	// (it is token.ILLEGAL), so don't print it.
    	if p.trace && p.pos.IsValid() {
    		s := p.tok.String()
    		switch {
    		case p.tok.IsLiteral():
    			p.printTrace(s, p.lit)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    	// Certificate Timestamps which will be served to clients that request it.
    	SignedCertificateTimestamps [][]byte
    	// Leaf is the parsed form of the leaf certificate, which may be initialized
    	// using x509.ParseCertificate to reduce per-handshake processing. If nil,
    	// the leaf certificate will be parsed as needed.
    	Leaf *x509.Certificate
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/test.h"
    
    using ::tensorflow::testing::FindNodeByName;
    
    namespace tensorflow {
    namespace {
    
    static bool Initialized = [] {
      tensorflow::GetXlaDeviceFlags()->tf_xla_enable_xla_devices = true;
      return true;
    }();
    
    REGISTER_OP("UncompilableNullary").Output("o: float");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    	for i, n := range names {
    		fmt.Fprintf(&b, "__typeof__(%s) *__cgo__%d;\n", n.C, i)
    		if n.Kind == "iconst" {
    			fmt.Fprintf(&b, "enum { __cgo_enum__%d = %s };\n", i, n.C)
    		}
    	}
    
    	// We create a data block initialized with the values,
    	// so we can read them out of the object file.
    	fmt.Fprintf(&b, "long long __cgodebug_ints[] = {\n")
    	for _, n := range names {
    		if n.Kind == "iconst" {
    			fmt.Fprintf(&b, "\t%s,\n", n.C)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    }
    
    // deleteWithoutFinalizers handles deleting an object ignoring its finalizer list.
    // Used for objects that are either been finalized or have never initialized.
    func (e *Store) deleteWithoutFinalizers(ctx context.Context, name, key string, obj runtime.Object, preconditions *storage.Preconditions, options *metav1.DeleteOptions) (runtime.Object, bool, error) {
    	out := e.NewFunc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  7. src/time/time.go

    //
    // The zero value of type Time is January 1, year 1, 00:00:00.000000000 UTC.
    // As this time is unlikely to come up in practice, the [Time.IsZero] method gives
    // a simple way of detecting a time that has not been initialized explicitly.
    //
    // Each time has an associated [Location]. The methods [Time.Local], [Time.UTC], and Time.In return a
    // Time with a specific Location. Changing the Location of a Time value with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    	elfRelType string
    
    	ehdr ElfEhdr
    	phdr [NSECT]*ElfPhdr
    	shdr [NSECT]*ElfShdr
    
    	interp string
    )
    
    // ELFArch includes target-specific hooks for ELF targets.
    // This is initialized by the target-specific Init function
    // called by the linker's main function in cmd/link/main.go.
    type ELFArch struct {
    	// TODO: Document these fields.
    
    	Androiddynld   string
    	Linuxdynld     string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    // test coverage on trybots. See https://go.dev/issue/34297.
    func defaultAllCodeGen() bool {
    	return os.Getenv("GO_BUILDER_NAME") == "linux-amd64"
    }
    
    var (
    	// Package-scoped variables that are initialized at the start of Test.
    	goTool       string
    	goos         string // Target GOOS
    	goarch       string // Target GOARCH
    	cgoEnabled   bool
    	goExperiment string
    	goDebug      string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ppc64/asm.go

    		}
    	default:
    		return -1
    	}
    
    	return packInstPair(target, o1, o2)
    }
    
    // Determine if the code was compiled so that the TOC register R2 is initialized and maintained.
    func r2Valid(ctxt *ld.Link) bool {
    	return isLinkingPIC(ctxt)
    }
    
    // Determine if this is linking a position-independent binary.
    func isLinkingPIC(ctxt *ld.Link) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top