Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 463 for processDest (0.28 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

                }
            } catch (Throwable e) {
                throw new IOException("Failed to process the entry '" + entry.getName() + "' from '" + source + "'", e);
            }
        }
    
        /**
         * Processes a class file. The type of file is determined solely by name, so it may not be a well-formed class file.
         * Base class implementation applies the {@link ClassTransform} to the code.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/antLoadfile/kotlin/antLoadfileResources/agile.manifesto.txt

    Individuals and interactions over processes and tools
    Working software over comprehensive documentation
    Customer collaboration  over contract negotiation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 196 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/antLoadfileWithMethod/kotlin/antLoadfileResources/agile.manifesto.txt

    Individuals and interactions over processes and tools
    Working software over comprehensive documentation
    Customer collaboration  over contract negotiation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 196 bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/ListValueSnapshot.java

            super(elements);
        }
    
        @Override
        public ValueSnapshot snapshot(Object value, ValueSnapshotter snapshotter) {
            return processList(value, snapshotter);
        }
    
        private ValueSnapshot processList(Object value, ValueSnapshotter snapshotter) {
            if (!(value instanceof List)) {
                return snapshotter.snapshot(value);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/process/internal/PathLimitationIntegrationTest.groovy

            return new ChildProcess(action, workingDirectory);
        }
    
        void execute(ChildProcess... processes) throws Throwable {
            for (ChildProcess process : processes) {
                process.start();
            }
            for (ChildProcess process : processes) {
                process.waitForStop();
            }
            exceptionListener.rethrow();
        }
    
        private class ChildProcess {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. pkg/util/oom/oom_linux.go

    			continue
    		}
    		return nil
    	}
    	if err != nil {
    		klog.V(2).Infof("failed to set %q to %q: %v", oomScoreAdjPath, value, err)
    	}
    	return err
    }
    
    // Writes 'value' to /proc/<pid>/oom_score_adj for all processes in cgroup cgroupName.
    // Keeps trying to write until the process list of the cgroup stabilizes, or until maxTries tries.
    func (oomAdjuster *OOMAdjuster) applyOOMScoreAdjContainer(cgroupName string, oomScoreAdj, maxTries int) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 07:13:28 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. src/testing/internal/testdeps/deps.go

    		return nil
    	}
    	return err
    }
    
    func (TestDeps) RunFuzzWorker(fn func(fuzz.CorpusEntry) error) error {
    	// Worker processes may or may not receive a signal when the user presses ^C
    	// On POSIX operating systems, a signal sent to a process group is delivered
    	// to all processes in that group. This is not the case on Windows.
    	// If the worker is interrupted, return quickly and without error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcessSettings.java

    import org.gradle.process.internal.JavaExecHandleBuilder;
    
    import java.io.File;
    import java.util.Set;
    
    /**
     * <p>Settings common to all worker processes.</p>
     *
     * <p>A worker process runs some action in a child process launched by this processes.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 01 18:40:53 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/pod_container_manager_linux.go

    		}
    		if len(errlist) == 0 {
    			klog.V(3).InfoS("Successfully killed all unwanted processes from cgroup", "cgroupName", podCgroup)
    			return nil
    		}
    	}
    	return utilerrors.NewAggregate(errlist)
    }
    
    // Destroy destroys the pod container cgroup paths
    func (m *podContainerManagerImpl) Destroy(podCgroup CgroupName) error {
    	// Try killing all the processes attached to the pod cgroup
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcessBuilder.java

    import org.gradle.internal.nativeintegration.services.NativeServices.NativeServicesMode;
    
    import java.io.File;
    import java.net.URL;
    import java.util.List;
    
    /**
     * <p>A builder which configures and creates worker processes.</p>
     *
     * <p>A worker process runs an {@link Action} instance. The given action instance is serialized across into the worker process and executed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top