Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for isInitialized (0.29 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    	// NOTE: block is only used if value is BlockStart.ID or BlockEnd.ID.
    	// Otherwise, it is ignored.
    	GetPC func(block, value ID) int64
    }
    
    type BlockDebug struct {
    	// State at the start and end of the block. These are initialized,
    	// and updated from new information that flows on back edges.
    	startState, endState abt.T
    	// Use these to avoid excess work in the merge. If none of the
    	// predecessors has changed since the last check, the old answer is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    			} else {
    				sysNoHugePage(unsafe.Pointer(l2), unsafe.Sizeof(*l2))
    			}
    			atomic.StorepNoWB(unsafe.Pointer(&h.arenas[ri.l1()]), unsafe.Pointer(l2))
    		}
    
    		if l2[ri.l2()] != nil {
    			throw("arena already initialized")
    		}
    		var r *heapArena
    		r = (*heapArena)(h.heapArenaAlloc.alloc(unsafe.Sizeof(*r), goarch.PtrSize, &memstats.gcMiscSys))
    		if r == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    	}
    
    	z.decommissionCancelers = make([]context.CancelFunc, len(z.serverPools))
    
    	// Initialize the pool meta, but set it to not save.
    	// When z.Init below has loaded the poolmeta will be initialized,
    	// and allowed to save.
    	z.poolMeta = newPoolMeta(z, poolMeta{})
    	z.poolMeta.dontSave = true
    
    	bootstrapTrace("newSharedLock", func() {
    		globalLeaderLock = newSharedLock(GlobalContext, z, "leader.lock")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    // For postfix case, the last argument is the operation call invoked on a synthetic local variable `<unary>`. This local
                    // variable is initialized by calling the `get` function.
                    val operationCall = lastArg as? FirFunctionCall ?: return null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top