Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,119 for removePod (0.15 sec)

  1. build-logic/packaging/src/main/kotlin/gradlebuild/instrumentation/transforms/InstrumentationMetadataTransform.kt

                }
                REMOVED -> superTypes.remove(className)
            }
        }
    
        private
        fun handleInstrumentedMetadataFileChange(change: FileChange): MetadataFileChange {
            return when (change.changeType) {
                ADDED, MODIFIED -> MetadataModified(change.file)
                REMOVED -> MetadataRemoved
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:00:26 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslContainerIntegrationTest.kt

            """)
    
            executer.expectDocumentedDeprecationWarning(
                "Task 'help' found by String.invoke() notation. This behavior has been deprecated. " +
                    "This behavior is scheduled to be removed in Gradle 9.0. " +
                    "The \"name\"() notation can cause confusion with methods provided by Kotlin or the JDK. Use named(String) instead. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. operator/pkg/controller/istiocontrolplane/errdict.go

    			"not be fully removed.",
    		LikelyCause: formatCauses(likelyCauseAPIServer),
    		Action:      "Delete and re-add the IstioOperator resource. " + actionIfErrPersistsCheckBugList,
    	}
    	operatorFailedToRemoveFinalizer = &structured.Error{
    		MoreInfo: "The finalizer set by the operator controller could not be removed " +
    			"when the IstioOperator resource was deleted.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

            when:
            if (isKotlin1dot6) {
                def wrapUtilWarning = "The org.gradle.util.WrapUtil type has been deprecated. " +
                    "This is scheduled to be removed in Gradle 9.0. " +
                    "Consult the upgrading guide for further information: " +
                    "https://docs.gradle.org/current/userguide/upgrading_version_7.html#org_gradle_util_reports_deprecations"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

                    "WARNING: The following functionality has been deprecated and will be removed in the next major release of the Develocity Gradle plugin:")
                .maybeExpectLegacyDeprecationWarningIf(FIRST_VERSION_UNDER_DEVELOCITY_BRAND <= versionNumber,
                    "WARNING: The following functionality has been deprecated and will be removed in the next major release of the Develocity Gradle plugin. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/features/features.go

    	PublicKeysECDSA: {
    		FeatureSpec: featuregate.FeatureSpec{Default: false, PreRelease: featuregate.Deprecated},
    		DeprecationMessage: "The PublicKeysECDSA feature gate is deprecated and will be removed when v1beta3 is removed." +
    			" v1beta4 supports a new option 'ClusterConfiguration.EncryptionAlgorithm'.",
    	},
    	RootlessControlPlane: {FeatureSpec: featuregate.FeatureSpec{Default: false, PreRelease: featuregate.Alpha},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/Graph.java

       * this graph.
       *
       * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
       *
       * <p>If {@code node} is removed from the graph after this method is called, the {@code Set}
       * {@code view} returned by this method will be invalidated, and will throw {@code
       * IllegalStateException} if it is accessed in any way, with the following exceptions:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/Graph.java

       * this graph.
       *
       * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
       *
       * <p>If {@code node} is removed from the graph after this method is called, the {@code Set}
       * {@code view} returned by this method will be invalidated, and will throw {@code
       * IllegalStateException} if it is accessed in any way, with the following exceptions:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

    import org.gradle.util.internal.ToBeImplemented
    import spock.lang.Issue
    
    class StaleOutputIntegrationTest extends AbstractIntegrationSpec {
    
        @Issue(['GRADLE-2440', 'GRADLE-2579'])
        def 'stale output file is removed after input source directory is emptied.'() {
            def taskWithSources = new TaskWithSources()
            taskWithSources.createInputs()
            buildScript(taskWithSources.buildScript)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCacheFactory.java

        /**
         * Creates a new cache instance. Keys are always referenced using strong references, values by strong or soft references depending on their usage.
         *
         * <p>Clients should assume that entries may be removed at any time, based on current memory pressure and the likelihood that the entry will be required again soon.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top