Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,504 for cleaned (0.12 sec)

  1. pkg/test/framework/resource/context.go

    	// Settings returns common settings
    	Settings() *Settings
    
    	// Cleanup will trigger the provided cleanup function after the test context
    	// completes. This is identical to CleanupStrategy(Always).
    	// This function may not (safely) access the test context.
    	Cleanup(fn func())
    
    	// CleanupConditionally will trigger a cleanup operation the test context
    	// completes, unless -istio.test.nocleanup is set. This is identical to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. src/packaging/rpm/init.d/fess

            exit 1
        fi
    }
    
    start() {
        checkJava
        [ -x $exec ] || exit 5
    
        # Ensure that the PID_DIR exists (it is cleaned at OS startup time)
        if [ -n "$PID_DIR" ] && [ ! -e "$PID_DIR" ]; then
            mkdir -p "$PID_DIR" && chown "$FESS_USER":"$FESS_GROUP" "$PID_DIR"
        fi
        if [ -n "$pidfile" ] && [ ! -e "$pidfile" ]; then
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. pkg/log/uds_test.go

    		if !reflect.DeepEqual(got, want) {
    			t.Errorf("received log messages, got %v want %v", got, want)
    		}
    	}
    
    	{
    		t.Log("test sending log with specified time")
    
    		// Clean up all the mssages, and log again. Check that buffer is cleaned up properly.
    		srv.messages = make([]string, 0)
    		yesterday := time.Now().Add(-time.Hour * 24).Truncate(time.Microsecond)
    		defaultScope.LogWithTime(InfoLevel, "test3", yesterday)
    		Sync()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 01:05:12 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/ClassPathToClassLoaderCache.java

     * reused, so they *must not* be cleared as long as a cached loader is in cache - once a classloader is discarded from the cache, it must be cleared using a cleanup strategy
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/topology_hints.go

    // ensures the Device Manager is consulted when Topology Aware Hints for each
    // container are created.
    func (m *ManagerImpl) GetTopologyHints(pod *v1.Pod, container *v1.Container) map[string][]topologymanager.TopologyHint {
    	// The pod is during the admission phase. We need to save the pod to avoid it
    	// being cleaned before the admission ended
    	m.setPodPendingAdmission(pod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/HandleStaleOutputsStepTest.groovy

        def afterExecutionState = Stub(AfterExecutionState) {
            getOutputFilesProducedByWork() >> outputFilesProducedByWork
        }
    
        def delegateResult = Mock(AfterExecutionResult)
    
        def "#description is cleaned up: #cleanedUp"() {
            def target = file("target")
            creator(target)
    
            when:
            def result = step.execute(work, context)
    
            then:
            result == delegateResult
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/artifact/testutils/TestFileManager.java

        }
    
        private void maybeWarnAboutCleanUp() {
            if (warnAboutCleanup) {
                System.out.println("[WARNING] TestFileManager from: " + callerInfo.getClassName() + " not cleaned up!");
            }
        }
    
        public void markForDeletion(File toDelete) {
            filesToDelete.add(toDelete);
            warnAboutCleanup = true;
        }
    
        public synchronized File createTempDir() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/metrics/metrics.go

    		},
    	)
    
    	ForceCleanedFailedVolumeOperationsTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Name:           forceCleanedFailedVolumeOperationsTotal,
    			Help:           "The number of volumes that were force cleaned after their reconstruction failed during kubelet startup. This includes both successful and failed cleanups.",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    	ForceCleanedFailedVolumeOperationsErrorsTotal = metrics.NewCounter(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 06 16:48:59 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. cni/test/install_cni.go

    			t.Logf("installer complete: %v", err)
    		} else {
    			t.Errorf("installer failed: %v", err)
    		}
    	}
    
    	if cleanErr := installer.Cleanup(); cleanErr != nil {
    		t.Errorf("Error during test CNI installer cleanup, error was: %s", cleanErr)
    	}
    }
    
    // checkResult checks if resultFile is equal to expectedFile at each tick until timeout
    func checkResult(result, expected string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. pilot/test/xds/fake.go

    		},
    		InitialDiscoveryRequests: initialWatch,
    	})
    	if err != nil {
    		f.t.Fatalf("Error connecting: %v", err)
    	}
    	f.t.Cleanup(func() {
    		adscConn.Close()
    	})
    	return adscConn
    }
    
    // Connect starts an ADS connection to the server using adsc. It will automatically be cleaned up when the test ends
    // watch can be configured to determine the resources to watch initially, and wait can be configured to determine what
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top