Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 491 for processDest (0.23 sec)

  1. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/FixedSharedModeCrossProcessCacheAccessIntegrationTest.groovy

        @Rule BlockingHttpServer server = new BlockingHttpServer()
    
        @Issue("https://github.com/gradle/gradle/issues/2737")
        def "parallel initialization attempt of a shared cache does not timeout one of the processes"() {
            given:
            server.start()
            executer.requireOwnGradleUserHomeDir().withDaemonBaseDir(file("daemon")).requireDaemon()
            buildFile << """
                import org.gradle.workers.WorkParameters
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/ProcessMetaDataProvider.java

     */
    public interface ProcessMetaDataProvider {
        /**
         * Returns a unique identifier for this process. Should be unique across all processes on the local machine.
         */
        String getProcessIdentifier();
    
        /**
         * Returns a display name for this process. Should allow a human to figure out which process the display name refers to.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/os/exec/lp_wasm.go

    // If file contains a slash, it is tried directly and the PATH is not consulted.
    // The result may be an absolute path or a path relative to the current directory.
    func LookPath(file string) (string, error) {
    	// Wasm can not execute processes, so act as if there are no executables at all.
    	return "", &Error{file, ErrNotFound}
    }
    
    // lookExtensions is a no-op on non-Windows platforms, since
    // they do not restrict executables to specific extensions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 1012 bytes
    - Viewed (0)
  4. releasenotes/notes/enable-enhanced-scope.yaml

    upgradeNotes:
    - title: Default value of the feature flag `ENHANCED_RESOURCE_SCOPING` to true
      content: |
        `ENHANCED_RESOURCE_SCOPING` is enabled by default. This means that the pilot will processes only the Istio CustomResource configurations that are in 
        scope of what is specified from meshConfig.discoverySelectors. Root-ca certificate distribution is also affected.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:43:09 UTC 2024
    - 653 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/upload/Doc.txt

    Otherwise try to upload the one in the local directory,
    If the upload succeeds, move the file to the uploaded directory.
    
    
    There are various error conditions.
    1. Several processes could look at localdir and see work to do.
    1A. They could see different sets of expired count files for some day.
        This could happen if another process is removing count files. In this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/process/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Classes for executing system and Java processes.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 705 bytes
    - Viewed (0)
  7. platforms/core-execution/workers/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Infrastructure for starting and managing worker processes"
    
    dependencies {
        api(project(":base-services"))
        api(project(":build-operations"))
        api(project(":concurrent"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":hashing"))
        api(project(":stdlib-java-extensions"))
        api(project(":logging"))
        api(project(":logging-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ProcessFixture.groovy

        String[] getChildProcesses() {
            if (pid == null) {
                throw new RuntimeException("Unable to get child processes because provided pid is null!")
            }
            if (!(OperatingSystem.current().unix)) {
                throw new RuntimeException("This implementation does not know how to get child processes on os: " + OperatingSystem.current())
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller.go

    		defer wg.Done()
    		d.runWorker(ctx)
    	}()
    
    	// this function polls changes in the encryption config file by placing a dummy key in the queue.
    	// the 'runWorker' function then picks up this dummy key and processes the changes.
    	// the goroutine terminates when 'ctx' is canceled.
    	_ = wait.PollUntilContextCancel(
    		ctx,
    		EncryptionConfigFileChangePollDuration,
    		true,
    		func(ctx context.Context) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. pkg/kubelet/qos/policy.go

    	KubeProxyOOMScoreAdj  int = -999
    	guaranteedOOMScoreAdj int = -997
    	besteffortOOMScoreAdj int = 1000
    )
    
    // GetContainerOOMScoreAdjust returns the amount by which the OOM score of all processes in the
    // container should be adjusted.
    // The OOM score of a process is the percentage of memory it consumes
    // multiplied by 10 (barring exceptional cases) + a configurable quantity which is between -1000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 14:49:26 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top