Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 912 for cleaned (0.16 sec)

  1. common/scripts/kind_provisioner.sh

    # This function returns 0 when everything goes well, or 1 otherwise
    # If Kind cluster was already created then it would be cleaned up in case of errors
    function setup_kind_cluster() {
      local NAME="${1:-istio-testing}"
      local IMAGE="${2:-"${DEFAULT_KIND_IMAGE}"}"
      local CONFIG="${3:-}"
      local NOMETALBINSTALL="${4:-}"
      local CLEANUP="${5:-true}"
    
      check_default_cluster_yaml
    
      # Delete any previous KinD cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  7. 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)
  8. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

        # model and saving the output quantized model. These two member
        # attributes can be used to specify the paths for such models,
        # respectively. These paths will be cleaned up after each test case.
        self._input_saved_model_path = self.create_tempdir('input').full_path
        self._output_saved_model_path = self.create_tempdir('output').full_path
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    ----
    $ gradle -q taskX
    include::{snippetsPath}/tasks/finalizersWithFailure/tests-groovy/taskFinalizersWithFailureGroovy.out[]
    ----
    ====
    
    Finalizer tasks are useful when the build creates a resource that must be cleaned up, regardless of whether the build fails or succeeds.
    An example of such a resource is a web container that is started before an integration test task and must be shut down, even if some tests fail.
    
    [[sec:skipping_tasks]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top