Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,868 for revoked (0.18 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

        }
    
        def "logs generic deprecation message for specific thing"() {
            when:
            DeprecationLogger.deprecate("Something").willBeRemovedInGradle9().undocumented().nagUser()
    
            then:
            expectMessage "Something has been deprecated. This is scheduled to be removed in Gradle ${NEXT_GRADLE_VERSION}."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

       *
       * <p>Cancellation does not propagate from the output future to a callable that has begun to
       * execute, but if the output future is cancelled before {@link Callable#call()} is invoked,
       * {@link Callable#call()} will not be invoked.
       */
      public <T extends @Nullable Object> ListenableFuture<T> submit(
          Callable<T> callable, Executor executor) {
        checkNotNull(callable);
        checkNotNull(executor);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

      // 2. Initialize all the rest of the functions
      TF_RETURN_IF_ERROR(InitializeAllFunctions(ctx, obj_graph, *this, revived));
    
      // 3a. Move over all non-function, non-resource objects
      revived->variables = std::move(variables);
      revived->assets = std::move(assets);
      revived->constants = std::move(constants);
      revived->signatures_map = std::move(signatures_map);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGConfigurationListener.java

     */
    public interface TestNGConfigurationListener {
        /**
         * Invoked whenever a configuration method succeeded.
         */
        void onConfigurationSuccess(ITestResult itr);
    
        /**
         * Invoked whenever a configuration method failed.
         */
        void onConfigurationFailure(ITestResult itr);
    
        /**
         * Invoked whenever a configuration method was skipped.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/DefaultFileChangeTest.groovy

            fileChange                                                              | message
            DefaultFileChange.removed("somePath", "test", FileType.RegularFile, "") | "has been removed"
            DefaultFileChange.removed("somePath", "test", FileType.Directory, "")   | "has been removed"
            DefaultFileChange.added("somePath", "test", FileType.RegularFile, "")   | "has been added"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. test/nilptr5_aix.go

    // license that can be found in the LICENSE file.
    
    // Test that nil checks are removed.
    // Optimization is enabled.
    
    package p
    
    func f5(p *float32, q *float64, r *float32, s *float64) float64 {
    	x := float64(*p) // ERROR "generated nil check"
    	y := *q          // ERROR "generated nil check"
    	*r = 7           // ERROR "removed nil check"
    	*s = 9           // ERROR "removed nil check"
    	return x + y
    }
    
    type T [29]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 806 bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/internal/provider/views/SetPropertySetView.java

            boolean removed = set.remove(o);
            delegate.set(set);
            return removed;
        }
    
        @Override
        public boolean removeAll(Collection<?> c) {
            Set<? extends E> set = new LinkedHashSet<>(delegate.get());
            boolean removed = set.removeAll(c);
            delegate.set(set);
            return removed;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/util/GradleVersion.java

        /**
         * This field only kept here to maintain binary compatibility.
         *
         * @deprecated will be removed in Gradle 9.
         */
        @Deprecated
        public static final String URL = "https://www.gradle.org";
    
        /**
         * This field only kept here to maintain binary compatibility.
         *
         * @deprecated will be removed in Gradle 9.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionPropertyInternal.java

         *
         * <p>
         * When invoked on a property with no value, this method first sets the value
         * of the property to its current convention value, if set, or an empty collection.
         * </p>
         * <p>Even if the given provider has no value, after this method is invoked,
         * the actual value of this property is guaranteed to be present.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

            List<String> modified = options.modified ?: []
            List<String> removed = options.removed ?: []
    
            succeeds("incremental")
            outputContains("incremental=$incremental")
            outputContains("added=$added")
            outputContains("modified=$modified")
            outputContains("removed=$removed")
        }
    
        String getTaskAction() {
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
Back to top