Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for line1 (0.16 sec)

  1. src/runtime/mgcpacer.go

    	// subtract everything from memoryLimit that both contributes to the memory limit (so,
    	// ignore scavenged memory) and doesn't contain heap objects. This isn't quite what
    	// lines up with reality, but it's a good starting point.
    	//
    	// In practice this computation looks like the following:
    	//
    	//    goal := memoryLimit - ((mappedReady - heapFree - heapAlloc) + max(mappedReady - memoryLimit, 0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    	MOVQ	g(CX), BX
    	MOVQ	g_m(BX), BX
    
    	// Set m->sched.sp = SP, so that if a panic happens
    	// during the function we are about to execute, it will
    	// have a valid SP to run on the g0 stack.
    	// The next few lines (after the havem label)
    	// will save this SP onto the stack and then write
    	// the same SP back to m->sched.sp. That seems redundant,
    	// but if an unrecovered panic happens, unwindm will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1beta1/generated.pb.go

    var _ = fmt.Errorf
    var _ = math.Inf
    
    // This is a compile-time assertion to ensure that this generated file
    // is compatible with the proto package it is being compiled against.
    // A compilation error at this line likely means your copy of the
    // proto package needs to be updated.
    const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1beta1/generated.pb.go

    var _ = fmt.Errorf
    var _ = math.Inf
    
    // This is a compile-time assertion to ensure that this generated file
    // is compatible with the proto package it is being compiled against.
    // A compilation error at this line likely means your copy of the
    // proto package needs to be updated.
    const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
    
    func (m *Endpoint) Reset()      { *m = Endpoint{} }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    // loop iteration (ops with `TF_UniqueResourceAllocation` trait, in this case:
    // `tf.StackV2`), make sure that we don't create data dependencies between
    // different iterations for such resources. This is in line with the behavior
    // for the same loop unrolled. In this particular case, no data chain and token
    // should be created.
    
    func.func @unique_resource_chain(%arg0: tensor<i32>, %arg1: tensor<f32>) {
      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        // Some better conventions for the test poms needs to be created and each of these tests
        // that represent a verification of a specification item needs to be a couple lines at most.
        // The expressions help a lot, but we need a clean to pick up a directory of POMs, automatically load
        // them into a resolver, create the expression to extract the data to validate the Model, and the URI
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    		panic("need to call Preload first")
    	}
    	node := (*goobj.FuncInfo)(nil).ReadInlTree(fi.data, fi.lengths.InlTreeOff, uint32(k))
    	return InlTreeNode{
    		Parent:   node.Parent,
    		File:     node.File,
    		Line:     node.Line,
    		Func:     fi.l.resolve(fi.r, node.Func),
    		ParentPC: node.ParentPC,
    	}
    }
    
    func (l *Loader) FuncInfo(i Sym) FuncInfo {
    	r, auxs := l.auxs(i)
    	for j := range auxs {
    		a := &auxs[j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    //
    // Note that it is possible for a loaded package NOT to be in "all" even when we
    // are loading the "all" pattern. For example, packages that are transitive
    // dependencies of other roots named on the command line must be loaded, but are
    // not in "all". (The mod_notall test illustrates this behavior.)
    // Similarly, if the LoadTests flag is set but the "all" pattern does not close
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top