Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for fanout (0.12 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    				ldr.SetAttrReachable(s, false)
    				ldr.FreeSym(s)
    			}
    		}
    	}
    	dwarfp = newDwarfp
    
    	// Re-compute the locations of the compressed DWARF symbols
    	// and sections, since the layout of these within the file is
    	// based on Section.Vaddr and Symbol.Value.
    	pos := Segdwarf.Vaddr
    	var prevSect *sym.Section
    	for _, si := range dwarfp {
    		for _, s := range si.syms {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    parameters.initial = 10
                }
    
                task broken(type: Consumer) {
                    counter = provider
                    outputFile = layout.buildDirectory.file("out.txt")
                }
            """
    
            expect:
            fails("broken")
    
            // The failure is currently very specific to the annotation type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

      //     then total_size is the cumulative number
      //     of dimensions of all shapes in the list.
      // (5) Otherwise, total_size is undefined.
      int64_t total_size;
    } TF_AttrMetadata;
    
    // Returns metadata about the value of the attribute `attr_name` of `oper`.
    TF_CAPI_EXPORT extern TF_AttrMetadata TF_OperationGetAttrMetadata(
        TF_Operation* oper, const char* attr_name, TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/type.go

    	TCHAN
    	TMAP
    	TINTER
    	TFORW
    	TANY
    	TSTRING
    	TUNSAFEPTR
    
    	// pseudo-types for literals
    	TIDEAL // untyped numeric constants
    	TNIL
    	TBLANK
    
    	// pseudo-types used temporarily only during frame layout (CalcSize())
    	TFUNCARGS
    	TCHANARGS
    
    	// SSA backend types
    	TSSA     // internal types used by SSA backend (flags, memory, etc.)
    	TTUPLE   // a pair of types, used by SSA backend
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            file('fis-path.txt').text = 'fis-path'
            file('fis-file.txt').text = 'fis-file'
            file('fis-abs.txt').text = 'fis-abs'
            buildFile '''
                providers.fileContents(layout.projectDirectory.file("provider.txt")).with { provider ->
                    println("provider = ${provider.asText.get()}")
                }
    
                new FileInputStream("fis-path.txt").withCloseable { fis ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    	// unscavenged memory available for allocation (since using scavenged memory
    	// incurs an additional cost), to account for heap fragmentation and
    	// the ever-changing layout of the heap.
    	retainExtraPercent = 10
    
    	// reduceExtraPercent represents the amount of memory under the limit
    	// that the scavenger should target. For example, 5 means we target 95%
    	// of the limit.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/testing/testing.go

    // mode, the fuzz test acts much like a regular test, with subtests started
    // with F.Fuzz instead of T.Run.
    //
    // See https://go.dev/doc/fuzz for documentation about fuzzing.
    //
    // # Skipping
    //
    // Tests or benchmarks may be skipped at run time with a call to
    // the Skip method of *T or *B:
    //
    //	func TestTimeConsuming(t *testing.T) {
    //	    if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/go/printer/nodes.go

    			// x fits on a single line
    			if isPair {
    				size = p.nodeSize(pair.Key, infinity) // size <= infinity
    			}
    		} else {
    			// size too large or we don't have good layout information
    			size = 0
    		}
    
    		// If the previous line and the current line had single-
    		// line-expressions and the key sizes are small or the
    		// ratio between the current key and the geometric mean
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    	// So we decided to write the FP link *below* the stack pointer
    	// (with R29 = RSP - 8 in Go functions).
    	// This is technically ABI-compatible but not standard.
    	// And it happens to end up mimicking the x86 layout.
    	// Other architectures may make different decisions.
    	if frame.varp > frame.sp && framepointer_enabled {
    		frame.varp -= goarch.PtrSize
    	}
    
    	frame.argp = frame.fp + sys.MinFrameSize
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    	"cmd/internal/sys"
    	"cmd/link/internal/loadelf"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/loadmacho"
    	"cmd/link/internal/loadpe"
    	"cmd/link/internal/loadxcoff"
    	"cmd/link/internal/sym"
    )
    
    // Data layout and relocation.
    
    // Derived from Inferno utils/6l/l.h
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/6l/l.h
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top