Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 545 for performHead (0.31 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/WorkResult.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.tasks;
    
    /**
     * Provides information about some work which was performed.
     */
    public interface WorkResult {
        boolean getDidWork();
    
        /**
         * Returns this result if it did work, otherwise returns the result given as a parameter.
         *
         * @since 6.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 19 12:42:56 UTC 2021
    - 1K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/toolchains/DefaultToolChainSelector.java

            NativeLanguage sourceLanguage = NativeLanguage.CPP;
            NativeToolChainInternal toolChain = getToolChain(sourceLanguage, targetNativePlatform);
    
            // TODO - don't select again here, as the selection is already performed to select the toolchain
            PlatformToolProvider toolProvider = toolChain.select(sourceLanguage, targetNativePlatform);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device.h

      // stream_. If true, computation is performed by stream_ and transfers are
      // performed by host_to_device/device_to_device stream or borrowing a stream
      // for each device to host transfer.
      const bool use_multiple_streams_;
      // If use_multiple_streams_, host to device transfers are performed using this
      // stream.
      std::shared_ptr<se::Stream> host_to_device_stream_ TF_GUARDED_BY(mu_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/net/sendfile_linux.go

    // system call to minimize copies.
    //
    // if handled == true, sendFile returns the number (potentially zero) of bytes
    // copied and any non-EOF error.
    //
    // if handled == false, sendFile performed no work.
    func sendFile(c *netFD, r io.Reader) (written int64, err error, handled bool) {
    	var remain int64 = 1<<63 - 1 // by default, copy until EOF
    
    	lr, ok := r.(*io.LimitedReader)
    	if ok {
    		remain, r = lr.N, lr.R
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/net/sendfile_windows.go

    // system call to minimize copies.
    //
    // if handled == true, sendFile returns the number of bytes copied and any
    // non-EOF error.
    //
    // if handled == false, sendFile performed no work.
    func sendFile(fd *netFD, r io.Reader) (written int64, err error, handled bool) {
    	var n int64 = 0 // by default, copy until EOF.
    
    	lr, ok := r.(*io.LimitedReader)
    	if ok {
    		n, r = lr.N, lr.R
    		if n <= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/RemoteSourceDependencyIntegrationTest.groovy

                    d.outgoing.artifact(jar)
                }
            '''
            repoC.commit('initial version')
        }
    
        @ToBeFixedForConfigurationCache
        def "git version lookup and checkout is performed once per version selector per build invocation"() {
            repoA.file("build.gradle") << """
                dependencies {
                    compile 'test:testB:1.2'
                    compile 'test:testC:1.2'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheCleanupStrategy.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.cache;
    
    /**
     * Specifies the details of cache cleanup, including the action to be performed and the frequency at which cache cleanup should occur.
     */
    public interface CacheCleanupStrategy {
        CacheCleanupStrategy NO_CLEANUP = new CacheCleanupStrategy() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:10:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/internal/ConsumerOperationDescriptor.java

    import org.gradle.tooling.events.OperationDescriptor;
    
    import javax.annotation.Nullable;
    
    /**
     * Implementation of the {@link OperationDescriptor} interface, for those operations which are performed by the consumer.
     */
    public class ConsumerOperationDescriptor implements OperationDescriptor {
        private final String displayName;
    
        public ConsumerOperationDescriptor(String displayName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/NamedOperation.groovy

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.concurrent
    
    import java.util.concurrent.atomic.AtomicReference
    
    /**
     * Represents some operation performed by a test. Has a start and end instant.
     */
    class NamedOperation {
        final String name
        final Instant start
        private final AtomicReference<Instant> end = new AtomicReference<>()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultResolvedComponentResult.java

         * graph to be traversed
         * @param moduleAction an action to be performed on each node (module) in the graph
         * @param dependencyAction an action to be performed on each edge (dependency) in the graph
         * @param visited tracks the visited nodes during the recursive traversal
         */
        public static void eachElement(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top