Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 697 for Deprecation (0.17 sec)

  1. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/configuration/WarningMode.java

         */
        All(true),
    
        /**
         * Display a summary at the end of the build instead of rendering all warnings into the console output.
         */
        Summary(false),
    
        /**
         * No deprecation warnings at all.
         */
        None(false),
    
        /**
         * Show all warnings and fail the build if any warning present
         *
         * @since 5.6
         */
        Fail(true);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/precompile/PrecompiledSettingsScript.kt

     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.precompile
    
    import org.gradle.api.initialization.Settings
    import org.gradle.api.internal.ProcessOperations
    import org.gradle.internal.deprecation.DeprecationLogger
    import org.gradle.kotlin.dsl.*
    import org.gradle.kotlin.dsl.support.fileOperationsFor
    import org.gradle.kotlin.dsl.support.serviceOf
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r50/ProjectStateLockingCrossVersionTest.groovy

    import org.gradle.integtests.tooling.r33.FetchIdeaProject
    
    @TargetGradleVersion(">=5.0")
    class ProjectStateLockingCrossVersionTest extends ToolingApiSpecification {
        def "does not emit deprecation warnings when idea model builder resolves a configuration"() {
            singleProjectBuildInRootFolder("root") {
                buildFile << """
                    apply plugin: 'java'
                """
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/x509metrics/server_cert_deprecations.go

    	// Use the req to derive and log information useful for troubleshooting the certificate issue
    	IncreaseMetricsCounter(req *http.Request)
    }
    
    // counterRaiser is a helper structure to include in certificate deprecation checkers.
    // It implements the IncreaseMetricsCounter() method so that, when included in the checker,
    // it does not have to be reimplemented.
    type counterRaiser struct {
    	counter *metrics.Counter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/util/SingleMessageLogger.java

    import org.gradle.internal.deprecation.DeprecationLogger;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class SingleMessageLogger extends org.gradle.internal.deprecation.DeprecationLogger {
        static {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/NaggingJavaPluginConvention.java

    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.java.archives.Manifest;
    import org.gradle.api.tasks.SourceSetContainer;
    import org.gradle.internal.deprecation.DeprecationLogger;
    
    import java.io.File;
    
    @SuppressWarnings("deprecation")
    @org.gradle.api.NonNullApi
    public class NaggingJavaPluginConvention extends org.gradle.api.plugins.JavaPluginConvention {
        private final DefaultJavaPluginConvention delegate;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. cluster/gce/addons/loadbalancing/cloud-provider-role.yaml

    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: Role
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      name: cloud-provider
      namespace: kube-system
      annotations:
        kubernetes.io/deprecation: 'cloud-provider role is DEPRECATED in the
          concern of potential collisions and will be removed in 1.16. Do not use
          this role.'
    rules:
    - apiGroups:
      - ""
      resources:
      - configmaps
      verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 28 23:02:19 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/test/groovy/org/gradle/api/problems/ProblemCategoryTest.groovy

            where:
            namespace                 | category        | subcategory       | expectedToString
            'org.gradle'              | 'deprecation'   | []                | 'org.gradle:deprecation'
            'gradle.plugin'           | 'deprecation'   | ['sub']           | 'gradle.plugin:deprecation:sub'
            'org.gradle'              | 'some-category' | ['sub', 'subsub'] | 'org.gradle:some-category:sub:subsub'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 16:23:23 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/jmh/java/org/gradle/internal/deprecation/DeprecationIdCreationBenchmark.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.deprecation;
    
    import org.openjdk.jmh.annotations.Benchmark;
    import org.openjdk.jmh.annotations.Measurement;
    import org.openjdk.jmh.annotations.Scope;
    import org.openjdk.jmh.annotations.State;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 06:13:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultArtifactHandler.java

    import org.gradle.api.artifacts.PublishArtifact;
    import org.gradle.api.artifacts.dsl.ArtifactHandler;
    import org.gradle.internal.Actions;
    import org.gradle.internal.deprecation.DeprecatableConfiguration;
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.internal.metaobject.DynamicInvokeResult;
    import org.gradle.internal.metaobject.MethodAccess;
    import org.gradle.internal.metaobject.MethodMixIn;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top