Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,147 for DEPRECATED (0.22 sec)

  1. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithAnnotation.java

    package org.gradle.test;
    
    @Deprecated @JavaAnnotation
    public class JavaClassWithAnnotation {
        @Deprecated @JavaAnnotation
        String getAnnotatedProperty() { return "hi"; }
    
        @Deprecated @JavaAnnotation
        void annotatedMethod() { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 242 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

        private void writeDeprecationJavadocTag(boolean deprecated, boolean separate) throws IOException {
            if (deprecated) {
                if (separate) {
                    writeLn(" *");
                }
                writeLn(" * @deprecated Will be removed in Gradle 9.0.");
            }
        }
    
        private void writeDeprecationAnnotation(boolean deprecated) throws IOException {
            if (deprecated) {
                writeLn("@Deprecated");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskExecutionGraph.java

         * @deprecated This method is not supported when configuration caching is enabled.
         */
        @Deprecated
        void addTaskExecutionListener(TaskExecutionListener listener);
    
        /**
         * <p>Remove a listener from this graph.</p>
         *
         * @param listener The listener to remove. Does nothing if this listener was never added to this graph.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 20:29:51 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/options/options.go

    }
    
    // ApplyDeprecated obtains the deprecated CLI args and set them to `o.ComponentConfig` if specified.
    func (o *Options) ApplyDeprecated() {
    	if o.Flags == nil {
    		return
    	}
    	// Obtain deprecated CLI args. Set them to cfg if specified in command line.
    	deprecated := o.Flags.FlagSet("deprecated")
    	if deprecated.Changed("profiling") {
    		o.ComponentConfig.EnableProfiling = o.Deprecated.EnableProfiling
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadataRetrievalException.java

    /**
     * Error while retrieving repository metadata from the repository.
     *
     */
    @Deprecated
    public class ArtifactMetadataRetrievalException extends Exception {
        private Artifact artifact;
    
        /**
         * @param message a message
         * @deprecated use {@link #ArtifactMetadataRetrievalException(String, Throwable, Artifact)}
         */
        @Deprecated
        public ArtifactMetadataRetrievalException(String message) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. pkg/api/pod/warnings.go

    		}
    	}
    
    	// use of deprecated annotations
    	for _, deprecated := range deprecatedAnnotations {
    		if _, exists := meta.Annotations[deprecated.key]; exists {
    			warnings = append(warnings, fmt.Sprintf("%s: %s", fieldPath.Child("metadata", "annotations").Key(deprecated.key), deprecated.message))
    		}
    		if len(deprecated.prefix) > 0 {
    			for k := range meta.Annotations {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping.java

        /** @deprecated use lifecycles instead */
        @Deprecated
        private Map<String, LifecyclePhase> phases;
    
        /**
         * Default ctor for plexus compatibility: lifecycles are most commonly defined in Plexus XML, that does field
         * injection. Still, for Plexus to be able to instantiate this class, default ctor is needed.
         *
         * @deprecated Should not be used in Java code.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:46:36 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

            return null;
        }
    
        @Deprecated
        public EventDispatcher getEventDispatcher() {
            return null;
        }
    
        @Deprecated
        public boolean isUsingPOMsFromFilesystem() {
            return request.isProjectPresent();
        }
    
        /**
         * @deprecated Use either {@link #getUserProperties()} or {@link #getSystemProperties()}.
         */
        @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/reflect/ImmutableTypeToInstanceMap.java

        return trustedGet(TypeToken.of(type));
      }
    
      /**
       * Guaranteed to throw an exception and leave the map unmodified.
       *
       * @deprecated unsupported operation
       * @throws UnsupportedOperationException always
       */
      @CanIgnoreReturnValue
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      @CheckForNull
      public <T extends B> T putInstance(TypeToken<T> type, T value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 20:46:24 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/ImmutableTypeToInstanceMap.java

        return trustedGet(TypeToken.of(type));
      }
    
      /**
       * Guaranteed to throw an exception and leave the map unmodified.
       *
       * @deprecated unsupported operation
       * @throws UnsupportedOperationException always
       */
      @CanIgnoreReturnValue
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      @CheckForNull
      public <T extends B> T putInstance(TypeToken<T> type, T value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 20:46:24 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top