Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Deprecation (0.32 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    +
    image::deprecations.png[Deprecations View of a Gradle Build Scan]
    +
    This is so you can see any deprecation warnings that apply to your build.
    +
    Alternatively, you can run `gradle help --warning-mode=all` to see the deprecations in the console, though it may not report as much detailed information.
    . Update your plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            boolean emittedDeprecation = maybePreventMutation(type, type + " of parent");
    
            // Notify children of this mutation, but don't emit a deprecation if we already emitted one
            // at this level, otherwise we spam for no reason. We can remove this once the deprecation
            // turns into an error, since the error will short-circuit the child notifications.
            if (emittedDeprecation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/javadoc.css

    .package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label {
        font-weight:bold;
    }
    .deprecation-comment, .help-footnote, .preview-comment {
        font-style:italic;
    }
    .deprecation-block {
        font-size:1em;
        font-family:var(--block-font-family);
        border-style:solid;
        border-width:thin;
        border-radius:10px;
        padding:10px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    			deprecations = append(deprecations, modMessage{m: m})
    		}
    	}
    	sort.Slice(deprecations, func(i, j int) bool { return deprecations[i].m.Path < deprecations[j].m.Path })
    	for i := range deprecations {
    		i := i
    		r.work.Add(func() {
    			deprecation, err := modload.CheckDeprecation(ctx, deprecations[i].m)
    			if err != nil || deprecation == "" {
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        @Override
        public GradleExecuter expectDeprecationWarnings(int count) {
            Preconditions.checkState(expectedGenericDeprecationWarnings == 0, "expected deprecation count is already set for this execution");
            Preconditions.checkArgument(count > 0, "expected deprecation count must be positive");
            expectedGenericDeprecationWarnings = count;
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

      - [Urgent Upgrade Notes](#urgent-upgrade-notes)
        - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade)
      - [Changes by Kind](#changes-by-kind)
        - [Deprecation](#deprecation)
        - [API Change](#api-change)
        - [Feature](#feature)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                ?: file
    
            val firDeclaration = declarationToVisit.getCorrespondingFirElement() ?: return ShortenCommandImpl(
                @Suppress("DEPRECATION")
                file.createSmartPointer(),
                importsToAdd = emptySet(),
                starImportsToAdd = emptySet(),
                listOfTypeToShortenInfo = emptyList(),
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        assertEquals(-1, Iterators.indexOf(iterator, Predicates.equalTo("bob")));
        assertFalse(iterator.hasNext());
      }
    
      @SuppressWarnings("deprecation")
      public void testUnmodifiableIteratorShortCircuit() {
        Iterator<String> mod = Lists.newArrayList("a", "b", "c").iterator();
        UnmodifiableIterator<String> unmod = Iterators.unmodifiableIterator(mod);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

    import org.gradle.groovy.scripts.ScriptSource;
    import org.gradle.internal.Actions;
    import org.gradle.internal.Cast;
    import org.gradle.internal.Factories;
    import org.gradle.internal.Factory;
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.internal.event.ListenerBroadcast;
    import org.gradle.internal.extensibility.ExtensibleDynamicObject;
    import org.gradle.internal.extensibility.NoConventionMapping;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                p.getModelId(),
                                p.getException()))
                        .toList();
            }
    
            @SuppressWarnings({"checkstyle:methodlength", "deprecation"})
            private void initProject(MavenProject project, Map<File, MavenProject> projects, ModelBuilderResult result) {
                project.setModel(new org.apache.maven.model.Model(result.getEffectiveModel()));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
Back to top