Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 3,025 for procMs (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcess.java

    import org.gradle.internal.remote.ConnectionAcceptor;
    import org.gradle.internal.remote.ObjectConnection;
    import org.gradle.process.ExecResult;
    import org.gradle.process.internal.ExecException;
    import org.gradle.process.internal.ExecHandle;
    import org.gradle.process.internal.ExecHandleListener;
    import org.gradle.process.internal.health.memory.JvmMemoryStatus;
    
    import javax.annotation.Nullable;
    import java.util.Date;
    import java.util.Optional;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ExclusiveCacheAccessCoordinator.java

         *
         * <p>This method is re-entrant, so that an action can call back into this method.</p>
         */
        <T> T withFileLock(Supplier<? extends T> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/process/internal/ErrorInWorkerSocketIntegrationTest.groovy

    }
    """
    
            file('buildSrc/src/main/java/TestWorkerProcessImpl.java') << '''
    import org.gradle.process.internal.worker.RequestHandler;
    
    public class TestWorkerProcessImpl implements RequestHandler<Object, Object> {
        public Object run(Object param) { return null; }
    }
    '''
            buildFile << '''
    import org.gradle.process.internal.worker.WorkerProcessFactory
    
    task runBrokenWorker {
        def rootDir = project.rootDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CommandLineJavaCompiler.java

    import org.gradle.api.tasks.WorkResult;
    import org.gradle.api.tasks.WorkResults;
    import org.gradle.language.base.internal.compile.Compiler;
    import org.gradle.process.ExecResult;
    import org.gradle.process.internal.ExecHandle;
    import org.gradle.process.internal.ExecHandleBuilder;
    import org.gradle.process.internal.ExecHandleFactory;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.Serializable;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. cni/pkg/iptables/iptables.go

    		"--mark", inpodMark,
    		"-j", "CONNMARK",
    		"--set-xmark", inpodTproxyMark)
    
    	// Handle healthcheck probes from the host node. In the host netns, before the packet enters the pod, we SNAT
    	// the healthcheck packet to a fixed IP if the packet is coming from a node-local process with a socket.
    	//
    	// We do this so we can exempt this traffic from ztunnel capture/proxy - otherwise both kube-proxy (legit)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                        logger.warn("Could not close a process output stream.", e);
                    }
                });
    
                if (logger.isDebugEnabled()) {
                    logger.debug("Terminating process {}.", p);
                }
                try {
                    if (!p.destroyForcibly().waitFor(timeout, TimeUnit.MILLISECONDS)) {
                        logger.warn("Terminating process {} is timed out.", p);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/process/ExecOperations.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.process;
    
    import org.gradle.api.Action;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Process execution operations.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/os/executable_procfs.go

    	"internal/stringslite"
    	"runtime"
    )
    
    func executable() (string, error) {
    	var procfn string
    	switch runtime.GOOS {
    	default:
    		return "", errors.New("Executable not implemented for " + runtime.GOOS)
    	case "linux", "android":
    		procfn = "/proc/self/exe"
    	case "netbsd":
    		procfn = "/proc/curproc/exe"
    	}
    	path, err := Readlink(procfn)
    
    	// When the executable has been deleted then Readlink returns a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:26:04 UTC 2024
    - 715 bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            new JUnitTestClassProcessor(spec, new LongIdGenerator(), new TestActorFactory(), Time.clock())
        }
    
        void process(Class... clazz) {
            process(clazz*.name)
        }
    
        void process(Iterable<String> classNames) {
            classProcessor.startProcessing(processor)
            for (String c : classNames) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

            def dumpbin = findExe("lib.exe")
            def process = [dumpbin.absolutePath, '/LIST', binaryFile.absolutePath].execute(["PATH=$vcPath"], null)
            return process.inputStream.readLines().drop(3).collect { new File(it).name }
        }
    
        List<String> listLinkedLibraries() {
            def dumpbin = findExe("dumpbin.exe")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top