Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 137 for stage1 (0.14 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeClassSourceGenerator.java

                .getByType(PropertyUpgradeRequestExtra.class)
                .orElseThrow(() -> new RuntimeException(PropertyUpgradeRequestExtra.class.getSimpleName() + " should be present at this stage!"));
    
            try {
                CallableInfo callable = request.getInterceptedCallable();
                ImplementationInfo implementation = request.getImplementationInfo();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:11:23 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/convert.go

    //
    // If no such function is necessary, it returns (Txxx, Txxx).
    func rtconvfn(src, dst *types.Type) (param, result types.Kind) {
    	if ssagen.Arch.SoftFloat {
    		return types.Txxx, types.Txxx
    	}
    
    	switch ssagen.Arch.LinkArch.Family {
    	case sys.ARM, sys.MIPS:
    		if src.IsFloat() {
    			switch dst.Kind() {
    			case types.TINT64, types.TUINT64:
    				return types.TFLOAT64, dst.Kind()
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_block_test.go

    	}
    	t.Log("created attachment ", attachID)
    
    	stagingPath, err := csiMapper.SetUpDevice()
    	if err != nil {
    		t.Fatalf("mapper failed to SetupDevice: %v", err)
    	}
    
    	// Check if NodeStageVolume staged to the right path
    	svols := csiMapper.csiClient.(*fakeCsiDriverClient).nodeClient.GetNodeStagedVolumes()
    	svol, ok := svols[csiMapper.volumeID]
    	if !ok {
    		t.Error("csi server may not have received NodeStageVolume call")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. docs/em/docs/deployment/docker.md

    # (1)
    FROM python:3.9 as requirements-stage
    
    # (2)
    WORKDIR /tmp
    
    # (3)
    RUN pip install poetry
    
    # (4)
    COPY ./pyproject.toml ./poetry.lock* /tmp/
    
    # (5)
    RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
    
    # (6)
    FROM python:3.9
    
    # (7)
    WORKDIR /code
    
    # (8)
    COPY --from=requirements-stage /tmp/requirements.txt /code/requirements.txt
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    You execute an Ant task by calling a method on the `AntBuilder` instance.
    You use the task name as the method name:
    
    .build.gradle
    [source,groovy]
    ----
    ant.mkdir(dir: "$STAGE")
    ant.copy(todir: "$STAGE/bin") {
        ant.fileset(dir: 'bin', includes: "**")
    }
    ant.gzip(destfile:"build/file-${VERSION}.tar.gz", src: "build/file-${VERSION}.tar")
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/SystemApplicationClassLoaderWorker.java

    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.PrintStream;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import java.util.concurrent.Callable;
    
    /**
     * <p>Stage 2 of the start-up for a worker process with the application classes loaded in the system ClassLoader. Takes
     * care of deserializing and invoking the worker action.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            sitePath = "www.google.com";
            docMap.put(fieldName, urlLink);
            assertEquals(sitePath, viewHelper.getSitePath(docMap));
    
            urlLink = "smb://123.45.678.91/share1";
            sitePath = "123.45.678.91/share1";
            docMap.put(fieldName, urlLink);
            assertEquals(sitePath, viewHelper.getSitePath(docMap));
    
            urlLink = "file:/home/user/";
            sitePath = "/home/user/";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            run "compileGroovy"
    
            then:
            outputs.recompiledClasses("B", "D")
    
            where:
            // We must trigger failure in a "Semantic Analysis" stage and not in parse stage, otherwise compiler won't output anything on a disk.
            // So for example "class A { garbage }" will cause compiler to fail very early and nothing will be written on a disk.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/loader.cc

        {
            "/tensorflow/cc/saved_model/load_latency_by_stage",  // metric name
            "Distribution of wall time spent (in microseconds) in each stage "
            "(restore graph from disk, run init graph op, etc) when loading the "
            "model",
            "model_path",
            "stage",
        },
        // Scale of 10, power of 1.8 with bucket count 37 (~258 minutes).
        monitoring::Buckets::Exponential(10, 1.8, 37));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. docs/zh/docs/deployment/docker.md

    # (1)
    FROM python:3.9 as requirements-stage
    
    # (2)
    WORKDIR /tmp
    
    # (3)
    RUN pip install poetry
    
    # (4)
    COPY ./pyproject.toml ./poetry.lock* /tmp/
    
    # (5)
    RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
    
    # (6)
    FROM python:3.9
    
    # (7)
    WORKDIR /code
    
    # (8)
    COPY --from=requirements-stage /tmp/requirements.txt /code/requirements.txt
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top