Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 712 for removeable (0.15 sec)

  1. pkg/kubelet/pod_container_deletor.go

    func (p *podContainerDeletor) deleteContainersInPod(filterContainerID string, podStatus *kubecontainer.PodStatus, removeAll bool) {
    	containersToKeep := p.containersToKeep
    	if removeAll {
    		containersToKeep = 0
    		filterContainerID = ""
    	}
    
    	for _, candidate := range getContainersToDeleteInPod(filterContainerID, podStatus, containersToKeep) {
    		select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/AbstractHasMultiValuesPropertyCollectionViewTest.groovy

            when:
            collection.add("third")
    
            then:
            property.get() == cast(["first", "second", "forth", "fifth", "third"])
            collection.size() == 5
    
            when:
            collection.removeAll(["first", "third", "forth"])
    
            then:
            property.get() == cast(["second", "fifth"])
            collection.size() == 2
    
            when:
            collection.addAll(["first", "third", "forth"])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http/BridgeInterceptor.kt

          if (responseBody != null) {
            val gzipSource = GzipSource(responseBody.source())
            val strippedHeaders =
              networkResponse.headers.newBuilder()
                .removeAll("Content-Encoding")
                .removeAll("Content-Length")
                .build()
            responseBuilder.headers(strippedHeaders)
            val contentType = networkResponse.header("Content-Type")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ExecutionTimeTaskConfigurationIntegrationTest.groovy

            "actions.set(0, anAction)"                                  | "Task.getActions().set(int, Object)"
            "actions.removeAll(actions)"                                | "Task.getActions().removeAll()"
            "actions.remove(actions[0])"                                | "Task.getActions().remove()"
            "actions.clear()"                                           | "Task.getActions().clear()"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    )
    
    func TestGetKubeConfigSpecsFailsIfCADoesntExists(t *testing.T) {
    	// Create temp folder for the test case (without a CA)
    	tmpdir := testutil.SetupTempDir(t)
    	defer os.RemoveAll(tmpdir)
    
    	// Creates an InitConfiguration pointing to the pkidir folder
    	cfg := &kubeadmapi.InitConfiguration{
    		ClusterConfiguration: kubeadmapi.ClusterConfiguration{
    			CertificatesDir: tmpdir,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/RuleManagerImplTest.java

            assertTrue(ruleManager.hasRule(rule2));
            assertTrue(ruleManager.hasRule(rule3));
    
            ruleManager.removeRule(rule2);
    
            assertFalse(ruleManager.hasRule(rule2));
            assertTrue(ruleManager.hasRule(rule3));
    
            ruleManager.removeRule(rule3);
    
            assertFalse(ruleManager.hasRule(rule2));
            assertFalse(ruleManager.hasRule(rule3));
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelOutputLocationCrossVersionSpec.groovy

               apply plugin: 'eclipse'
               eclipse {
                   classpath {
                       file {
                           whenMerged { classpath ->
                               classpath.entries.removeAll { it.kind == 'output' }
                           }
                       }
                   }
               }
            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/components/internal/ComponentReportRenderer.java

            result.addAll(sourceSets);
            result.removeAll(sourceSetRenderer.getItems());
            return result;
        }
    
       private Set<BinarySpec> collectAdditionalBinaries(Collection<BinarySpec> binaries) {
           Set<BinarySpec> result = Sets.newTreeSet(TypeAwareBinaryRenderer.SORT_ORDER);
           result.addAll(binaries);
           result.removeAll(binaryRenderer.getItems());
           return result;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 27 14:58:38 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceTest.groovy

            def fromCache = cache.load(key) { input ->
                throw new RuntimeException("That should never be called")
            }
    
            then:
            !fromCache
        }
    
        def "load reports recoverable error on http code #httpCode"(int httpCode) {
            expectError(httpCode, 'GET')
    
            when:
            cache.load(key) { input ->
                throw new RuntimeException("That should never be called")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ForwardingMultimap.java

        return delegate().remove(key, value);
      }
    
      @CanIgnoreReturnValue
      @Override
      public Collection<V> removeAll(@CheckForNull Object key) {
        return delegate().removeAll(key);
      }
    
      @CanIgnoreReturnValue
      @Override
      public Collection<V> replaceValues(@ParametricNullness K key, Iterable<? extends V> values) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 4.1K bytes
    - Viewed (0)
Back to top