Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for isInitialized (0.24 sec)

  1. 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)
  2. 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)
  3. src/runtime/traceback.go

    // interrupted by a signal (e.g., profiler, segv, etc) then frame.pc is for the
    // trapped instruction, so this returns frame.pc. See issue #34123. Finally,
    // frame.pc can be at function entry when the frame is initialized without
    // actually running code, like in runtime.mstart, in which case this returns
    // frame.pc because that's the best we can do.
    func (u *unwinder) symPC() uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    The property factory methods such as `newInputFile()` are intended to be called from the constructor of a type that extends `DefaultTask`.
    These methods are now final to avoid subclasses overriding these methods and using state that is not initialized.
    
    ==== Inputs and outputs are not automatically registered
    The Property instances that are returned by these methods are no longer automatically registered as inputs or outputs of the task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    func gcenable() {
    	// Kick off sweeping and scavenging.
    	c := make(chan int, 2)
    	go bgsweep(c)
    	go bgscavenge(c)
    	<-c
    	<-c
    	memstats.enablegc = true // now that runtime is initialized, GC is okay
    }
    
    // Garbage collector phase.
    // Indicates to write barrier and synchronization task to perform.
    var gcphase uint32
    
    // The compiler knows about this variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. cmd/object-api-multipart_test.go

    	_, err = obj.NewMultipartUpload(context.Background(), bucket, object, opts)
    	if err == nil {
    		t.Fatalf("%s: Expected to fail since the NewMultipartUpload is initialized on a non-existent bucket.", instanceType)
    	}
    	if errMsg != err.Error() {
    		t.Errorf("%s, Expected to fail with Error \"%s\", but instead found \"%s\".", instanceType, errMsg, err.Error())
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    		fmt.Fprintf(fgcc, "\n%s\n", s)
    		fmt.Fprintf(fgcc, "{\n")
    		fmt.Fprintf(fgcc, "\tsize_t _cgo_ctxt = _cgo_wait_runtime_init_done();\n")
    		// The results part of the argument structure must be
    		// initialized to 0 so the write barriers generated by
    		// the assignments to these fields in Go are safe.
    		//
    		// We use a local static variable to get the zeroed
    		// value of the argument type. This avoids including
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. cmd/erasure-object.go

    		g.Go(func() error {
    			if disks[index] == nil {
    				return errDiskNotFound
    			}
    
    			// Pick one FileInfo for a disk at index.
    			fi := metadata[index]
    			// Assign index when index is initialized
    			if fi.Erasure.Index == 0 {
    				fi.Erasure.Index = index + 1
    			}
    
    			if !fi.IsValid() {
    				return errFileCorrupt
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      It can also, optionally and additionally, yield the iteration variables, which
      must be unchanged.
    
      The body region always has to yield the (possibly updated) iteration variables.
    
      The iteration variables are initialized to the Op input, and the results of the
      tf.WhileRegion op are the final values of the iteration variables.
    
      This implies that the operand and result types for tf.WhileRegion should be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    		if a != load && a.Block.ID == target.Block.ID {
    			args = append(args, a)
    		}
    	}
    
    	// memPreds contains memory states known to be predecessors of load's
    	// memory state. It is lazily initialized.
    	var memPreds map[*Value]bool
    	for i := 0; len(args) > 0; i++ {
    		const limit = 100
    		if i >= limit {
    			// Give up if we have done a lot of iterations.
    			return false
    		}
    		v := args[len(args)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top