Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,147 for DEPRECATED (0.19 sec)

  1. subprojects/core-api/src/main/java/org/gradle/internal/deprecation/DeprecatableConfiguration.java

         *
         * <p>This property is only relevant if this configuration deprecated for declaration.</p>
         */
        List<String> getDeclarationAlternatives();
    
        /**
         * Return the names of configurations that should be used to consume a component instead of consuming this configuration.
         *
         * <p>This property is only relevant if this configuration deprecated for resolution.</p>
         */
        List<String> getResolutionAlternatives();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 03:39:06 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBuildController.java

     * implement newer interfaces.
     * </p>
     * <p>Provider compatibility: This interface is implemented by all provider versions from 1.8-rc-1.</p>
     *
     * @since 1.8-rc-1
     * @deprecated 4.4. Use {@link InternalBuildControllerVersion2} instead.
     */
    @Deprecated
    public interface InternalBuildController {
        /**
         * Returns the version-specific build model.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/deprecation/deprecation.go

    // to indicate a non-zero deprecated major/minor version and has a populated GetObjectKind().GroupVersionKind().
    func WarningMessage(obj runtime.Object) string {
    	deprecated, isDeprecated := obj.(apiLifecycleDeprecated)
    	if !isDeprecated {
    		return ""
    	}
    
    	deprecatedMajor, deprecatedMinor := deprecated.APILifecycleDeprecated()
    	if deprecatedMajor == 0 && deprecatedMinor == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java

        private String language;
    
        @Deprecated
        private boolean addedToClasspath;
    
        /**
         * Default ctor for Plexus compatibility, as many plugins have artifact handlers declared in legacy Plexus XML.
         * Do not use directly!
         *
         * @deprecated This ctor is present only for Plexus XML defined component compatibility, do not use it.
         */
        @Deprecated
        public DefaultArtifactHandler() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. maven-settings-builder/src/main/java/org/apache/maven/settings/building/StringSettingsSource.java

     */
    package org.apache.maven.settings.building;
    
    import org.apache.maven.building.StringSource;
    
    /**
     * Wraps an ordinary {@link CharSequence} as a settings source.
     *
     *
     * @deprecated instead use {@link StringSource}
     */
    @Deprecated
    public class StringSettingsSource extends StringSource implements SettingsSource {
    
        /**
         * Creates a new settings source backed by the specified string.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. api/go1.18.txt

    pkg syscall (windows-386), func Syscall //deprecated
    pkg syscall (windows-386), func Syscall12 //deprecated
    pkg syscall (windows-386), func Syscall15 //deprecated
    pkg syscall (windows-386), func Syscall18 //deprecated
    pkg syscall (windows-386), func Syscall6 //deprecated
    pkg syscall (windows-386), func Syscall9 //deprecated
    pkg syscall (windows-386), func SyscallN(uintptr, ...uintptr) (uintptr, uintptr, Errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/project/InvalidProjectModelException.java

        }
    
        /**
         * @param projectId
         * @param pomLocation      absolute path of the pom file
         * @param message
         * @param validationResult
         * @deprecated use {@link File} constructor for pomLocation
         */
        @Deprecated
        public InvalidProjectModelException(
                String projectId, String pomLocation, String message, ModelValidationResult validationResult) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Feb 07 19:46:28 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationsList.kt

     *
     * Annotation owners are usually implement [KaAnnotated]
     */
    public interface KaAnnotationList : List<KaAnnotation>, KaLifetimeOwner {
        @Deprecated("Use the annotation list as a 'List'.")
        public val annotations: List<KaAnnotation>
            get() = this
    
        @Deprecated("Use the annotation list as a 'List'.")
        public val annotationInfos: List<KaAnnotation>
            get() = this
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/CommandLineOptionConfigurationTest.groovy

            then:
            configuration.incubating
        }
    
        def "can mark option as deprecated"() {
            when:
            CommandLineOptionConfiguration configuration = CommandLineOptionConfiguration.create(LONG_OPTION, SHORT_OPTION, DESCRIPTION)
            configuration.deprecated()
    
            then:
            configuration.deprecated
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/SmbTransportPool.java

         * 
         * @param dc
         * @param tc
         * @throws CIFSException
         * @deprecated functionality is broken and will be removed at some point,
         *             use actual Active Directory authentication instead
         */
        @Deprecated
        void logon ( CIFSContext tc, Address dc ) throws CIFSException;
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 09:02:44 UTC 2020
    - 6.3K bytes
    - Viewed (0)
Back to top