Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 169 for processDest (0.28 sec)

  1. src/syscall/types_linux.go

    type Timespec C.struct_timespec
    
    type Timeval C.struct_timeval
    
    type Timex C.struct_timex
    
    type Time_t C.time_t
    
    type Tms C.struct_tms
    
    type Utimbuf C.struct_utimbuf
    
    // Processes
    
    type Rusage C.struct_rusage
    
    type Rlimit C.struct_rlimit
    
    type _Gid_t C.gid_t
    
    // Files
    
    type Stat_t C.struct_stat
    
    type statxTimestamp C.struct_statx_timestamp
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  2. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

            });
            File tempDirectory = temporaryFileProvider.createTemporaryDirectory("gradle", "projectDir");
            // TODO deleteOnExit won't clean up non-empty directories (and it leaks memory for long-running processes).
            tempDirectory.deleteOnExit();
            return tempDirectory;
        }
    
        private static class TestRootBuild extends AbstractBuildState implements RootBuildState {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go

    	{6, "ENXIO", "no such device or address"},
    	{7, "E2BIG", "argument list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file descriptor"},
    	{10, "ECHILD", "no child processes"},
    	{11, "EAGAIN", "resource temporarily unavailable"},
    	{12, "ENOMEM", "cannot allocate memory"},
    	{13, "EACCES", "permission denied"},
    	{14, "EFAULT", "bad address"},
    	{15, "ENOTBLK", "block device required"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    Notice that the task takes at least 9 seconds to run because it hashes each file one at a time (i.e., three files at ~3 seconds apiece).
    
    [[converting_to_worker_api]]
    === Step 2. Convert to the Worker API
    
    Although this task processes each file in sequence, the processing of each file is independent of any other file.
    This work can be done in parallel and take advantage of multiple processors.
    This is where the Worker API can help.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

            plugin.setArtifactId( "maven-surefire-plugin" );
            plugin.setVersion( "2.4.2" );
    
            // The project has already been fully interpolated so getting the raw mojoDescriptor is not going to have the processes configuration.
            MojoDescriptor mojoDescriptor = pluginManager.getMojoDescriptor( plugin, goal, session.getLocalRepository(), session.getCurrentProject().getPluginArtifactRepositories() );
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    +
    _Default is `false`._
    
    `org.gradle.priority=(low,normal)`::
    Specifies the <<command_line_interface.adoc#sec:command_line_performance,scheduling priority>> for the Gradle daemon and all processes launched by it.
    +
    _Default is `normal`._
    
    `org.gradle.projectcachedir=(directory)`::
    Specify the project-specific cache directory. Defaults to `.gradle` in the root project directory."
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/envcmd/env.go

    		if e.Name == name {
    			return e.Value
    		}
    	}
    	if cfg.CanGetenv(name) {
    		return cfg.Getenv(name)
    	}
    	return ""
    }
    
    // ExtraEnvVars returns environment variables that should not leak into child processes.
    func ExtraEnvVars() []cfg.EnvVar {
    	gomod := ""
    	modload.Init()
    	if modload.HasModRoot() {
    		gomod = modload.ModFilePath()
    	} else if modload.Enabled() {
    		gomod = os.DevNull
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. pkg/controller/endpointslice/endpointslice_controller.go

    	c := &Controller{
    		client: client,
    		// This is similar to the DefaultControllerRateLimiter, just with a
    		// significantly higher default backoff (1s vs 5ms). This controller
    		// processes events that can require significant EndpointSlice changes,
    		// such as an update to a Service or Deployment. A more significant
    		// rate limit back off here helps ensure that the Controller does not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    const (
    	mcsDomainSuffix = "." + constants.DefaultClusterSetLocalDomain
    )
    
    type importedService struct {
    	namespacedName types.NamespacedName
    	clusterSetVIP  string
    }
    
    // serviceImportCache reads and processes Kubernetes Multi-Cluster Services (MCS) ServiceImport
    // resources.
    //
    // An MCS controller is responsible for reading ServiceExport resources in one cluster and generating
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

            // If this happens, we split the generated method into a chain of multiple.
            // The first split is always $deserializeLambda$. It processes as many lambdas as possible,
            // and if there are too many, it calls another split method $deserializeLambda0$ as its last operation.
            // $deserializeLambda0$ may call $deserializeLambda1$ if needed, and so on.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
Back to top