Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for procMs (0.15 sec)

  1. src/cmd/go/alldocs.go

    //
    // Usage:
    //
    //	go generate [-run regexp] [-n] [-v] [-x] [build flags] [file.go... | packages]
    //
    // Generate runs commands described by directives within existing
    // files. Those commands can run any process but the intent is to
    // create or update Go source files.
    //
    // Go generate is never run automatically by go build, go test,
    // and so on. It must be run explicitly.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        Option<"globally_unique_func_names_", "globally-unique-func-names", "bool",
               /*default=*/"true",
               "If true, the pass adds extra identifiers to make function names "
               "globally unique within a process, not just within a module.">
      ];
    }
    
    def ConvertLaunchFuncToTFCallPass : Pass<"tf-device-convert-launch-func-to-tf-call", "ModuleOp"> {
      let summary = "Rewrites tf_device::LaunchFuncOp to TF::PartitionedCallOp";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    			if err := p.queueMRFHeal(); err != nil && !osIsNotExist(err) {
    				replLogIf(p.ctx, err)
    			}
    			pTimer.Reset(mrfQueueInterval)
    		case <-p.ctx.Done():
    			return
    		}
    	}
    }
    
    // process sends error logs to the heal channel for an attempt to heal replication.
    func (p *ReplicationPool) queueMRFHeal() error {
    	p.mrfMU.Lock()
    	defer p.mrfMU.Unlock()
    
    	if !p.initialized() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    		EventName:  event.ObjectRestorePost,
    		BucketName: bucket,
    		Object:     objInfo,
    		ReqParams:  extractReqParams(r),
    		UserAgent:  r.UserAgent(),
    		Host:       handlers.GetSourceIP(r),
    	})
    	// now process the restore in background
    	go func() {
    		rctx := GlobalContext
    		if !rreq.SelectParameters.IsEmpty() {
    			actualSize, err := objInfo.GetActualSize()
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    func (db *DB) connectionCleanerRunLocked(d time.Duration) (time.Duration, []*driverConn) {
    	var idleClosing int64
    	var closing []*driverConn
    	if db.maxIdleTime > 0 {
    		// As freeConn is ordered by returnedAt process
    		// in reverse order to minimise the work needed.
    		idleSince := nowFunc().Add(-db.maxIdleTime)
    		last := len(db.freeConn) - 1
    		for i := last; i >= 0; i-- {
    			c := db.freeConn[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        return failure();
    
      // Compute binary operands hoist parameters.
      auto hoist_params = GetHoistParams(op, axis, exceptions);
      if (!hoist_params.has_value()) return failure();
    
      // Process `exceptions`: For each value there, synthesize a binary op of the
      // above kind, so that the concat hoisting optimization can still apply.
      if (!exceptions.empty()) {
        int identity_val;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        model_description = attr.getValue().str();
      } else {
        model_description = "MLIR Converted.";
      }
    
      // Build the model and finish the model building process.
      auto description = builder_.CreateString(model_description.data());
      VectorBufferOffset<int32_t> metadata_buffer = 0;  // Deprecated
      auto metadata = CreateMetadataVector();
      if (!metadata) return std::nullopt;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    			} else {
    				to = filepath.Join("/_", toPath)
    			}
    			flags = append(slices.Clip(flags), prefixMapFlag+"="+from+"="+to)
    		}
    	}
    
    	// Tell gcc to not insert truly random numbers into the build process
    	// this ensures LTO won't create random numbers for symbols.
    	if b.gccSupportsFlag(compiler, "-frandom-seed=1") {
    		flags = append(flags, "-frandom-seed="+buildid.HashToString(a.actionID))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    // "forceType" (if non-zero) contains a new sym type to apply to each
    // sym during the assignment, and "aligner" is a hook to call to
    // handle alignment during the assignment process.
    func (state *dodataState) assignDsymsToSection(sect *sym.Section, syms []loader.Sym, forceType sym.SymKind, aligner func(state *dodataState, datsize int64, s loader.Sym) int64) {
    	ldr := state.ctxt.loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    		select {
    		case hpaName := <-processed:
    			processedHPA[hpaName] = true
    		case <-timeoutTime:
    			timeout = true
    		}
    	}
    
    	assert.Equal(t, hpaCount, len(processedHPA), "Expected to process all HPAs")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top