Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,104 for starts (0.11 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Running.kt

    /**
     * Runs the given [writeOperation] synchronously.
     */
    fun <T : WriteContext, U> T.runWriteOperation(writeOperation: suspend T.() -> U): U =
        runToCompletion {
            writeOperation()
        }
    
    
    /**
     * [Starts][startCoroutine] the suspending [block], asserts it runs
     * to completion and returns its result.
     */
    private
    fun <R> runToCompletion(block: suspend () -> R): R {
        var completion: Result<R>? = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 20:48:51 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserInputReader.java

    /**
     * Receives interactive responses from the user.
     */
    @ServiceScope(Scope.Global.class)
    public interface UserInputReader {
        /**
         * Called when the current process starts receiving user input from the client.
         */
        void startInput();
    
        void putInput(UserInput input);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. src/os/path_windows.go

    	}
    
    	var isUNC, isDevice bool
    	if len(path) >= 2 && IsPathSeparator(path[0]) && IsPathSeparator(path[1]) {
    		if len(path) >= 4 && path[2] == '.' && IsPathSeparator(path[3]) {
    			// Starts with //./
    			isDevice = true
    		} else {
    			// Starts with //
    			isUNC = true
    		}
    	}
    	var prefix []uint16
    	if isUNC {
    		// UNC path, prepend the \\?\UNC\ prefix.
    		prefix = []uint16{'\\', '\\', '?', '\\', 'U', 'N', 'C', '\\'}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

    #include "tensorflow/compiler/mlir/quantization/stablehlo/cc/report.h"
    
    #include <optional>
    #include <string>
    #include <utility>
    
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. buildscripts/upgrade-tests/compose.yml

    x-minio-common: &minio-common
      image: minio/minio:${MINIO_VERSION}
      command: server http://minio{1...4}/data{1...3}
      env_file:
        - ./minio.env
      expose:
        - "9000"
        - "9001"
    
    # starts 4 docker containers running minio server instances.
    # using nginx reverse proxy, load balancing, you can access
    # it through port 9000.
    services:
      minio1:
        <<: *minio-common
        hostname: minio1
        volumes:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g1 := t.Generation(1)
    
    	// A goroutine gets created on a running P, then starts running.
    	b0 := g1.Batch(trace.ThreadID(0), 0)
    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b0.Event("GoCreate", trace.GoID(5), testgen.NoStack, testgen.NoStack)
    	b0.Event("GoStart", trace.GoID(5), testgen.Seq(1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  7. src/internal/trace/testdata/generators/go122-syscall-steal-proc-self.go

    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	t.DisableTimestamps()
    
    	g := t.Generation(1)
    
    	// A goroutine execute a syscall and steals its own P, then starts running
    	// on that P.
    	b0 := g.Batch(trace.ThreadID(0), 0)
    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/mutation/unstructured/typeresolver.go

    	"strings"
    
    	"k8s.io/apiserver/pkg/cel/mutation/common"
    )
    
    const object = common.RootTypeReferenceName
    
    type TypeResolver struct {
    }
    
    // Resolve resolves the TypeRef for the given type name
    // that starts with "Object".
    // This is the unstructured version, which means the
    // returned TypeRef does not refer to the schema.
    func (r *TypeResolver) Resolve(name string) (common.TypeRef, bool) {
    	if !strings.HasPrefix(name, object) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/BuildStarted.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.protocol;
    
    import org.gradle.launcher.daemon.diagnostics.DaemonDiagnostics;
    
    /**
     * Returned when the daemon starts a build command, signifying that it has begun processing it.
     */
    public class BuildStarted extends Message {
    
        private final DaemonDiagnostics diagnostics;
    
        public BuildStarted(DaemonDiagnostics diagnostics) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/fix/buildtag.go

    func buildtag(f *ast.File) bool {
    	if version.Compare(*goVersion, buildtagGoVersionCutoff) < 0 {
    		return false
    	}
    
    	// File is already gofmt-ed, so we know that if there are +build lines,
    	// they are in a comment group that starts with a //go:build line followed
    	// by a blank line. While we cannot delete comments from an AST and
    	// expect consistent output in general, this specific case - deleting only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top