Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,119 for removePod (0.36 sec)

  1. pkg/kubelet/config/config.go

    		for _, value := range update.Pods {
    			if existing, found := pods[value.UID]; found {
    				// this is a delete
    				delete(pods, value.UID)
    				removePods = append(removePods, existing)
    				continue
    			}
    			// this is a no-op
    		}
    
    	case kubetypes.SET:
    		klog.V(4).InfoS("Setting pods for source", "source", source)
    		s.markSourceSet(source)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. pkg/config/analysis/incluster/controller.go

    			key := status.ResourceFromMetadata(m.Resource.Metadata)
    			index[key] = append(index[key], m)
    		}
    		// if we previously had a message that has been removed, ensure it is removed
    		// TODO: this creates a state destruction problem when istiod crashes
    		// in that old messages may not be removed.  Not sure how to fix this
    		// other than write every object's status every loop.
    		for _, a := range res.ExecutedAnalyzers {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

    @LocalOnly
    class ChangesByGradleFileWatchingIntegrationTest extends AbstractFileSystemWatchingIntegrationTest implements DirectoryBuildCacheFixture {
    
        def "detects when outputs are removed for tasks without sources"() {
            buildFile << """
                apply plugin: 'base'
    
                abstract class Producer extends DefaultTask {
                    @InputDirectory
                    @SkipWhenEmpty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. releasenotes/notes/48780.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 47423
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 216 bytes
    - Viewed (0)
  5. releasenotes/notes/no-1p-jwt.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    releaseNotes:
      - |
        **Removed** the `first-party-jwt` legacy option for `values.global.jwtPolicy`. Support for the more secure `third-party-jwt`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 02:55:50 UTC 2024
    - 288 bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    		jm.expectations.ExpectDeletions(logger, jobKey, len(podsToDelete))
    		removed, err := jm.deleteJobPods(ctx, job, jobKey, podsToDelete)
    		active -= removed
    		if feature.DefaultFeatureGate.Enabled(features.JobPodReplacementPolicy) {
    			*jobCtx.terminating += removed
    		}
    		return active, metrics.JobSyncActionPodsDeleted, err
    	}
    
    	var terminating int32 = 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/internal/provider/views/ListPropertyListView.java

            delegate.set(list);
        }
    
        @Override
        public E remove(int index) {
            List<E> list = new ArrayList<>(delegate.get());
            E removed = list.remove(index);
            delegate.set(list);
            return removed;
        }
    
        @Override
        public int size() {
            return delegate.get().size();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AsciidoctorPluginSmokeTest.groovy

                runner.expectLegacyDeprecationWarningIf(
                    versionNumber.major < 4,
                    "The org.gradle.util.CollectionUtils type has been deprecated. " +
                        "This is scheduled to be removed in Gradle 9.0. " +
                        "Consult the upgrading guide for further information: ${BASE_URL}/userguide/upgrading_version_8.html#org_gradle_util_reports_deprecations"
                )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:39:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. cmd/kube-apiserver/app/options/options.go

    		"DEPRECATED: kubelet port.")
    	fs.MarkDeprecated("kubelet-port", "kubelet-port is deprecated and will be removed.")
    
    	fs.UintVar(&s.KubeletConfig.ReadOnlyPort, "kubelet-read-only-port", s.KubeletConfig.ReadOnlyPort,
    		"DEPRECATED: kubelet read only port.")
    	fs.MarkDeprecated("kubelet-read-only-port", "kubelet-read-only-port is deprecated and will be removed.")
    
    	fs.DurationVar(&s.KubeletConfig.HTTPTimeout, "kubelet-timeout", s.KubeletConfig.HTTPTimeout,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/cuda.packages.txt

    # CuDNN: https://docs.nvidia.com/deeplearning/sdk/cudnn-install/index.html#ubuntu-network-installation
    libcudnn9-dev-cuda-12=9.1.1.17-1
    libcudnn9-cuda-12=9.1.1.17-1
    
    # This can be removed once NVIDIA publishes a cuda-12.3.2 Docker image.
    # For now it ensures that we install at least version 12.3.107 of PTXAS,
    # since 12.3.103 has a bug.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 24 17:22:37 UTC 2024
    - 366 bytes
    - Viewed (0)
Back to top