Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,613 for cleaned (0.12 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaAnnotationProcessingIntegrationTest.groovy

            expect:
            succeeds "compileJava"
            file("build/generated-sources/TestAppHelper.java").text == 'class TestAppHelper {    String getValue() { return "greetings"; }}'
        }
    
        def "generated sources are cleaned up on full compilations"() {
            given:
            buildFile << """
                dependencies {
                    compileOnly project(":annotation")
                    annotationProcessor project(":processor")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. pkg/util/iptables/iptables_test.go

    		},
    	}
    	lockPath14x, lockPath16x := getLockPaths()
    	// the lockPath14x is a UNIX socket which is cleaned up automatically on close, but the
    	// lockPath16x is a plain file which is not cleaned up.
    	defer os.Remove(lockPath16x)
    	runner := newInternal(fexec, ProtocolIPv4, lockPath14x, lockPath16x)
    
    	err := runner.RestoreAll([]byte{}, NoFlushTables, RestoreCounters)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 46.3K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/extensions.kt

    /**
     * Define clean up rules for the project.
     * See https://www.jetbrains.com/help/teamcity/teamcity-data-clean-up.html#Clean-up+Rules
     *
     * @param historyDays days number of days to store build history .
     * @param artifactsDays number of days to store artifacts. In the stored history, artifacts older than this number will be cleaned up.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  4. cluster/gce/gci/audit_policy_test.go

    func init() {
    	// Register audit scheme to parse audit config.
    	auditinstall.Install(auditpkg.Scheme)
    }
    
    func TestCreateMasterAuditPolicy(t *testing.T) {
    	baseDir, err := os.MkdirTemp("", "configure-helper-test") // cleaned up by c.tearDown()
    	require.NoError(t, err, "Failed to create temp directory")
    
    	policyFile := filepath.Join(baseDir, "audit_policy.yaml")
    	c := ManifestTestCase{
    		t:                t,
    		kubeHome:         baseDir,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 9.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            disableProblemsApiCheck()
    
            executer.cleanup()
            m2.cleanupState()
    
            // Verify that the test (or fixtures) has cleaned up state correctly
            m2.assertNoLeftoverState()
        }
    
        private void recreateExecuter() {
            if (executor != null) {
                executor.cleanup()
            }
            executor = null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            dir.assertDoesNotExist()
    
            when:
            boolean didWork = deleter.deleteRecursively(dir)
    
            then:
            !didWork
        }
    
        def "didWork is false when nothing has been cleaned"() {
            given:
            TestFile emptyDir = tmpDir.getTestDirectory()
    
            when:
            boolean didWork = deleter.ensureEmptyDirectory(emptyDir)
    
            then:
            !didWork
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. src/path/filepath/match.go

    		return path
    	default:
    		return path[0 : len(path)-1] // chop off trailing separator
    	}
    }
    
    // cleanGlobPathWindows is windows version of cleanGlobPath.
    func cleanGlobPathWindows(path string) (prefixLen int, cleaned string) {
    	vollen := filepathlite.VolumeNameLen(path)
    	switch {
    	case path == "":
    		return 0, "."
    	case vollen+1 == len(path) && os.IsPathSeparator(path[len(path)-1]): // /, \, C:\ and C:/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    	if err != nil {
    		return err
    	}
    
    	// Ignore the Jobs that are already deleted or being deleted, or the ones that don't need clean up.
    	job, err := tc.jLister.Jobs(namespace).Get(name)
    
    	logger := klog.FromContext(ctx)
    	logger.V(4).Info("Checking if Job is ready for cleanup", "job", klog.KRef(namespace, name))
    
    	if errors.IsNotFound(err) {
    		return nil
    	}
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/join_test.go

    					data.cfg.ControlPlane.LocalAPIEndpoint.BindPort != 1234 {
    					t.Error("Invalid ControlPlane")
    				}
    			},
    		},
    		{
    			name: "control plane setting are cleaned up if --control-plane flag is not set",
    			flags: map[string]string{
    				options.ControlPlane:              "false",
    				options.APIServerAdvertiseAddress: "1.2.3.4",
    				options.APIServerBindPort:         "1.2.3.4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/prober_manager.go

    	// deleting cached results.
    	RemovePod(pod *v1.Pod)
    
    	// CleanupPods handles cleaning up pods which should no longer be running.
    	// It takes a map of "desired pods" which should not be cleaned up.
    	CleanupPods(desiredPods map[types.UID]sets.Empty)
    
    	// UpdatePodStatus modifies the given PodStatus with the appropriate Ready state for each
    	// container based on container running status, cached probe results and worker states.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top