Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,124 for reprocess (0.09 sec)

  1. src/os/pidfd_linux_test.go

    	if err != nil {
    		t.Fatalf("starting test process: %v", err)
    	}
    	p.Wait()
    
    	// Use pid of a non-existing process.
    	proc, err := os.FindProcess(p.Pid)
    	// FindProcess should never return errors on Unix.
    	if err != nil {
    		t.Fatalf("FindProcess: got error %v, want <nil>", err)
    	}
    	// FindProcess should never return nil Process.
    	if proc == nil {
    		t.Fatal("FindProcess: got nil, want non-nil")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/ProcessMetaDataProvider.java

    /**
     * Provides meta-data about the current process. Generally used for logging and error messages.
     */
    public interface ProcessMetaDataProvider {
        /**
         * Returns a unique identifier for this process. Should be unique across all processes on the local machine.
         */
        String getProcessIdentifier();
    
        /**
    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. subprojects/core/src/main/java/org/gradle/process/internal/AbstractExecHandleBuilder.java

     * limitations under the License.
     */
    package org.gradle.process.internal;
    
    import org.apache.commons.lang.StringUtils;
    import org.gradle.initialization.BuildCancellationToken;
    import org.gradle.internal.file.PathToFileResolver;
    import org.gradle.process.BaseExecSpec;
    import org.gradle.process.internal.streams.EmptyStdInStreamsHandler;
    import org.gradle.process.internal.streams.ForwardStdinStreamsHandler;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 06 16:16:31 UTC 2020
    - 6K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/ForkingTestClassProcessorTest.groovy

    import org.gradle.internal.work.WorkerThreadRegistry
    import org.gradle.process.JavaForkOptions
    import org.gradle.process.internal.ExecException
    import org.gradle.process.internal.JavaExecHandleBuilder
    import org.gradle.process.internal.worker.WorkerProcess
    import org.gradle.process.internal.worker.WorkerProcessBuilder
    import org.gradle.process.internal.worker.WorkerProcessFactory
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. pkg/util/procfs/procfs_unsupported.go

    	return &ProcFS{}
    }
    
    // GetFullContainerName gets the container name given the root process id of the container.
    func (pfs *ProcFS) GetFullContainerName(pid int) (string, error) {
    	return "", fmt.Errorf("GetFullContainerName is unsupported in this build")
    }
    
    // Find process(es) using a regular expression and send a specified
    // signal to each process
    func PKill(name string, sig syscall.Signal) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            assertEquals(
                    "{\"@timestamp\":\"2022-01-01T00:00:00.000Z\",\"log.level\":\"INFO\",\"ecs.version\":\"1.2.0\",\"service.name\":\"fess\",\"event.dataset\":\"app\",\"process.thread.name\":\"main\",\"log.logger\":\"org.codelibs.fess.helper.ActivityHelperTest$1\",\"labels.action\":\"LOGIN\",\"labels.user\":\"-\",\"labels.permissions\":\"-\"}",
                    localLogMsg.get());
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/RootBuildCacheControllerSettingsProcessor.java

            this.delegate = delegate;
        }
    
        @Override
        public SettingsState process(GradleInternal gradle, SettingsLocation settingsLocation, ClassLoaderScope buildRootClassLoaderScope, StartParameter startParameter) {
            SettingsState state = delegate.process(gradle, settingsLocation, buildRootClassLoaderScope, startParameter);
            process(gradle);
            return state;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. VULNERABILITY_REPORT.md

    # Vulnerability Management Policy
    
    This document formally describes the process of addressing and managing a
    reported vulnerability that has been found in the MinIO server code base,
    any directly connected ecosystem component or a direct / indirect dependency
    of the code base.
    
    ## Scope
    
    The vulnerability management policy described in this document covers the
    process of investigating, assessing and resolving a vulnerability report
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. src/syscall/exec_freebsd.go

    	// Foreground places the child process group in the foreground.
    	// This implies Setpgid. The Ctty field must be set to
    	// the descriptor of the controlling TTY.
    	// Unlike Setctty, in this case Ctty must be a descriptor
    	// number in the parent process.
    	Foreground bool
    	Pgid       int    // Child's process group ID if Setpgid.
    	Pdeathsig  Signal // Signal that the process will get when its parent dies (Linux and FreeBSD only)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. src/cmd/dist/util_gc.go

    // useVFPv1 tries to execute one VFPv1 instruction on ARM.
    // It will crash the current process if VFPv1 is missing.
    func useVFPv1()
    
    // useVFPv3 tries to execute one VFPv3 instruction on ARM.
    // It will crash the current process if VFPv3 is missing.
    func useVFPv3()
    
    // useARMv6K tries to run ARMv6K instructions on ARM.
    // It will crash the current process if it doesn't implement
    // ARMv6K or above.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 609 bytes
    - Viewed (0)
Back to top