Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,613 for cleaned (0.2 sec)

  1. pilot/pkg/features/pilot.go

    		"The amount of time an auto-registered workload can remain disconnected from all Pilot instances before the "+
    			"associated WorkloadEntry is cleaned up.").Get()
    
    	WorkloadEntryHealthChecks = env.Register("PILOT_ENABLE_WORKLOAD_ENTRY_HEALTHCHECKS", true,
    		"Enables automatic health checks of WorkloadEntries based on the config provided in the associated WorkloadGroup").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

            NtlmPasswordAuthenticator cloned = new NtlmPasswordAuthenticator();
            cloneInternal(cloned, this);
            return cloned;
        }
    
    
        protected static void cloneInternal ( NtlmPasswordAuthenticator cloned, NtlmPasswordAuthenticator toClone ) {
            cloned.domain = toClone.domain;
            cloned.username = toClone.username;
            cloned.password = toClone.password;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 18.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     *     </li>
     * </ul>
     *
     * <p>Additional states might be added later, for example, there might be provider implementations that return the "destroyed" content (ie after it has been cleaned/deleted/stopped/uninstalled),
     * or in "started" state (eg where the value represents an application that has been started and is ready to use, say for testing).
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

                "Please use the archiveFileName property instead. " +
                String.format(RECOMMENDATION, "information", dslReference)
        }
    
        def "createDefaultDeprecationId should return cleaned id"() {
            expect:
            createDefaultDeprecationId(input) == expected
    
            where:
            input                                                                           | expected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. pkg/kubelet/metrics/metrics.go

    	OrphanPodCleanedVolumes = metrics.NewGauge(
    		&metrics.GaugeOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           orphanPodCleanedVolumesKey,
    			Help:           "The total number of orphaned Pods whose volumes were cleaned in the last periodic sweep.",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    	// OrphanPodCleanedVolumes is number of times that removeOrphanedPodVolumeDirs failed.
    	OrphanPodCleanedVolumesErrors = metrics.NewGauge(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  6. src/encoding/xml/read_test.go

    didn&amp;#39;t know where to put the tab stops.  Another problem
    was that some of the code assumed that string byte
    offsets were the same as column offsets, which is only
    true if there are no tabs.
    
    In the process of fixing this, I cleaned up the arguments
    to Fold and ExpandTabs and renamed them Break and
    _ExpandTabs so that I could be sure that I found all the
    call sites.  I also wanted to verify that ExpandTabs was
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. pkg/registry/core/service/ipallocator/controller/repair.go

    	// Check for IPs that are left in the old set.  They appear to have been leaked.
    	stored.ForEach(func(ip net.IP) {
    		count, found := leaks[ip.String()]
    		switch {
    		case !found:
    			// flag it to be cleaned up after any races (hopefully) are gone
    			runtime.HandleError(fmt.Errorf("the cluster IP %s may have leaked: flagging for later clean up", ip))
    			count = numRepairsBeforeLeakCleanup - 1
    			fallthrough
    		case count > 0:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. src/encoding/json/stream_test.go

    			diff(t, []byte(have), []byte(want))
    			break
    		}
    	}
    }
    
    func TestEncoderErrorAndReuseEncodeState(t *testing.T) {
    	// Disable the GC temporarily to prevent encodeState's in Pool being cleaned away during the test.
    	percent := debug.SetGCPercent(-1)
    	defer debug.SetGCPercent(percent)
    
    	// Trigger an error in Marshal with cyclic data.
    	type Dummy struct {
    		Name string
    		Next *Dummy
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/types.go

    type ResetConfiguration struct {
    	metav1.TypeMeta
    
    	// CertificatesDir specifies the directory where the certificates are stored. If specified, it will be cleaned during the reset process.
    	CertificatesDir string
    
    	// CleanupTmpDir specifies whether the "/etc/kubernetes/tmp" directory should be cleaned during the reset process.
    	CleanupTmpDir bool
    
    	// CRISocket is used to retrieve container runtime info and used for the removal of the containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller_test.go

    	// Stop the controller and informer
    	testCancel()
    
    	// Wait for controller and informer to stop
    	wg.Wait()
    
    	// Ensure the event handler was cleaned up
    	require.Empty(t, informer.registrations)
    
    	verifyNoMoreEvents()
    }
    
    // Show an error is thrown informer isn't started when the controller runs
    func TestInformerNeverStarts(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top