Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,017 for removePod (1.58 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModuleStateModificationListener.kt

         * is received. This includes source files being moved or removed, binary content being added, removed, or changed, and modules possibly
         * being removed. Thus, all caches related to module structure, source code, and binaries should be invalidated.
         *
         * @see KotlinModificationTopics
         */
        public fun onModification()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1010 bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

         *
         * If target is...
         *
         * <ul>
         *     <li>a directory, then its contents are removed recursively,</li>
         *     <li>a symlink pointing to an existing directory, then either the linked directory's
         *     contents are removed recursively (if {@code followSymlinks} is {@code true}),
         *     or the link is removed and a new directory is created (if {@code followSymlinks}
         *     is {@code false}),</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/cache/CacheConfigurations.java

    @HasInternalProtocol
    @Incubating
    public interface CacheConfigurations {
    
        /**
         * Configures caching for wrapper distributions that are released Gradle versions.  By default, released
         * distributions are removed after 30 days of not being used.
         */
        void releasedWrappers(Action<? super CacheResourceConfiguration> cacheConfiguration);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 20:02:29 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRulePostProcess.java

                String formattedLeft = CollectionUtils.join("\n", keptAccessors.keySet());
                throw new RuntimeException("The following accessors were upgraded, but didn't match any removed/changed method:\n\n" + formattedLeft);
            }
    
            // Find accessors that were removed but shouldn't be
            Map<AccessorKey, ReplacedAccessor> removedAccessors = new HashMap<>(oldAccessorsOfUpgradedProperties);
            removedAccessors.entrySet().removeIf(e -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                }
                current.size -> {
                    val removed = previous.size - upToDatePrefix
                    when {
                        removed == 1 -> "init script '${displayNameOf(previous[upToDatePrefix].file)}' has been removed"
                        removed > 1 -> "init script '${displayNameOf(previous[upToDatePrefix].file)}' and ${removed - 1} more have been removed"
                        else -> null
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginGradlePluginCrossVersionSmokeTest.kt

                executer.expectDocumentedDeprecationWarning("The AbstractCompile.destinationDir property has been deprecated. This is scheduled to be removed in Gradle 9.0. Property was automatically upgraded to the lazy version. Please use the destinationDirectory property instead. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_7.html#...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:39:25 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. build/pause/CHANGELOG.md

    # 3.9
    
    * Unsupported Windows Semi-Annual Channel container images removed (OS Versions removed: 20H2). ([#112924](https://github.com/kubernetes/kubernetes/pull/112924), [@marosset](https://github.com/marosset))
    
    # 3.8
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. releasenotes/notes/drop-default-tracing.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
      - |
        **Removed** default tracing configuration that enables tracing to `zipkin.istio-system.svc`. See upgrade notes for more information.
    upgradeNotes:
      - title: Default tracing to `zipkin.istio-system.svc` removed
        content: |
          In previous versions of Istio, tracing was automatically configured to send traces to `zipkin.istio-system.svc`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 934 bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBindings.java

            reference.index.put(new NodeAtState(node.getPath(), binding.predicate.getState()), reference.owner);
        }
    
        public void remove(ModelNodeInternal node) {
            untypedPathReferences.removeNode(node);
            typedPathReferences.removeNode(node);
            scopeReferences.removeNodeFromScope(node.getPath(), node);
            scopeReferences.removeNodeFromScope(node.getPath().getParent(), node);
            rulesBySubject.nodeRemoved(node);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                ),
                equalTo("init script 'removed.init.gradle.kts' has been removed")
            )
        }
    
        @Test
        fun `removed init scripts are reported`() {
            assertThat(
                invalidationReasonForInitScriptsChange(
                    from = listOf(
                        File("init.gradle.kts") to TestHashCodes.hashCodeFrom(1),
                        File("removed.init.gradle.kts") to TestHashCodes.hashCodeFrom(2),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top