Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 301 for destroys (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformValuesInjectionIntegrationTest.groovy

    import org.gradle.api.provider.ProviderFactory
    import org.gradle.api.services.BuildServiceParameters
    import org.gradle.api.tasks.CacheableTask
    import org.gradle.api.tasks.Console
    import org.gradle.api.tasks.Destroys
    import org.gradle.api.tasks.Input
    import org.gradle.api.tasks.InputDirectory
    import org.gradle.api.tasks.InputFile
    import org.gradle.api.tasks.Internal
    import org.gradle.api.tasks.LocalState
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 37.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

                    if (doesConsumerDependOnDestroyer(consumer, destroyer)) {
                        // If there's an explicit dependency from consuming node to destroyer,
                        // then we accept that as the will of the user
                        continue;
                    }
                    LOGGER.debug("Node {} destroys output of consumer {}", destroyer, consumer);
                    return true;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

            Console           | '@Console'                                                 | Boolean        | null
            Destroys          | '@Destroys'                                                | FileCollection | null
            LocalState        | '@LocalState'                                              | FileCollection | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  4. src/internal/poll/splice_linux.go

    	// although it will require more system calls.
    	unix.Fcntl(fds[0], syscall.F_SETPIPE_SZ, maxSpliceSize)
    
    	return &splicePipe{splicePipeFields: splicePipeFields{rfd: fds[0], wfd: fds[1]}}
    }
    
    // destroyPipe destroys a pipe.
    func destroyPipe(p *splicePipe) {
    	CloseFunc(p.rfd)
    	CloseFunc(p.wfd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. ci/official/README.md

    #
    #   Important: because the container is persistent, you cannot change TFCI
    #   variables in between script executions. To forcibly remove the
    #   container and start fresh, run "docker rm -f tf". Removing the container
    #   destroys some temporary bazel data and causes longer builds.
    #
    #   You will need the NVIDIA Container Toolkit for GPU testing:
    #   https://github.com/NVIDIA/nvidia-container-toolkit
    #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/value.h

        return v;
      }
      /// Destroys TaggedValue. Shared pointers in unions must be explicitly
      /// deleted.
      void destroy() {
        if (type_ != NONE) {
          // Explicitly run the destructor on the correct type.
          visit<void>([](auto& x) {
            using T = typename std::decay<decltype(x)>::type;
            x.~T();
          });
          // Make the type None, whenever we destroy so we always have an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                details == "The '@${ann.simpleName}' annotation cannot be used in this context"
                solutions == [
                    'Remove the property',
                    'Use a different annotation, e.g one of @Console, @Destroys, @Inject, @Input, @InputDirectory, @InputFile, @InputFiles, @Internal, @LocalState, @Nested, @OptionValues, @OutputDirectories, @OutputDirectory, @OutputFile, @OutputFiles, @ReplacedBy or @ServiceReference',
                ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/stream_executor/stream_executor.h

      // resources on the underlying platform and initializes its
      // internals.
      void (*create_stream)(const SP_Device* device, SP_Stream* stream,
                            TF_Status* status);
    
      // Destroys SP_Stream and deallocates any underlying resources.
      void (*destroy_stream)(const SP_Device* device, SP_Stream stream);
    
      // Causes `dependent` to not begin execution until `other` has finished its
      // last-enqueued work.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableMultiset.java

         * modifications, or we'll modify the already-built ImmutableMultiset.
         */
        boolean buildInvoked = false;
        /**
         * In the event of a setCount(elem, 0) call, we may need to remove elements, which destroys the
         * insertion order property of ObjectCountHashMap. In that event, we need to convert to a
         * ObjectCountLinkedHashMap, but we need to know we did that so we can convert back.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

    Reason: The '@Invalid' annotation cannot be used in this context.
    
    Possible solutions:
      1. Remove the property.
      2. Use a different annotation, e.g one of @Console, @Destroys, @Inject, @Input, @InputDirectory, @InputFile, @InputFiles, @Internal, @LocalState, @Nested, @OptionValues, @OutputDirectories, @OutputDirectory, @OutputFile, @OutputFiles, @ReplacedBy or @ServiceReference.
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
Back to top