Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 100 for adjustments (0.27 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfoIntegrationSpec.groovy

               assert info.getNumberOfRunningDaemons() == ${numDaemons}
               assert info.getIdleTimeout() == 120000
               assert info.getStartedAt() <= System.currentTimeMillis() + 1000 //accept slight clock adjustments while the test is running
               assert info.isSingleUse() == ${singleUse}
            """
        }
    
        static String waitForExpirationTask() {
            """
            task waitForExpiration {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/sparsetree.go

    }
    
    func (s *SparseTreeNode) Entry() int32 {
    	return s.entry
    }
    
    func (s *SparseTreeNode) Exit() int32 {
    	return s.exit
    }
    
    const (
    	// When used to lookup up definitions in a sparse tree,
    	// these adjustments to a block's entry (+adjust) and
    	// exit (-adjust) numbers allow a distinction to be made
    	// between assignments (typically branch-dependent
    	// conditionals) occurring "before" the block (e.g., as inputs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    type MappingSources map[string][]struct {
    	Source string // URL of the source the mapping was collected from
    	Start  uint64 // delta applied to addresses from this source (to represent Merge adjustments)
    }
    
    // An ObjTool inspects shared libraries and executable files.
    type ObjTool interface {
    	// Open opens the named object file. If the object is a shared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    type MappingSources map[string][]struct {
    	Source string // URL of the source the mapping was collected from
    	Start  uint64 // delta applied to addresses from this source (to represent Merge adjustments)
    }
    
    // An ObjTool inspects shared libraries and executable files.
    type ObjTool interface {
    	// Open opens the named object file. If the object is a shared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. src/runtime/debug/garbage.go

    func SetTraceback(level string)
    
    // SetMemoryLimit provides the runtime with a soft memory limit.
    //
    // The runtime undertakes several processes to try to respect this
    // memory limit, including adjustments to the frequency of garbage
    // collections and returning memory to the underlying system more
    // aggressively. This limit will be respected even if GOGC=off (or,
    // if SetGCPercent(-1) is executed).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/stackcheck.go

    		addEdge(sc.callSize, sc.morestack)
    		return maxHeight, edges
    	}
    
    	// This function is nosplit, so it adjusts SP without a split
    	// check.
    	//
    	// Walk through SP adjustments in function, consuming relocs
    	// and following calls.
    	maxLocalHeight := 0
    	relocs, ri := ldr.Relocs(sym), 0
    	pcsp := obj.NewPCIter(uint32(ctxt.Arch.MinLC))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

                op->user_begin()->hasTrait<OpTrait::IsTerminator>())
              return failure();
          }
          // If the quantize op is a requantize op, it is being used in other scale
          // adjustments and should be kept. Instead, moving dequantize op before
          // the requantize op to remove the unnecessary requantize op.
          if (auto qtype = quant::QuantizedType::getQuantizedElementType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/edit.go

    Note that -require overrides any existing requirements on path.
    These flags are mainly for tools that understand the module graph.
    Users should prefer 'go get path@version' or 'go get path@none',
    which make other go.mod adjustments as needed to satisfy
    constraints imposed by other modules.
    
    The -go=version flag sets the expected Go language version.
    This flag is mainly for tools that understand Go version dependencies.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. src/go/types/generate_test.go

    	},
    	"named.go":  func(f *ast.File) { fixTokenPos(f); renameSelectors(f, "Trace->_Trace") },
    	"object.go": func(f *ast.File) { fixTokenPos(f); renameIdents(f, "NewTypeNameLazy->_NewTypeNameLazy") },
    	// TODO(gri) needs adjustments for TestObjectString - disabled for now
    	// "object_test.go": func(f *ast.File) { renameImportPath(f, `"cmd/compile/internal/types2"->"go/types"`) },
    	"objset.go": nil,
    	"operand.go": func(f *ast.File) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm_test.go

    	}
    	defer os.RemoveAll(dir)
    
    	pgms := []struct {
    		text   []byte
    		align  string
    		hasNop bool
    	}{
    		{[]byte(x0pgm), "align=0x0", false},     // No alignment or nop adjustments needed
    		{[]byte(x16pgm), "align=0x20", false},   // Increased alignment needed
    		{[]byte(x32pgm), "align=0x40", false},   // Worst case alignment needed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top