Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 116 for wastage (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/test/framework/suite.go

    	// Run all the require functions first, then the setup functions.
    	setupFns := append(append([]resource.SetupFn{}, s.requireFns...), s.setupFns...)
    
    	// don't waste time setting up if already skipped
    	if s.isSkipped(ctx) {
    		return nil
    	}
    
    	start := time.Now()
    	for _, fn := range setupFns {
    		err := s.runSetupFn(fn, ctx)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. cluster/gce/gci/audit_policy_test.go

    		auditConfig := evaluator.EvaluatePolicyRule(attrs)
    		assert.Equal(t, expected, auditConfig.Level)
    		if auditConfig.Level != audit.LevelNone {
    			assert.ElementsMatch(t, auditConfig.OmitStages, []audit.Stage{audit.StageRequestReceived})
    		}
    	})
    }
    
    func newUserInfo(name string, groups ...string) user.Info {
    	return &user.DefaultInfo{
    		Name:   name,
    		Groups: groups,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 9.8K bytes
    - Viewed (0)
  7. CONTRIBUTING.md

    ### Typical Pull Request Workflow -
    
    **1. New PR**
    
    - As a contributor, you submit a New PR on GitHub.
    - We inspect every incoming PR and add certain labels to the PR such as `size:`,
      `comp:` etc.  At this stage we check if the PR is valid and meets certain
      quality requirements. For example, we check if the CLA is signed, PR has
      sufficient description, if applicable unit tests are added, if it is a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

        bool is_packed = partitioned_input.getIsPacked();
        const auto func = partitioned_input->getParentOfType<mlir::func::FuncOp>();
    
        for (Value input : partitioned_input.getInputs()) {
          // At this stage, the op may've been rewritten to be "unpacked" but
          // taking multiple copies of a resource on a COMPOSITE device
          is_packed =
              is_packed || IsCompositeDevice(GetDeviceOfResource(func, input));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransaction.java

        }
    
        private void ensureEmptyDirectoriesBeforeExecution() {
            try {
                tempDir.mkdirs();
    
                // Create or clean stash and stage directories
                Set<File> ensureEmptyDirectories = new HashSet<>();
                deleter.ensureEmptyDirectory(stashDirectory);
                ensureEmptyDirectories.add(stashDirectory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. docs/pt/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
    - 37.4K bytes
    - Viewed (0)
Back to top