Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 83 for Inits (0.15 sec)

  1. src/internal/trace/event/go122/event.go

    	EvCPUSamples // start of a section of CPU samples [...EvCPUSample]
    	EvCPUSample  // CPU profiling sample [timestamp, M ID, P ID, goroutine ID, stack ID]
    	EvFrequency  // timestamp units per sec [freq]
    
    	// Procs.
    	EvProcsChange // current value of GOMAXPROCS [timestamp, GOMAXPROCS, stack ID]
    	EvProcStart   // start of P [timestamp, P ID, P seq]
    	EvProcStop    // stop of P [timestamp]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr5_build_scripts.adoc

            }
        }
    }
    ----
    =====
    
    When the `java-gradle-plugin` is applied, users must configure the plugin they are developing using the `gradlePlugin{}` configuration block.
    
    Tasks are units of work executed during your build.
    They can be defined by plugins or inline:
    
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    val functionalTest by tasks.registering(Test::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

      // outputs(full sequence) is used, not the last_output, not the new_states.
      // We will discard everything except the outputs.
      // And the outputs is in the shape of [batch, time, units].
      if (attr.getValue().starts_with("lstm_")) {
        // Check if the keras lstm can be fused, if not, we just don't do anything.
        if (failed(CheckFusableKerasLstm(func, module))) return;
        func.eraseBody();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. pkg/kubelet/metrics/metrics.go

    	//
    	// The histogram bucket boundaries for pod startup latency metrics, measured in seconds. These are hand-picked
    	// so as to be roughly exponential but still round numbers in everyday units. This is to minimise the number
    	// of buckets while allowing accurate measurement of thresholds which might be used in SLOs
    	// e.g. x% of pods start up within 30 seconds, or 15 minutes, etc.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  5. go.mod

    	github.com/coreos/go-semver v0.3.1 // indirect
    	github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
    	github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
    	github.com/docker/go-units v0.5.0 // indirect
    	github.com/eapache/go-resiliency v1.6.0 // indirect
    	github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect
    	github.com/eapache/queue v1.1.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pcln.go

    	ctxt.loader.SetAttrReachable(s, true)
    	ctxt.loader.SetCarrierSym(s, state.carrier)
    	ctxt.loader.SetAttrNotInSymbolTable(s, true)
    	return s
    }
    
    // makePclntab makes a pclntab object, and assembles all the compilation units
    // we'll need to write pclntab. Returns the pclntab structure, a slice of the
    // CompilationUnits we need, and a slice of the function symbols we need to
    // generate pclntab.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/fmt.go

    	return tconv(t, 0, fmtTypeID)
    }
    
    // NameString generates a user-readable, mostly unique string
    // description of t. NameString always returns the same description
    // for identical types, even across compilation units.
    //
    // NameString qualifies identifiers by package name, so it has
    // collisions when different packages share the same names and
    // identifiers. It also does not distinguish function-scope defined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    This is particularly useful for tasks that perform CPU-intensive or long-running operations, as it allows them to be executed in parallel, improving build performance.
    
    Using `WorkerExecutor`, you can submit units of work (called actions) to be executed in separate worker processes.
    This helps isolate the work from the main Gradle process, providing better reliability and performance.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. src/debug/dwarf/entry.go

    // is not covered by any unit, SeekPC returns [ErrUnknownPC] and the
    // position of the reader is undefined.
    //
    // Because compilation units can describe multiple regions of the
    // executable, in the worst case SeekPC must search through all the
    // ranges in all the compilation units. Each call to SeekPC starts the
    // search at the compilation unit of the last call, so in general
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  10. go.mod

    	github.com/coreos/go-systemd/v22 v22.5.0
    	github.com/cpuguy83/go-md2man/v2 v2.0.3
    	github.com/cyphar/filepath-securejoin v0.2.4
    	github.com/distribution/reference v0.5.0
    	github.com/docker/go-units v0.5.0
    	github.com/emicklei/go-restful/v3 v3.11.0
    	github.com/fsnotify/fsnotify v1.7.0
    	github.com/go-logr/logr v1.4.1
    	github.com/godbus/dbus/v5 v5.1.0
    	github.com/gogo/protobuf v1.3.2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top