Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 301 for destroys (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    | An iterable of output directories.
    Using a file tree turns <<build_cache.adoc#sec:task_output_caching, caching>> off for the task.
    
    | `@link:{javadocPath}/org/gradle/api/tasks/Destroys.html[Destroys]`
    | `File` or `Iterable&lt;File&gt;`+++*+++
    | Specifies one or more files that are removed by this task.  Note that a task can define either inputs/outputs or destroyables, but not both.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    |`@OutputDirectory`
    |Property is an output directory for the task
    
    |`@OutputDirectories`
    |Property is one or more output directories for the task
    
    |`@Destroys`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cgroup_manager_linux.go

    func (m *cgroupManagerImpl) Exists(name CgroupName) bool {
    	return m.Validate(name) == nil
    }
    
    // Destroy destroys the specified cgroup
    func (m *cgroupManagerImpl) Destroy(cgroupConfig *CgroupConfig) error {
    	start := time.Now()
    	defer func() {
    		metrics.CgroupManagerDuration.WithLabelValues("destroy").Observe(metrics.SinceInSeconds(start))
    	}()
    
    	libcontainerCgroupConfig := m.libctCgroupConfig(cgroupConfig, false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            assertTaskOutputCached(fileTask)
    
            when:
            cleanBuildDir()
            withBuildCache().run(fileTask, localStateDirTask)
            then:
            // FIXME Loading from cache destroys the overlap directory, but the task should not be loaded from cache
            fileTaskOutput.assertDoesNotExist()
            localStateDirTaskOutput.assertExists()
            // Task was loaded from cache, so local state was removed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/TreeMultiset.java

            Comparator<? super E> comparator, @ParametricNullness E e, int count, int[] result) {
          /*
           * It speeds things up considerably to unconditionally add count to totalCount here,
           * but that destroys failure atomicity in the case of count overflow. =(
           */
          int cmp = comparator.compare(e, getElement());
          if (cmp < 0) {
            AvlNode<E> initLeft = left;
            if (initLeft == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

                this
            }
    
            AnnotationContext forTask() {
                validAnnotations = "@Console, @Destroys, @Inject, @Input, @InputDirectory, @InputFile, @InputFiles, @Internal, @LocalState, @Nested, @OptionValues, @OutputDirectories, @OutputDirectory, @OutputFile, @OutputFiles, @ReplacedBy or @ServiceReference"
                this
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TreeMultiset.java

            Comparator<? super E> comparator, @ParametricNullness E e, int count, int[] result) {
          /*
           * It speeds things up considerably to unconditionally add count to totalCount here,
           * but that destroys failure atomicity in the case of count overflow. =(
           */
          int cmp = comparator.compare(e, getElement());
          if (cmp < 0) {
            AvlNode<E> initLeft = left;
            if (initLeft == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  not be allocated).  It is the caller's responsibility to destroy and free 
     *  the new registry (unless it is made the active test registry using
     *  CU_set_registry()).
     */
    
    CU_EXPORT 
    void CU_destroy_existing_registry(CU_pTestRegistry* ppRegistry);
    /**< 
     *  Destroys and frees all memory for an existing test registry.
     *  The active test registry is destroyed by the CUnit system in 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    }
    
    // RegisterDestroyFunc registers a function that will be called during Destroy().
    // The function have to be idempotent and prepared to be called more than once.
    func (s *GenericAPIServer) RegisterDestroyFunc(destroyFn func()) {
    	s.destroyFns = append(s.destroyFns, destroyFn)
    }
    
    // Destroy cleans up all its and its delegation target resources on shutdown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

                      default_() {}
      explicit ThreadLocal(const T& value) : key_(CreateKey()),
                                             default_(value) {}
    
      ~ThreadLocal() {
        // Destroys the managed object for the current thread, if any.
        DeleteThreadLocalValue(pthread_getspecific(key_));
    
        // Releases resources associated with the key.  This will *not*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top