Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 165 for processDest (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc

    For example you can configure your build to generate code coverage using the `application` plugin.
    
    .Using application plugin to generate code coverage data
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller_base.go

    			// Migration annotation exists but the driver isn't migrated currently
    			delete(ann, storagehelpers.AnnMigratedTo)
    			return true
    		}
    	}
    	return false
    }
    
    // volumeWorker processes items from volumeQueue. It must run only once,
    // syncVolume is not assured to be reentrant.
    func (ctrl *PersistentVolumeController) volumeWorker(ctx context.Context) {
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top