Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for cleanBar (0.5 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/DestroyerTaskCommandLineOrderIntegrationTest.groovy

            def foo = subproject(':foo')
            def bar = subproject(':bar')
    
            def cleanBar = bar.task('cleanBar').destroys('build/bar')
            def cleanFoo = foo.task('cleanFoo').destroys('build/foo').finalizedBy(cleanBar)
            def clean = rootBuild.task('clean').dependsOn(cleanFoo).dependsOn(cleanBar)
            def generateFoo = foo.task('generateFoo').outputs('build/foo')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 14:13:02 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

            def foo = subproject(':foo')
            def bar = subproject(':bar')
    
            def cleanFoo = foo.task('cleanFoo').destroys('build/foo')
            def cleanBar = bar.task('cleanBar').destroys('build/bar')
            def clean = rootBuild.task('clean').dependsOn(cleanFoo).dependsOn(cleanBar)
            def generateFoo = foo.task('generateFoo').produces('build/foo', type)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. pkg/controller/certificates/cleaner/cleaner.go

    limitations under the License.
    */
    
    // Package cleaner implements an automated cleaner that does garbage collection
    // on CSRs that meet specific criteria. With automated CSR requests and
    // automated approvals, the volume of CSRs only increases over time, at a rapid
    // rate if the certificate duration is short.
    package cleaner
    
    import (
    	"context"
    	"crypto/x509"
    	"encoding/pem"
    	"fmt"
    	"time"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/clean/clean.go

    			base.Error(err)
    		}
    	}
    }
    
    var cleaned = map[*load.Package]bool{}
    
    // TODO: These are dregs left by Makefile-based builds.
    // Eventually, can stop deleting these.
    var cleanDir = map[string]bool{
    	"_test": true,
    	"_obj":  true,
    }
    
    var cleanFile = map[string]bool{
    	"_testmain.go": true,
    	"test.out":     true,
    	"build.out":    true,
    	"a.out":        true,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CertificateChainCleanerTest.kt

            .build()
        val cleaner = get(root.certificate)
        assertThat(cleaner.clean(list(root), "hostname")).isEqualTo(list(root))
      }
    
      @Test
      fun normalizeUnknownSelfSignedCertificate() {
        val root =
          HeldCertificate.Builder()
            .serialNumber(1L)
            .build()
        val cleaner = get()
        assertFailsWith<SSLPeerUnverifiedException> {
          cleaner.clean(list(root), "hostname")
        }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. pkg/controller/bootstrap/tokencleaner_test.go

    		cleaner.processNextWorkItem(context.TODO())
    		verifyActions(t, expected, cl.Actions())
    	}
    	// token has not expired currently
    	verifyFunc()
    
    	if cleaner.queue.Len() != 0 {
    		t.Errorf("not using the queue, the length should be 0, now: %v", cleaner.queue.Len())
    	}
    
    	var conditionFunc = func() (bool, error) {
    		if cleaner.queue.Len() == 1 {
    			return true, nil
    		}
    		return false, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/OutputsCleanerTest.groovy

            }
    
            !subDir.exists()
            !outputDir.exists()
            cleaner.didWork
        }
    
        private void cleanupOutput(File... files)  {
            for (File file : files) {
                cleaner.cleanupOutput(file, file.directory ? FileType.Directory : FileType.RegularFile)
            }
            cleaner.cleanupDirectories()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. tools/istio-clean-iptables/pkg/cmd/cleanup_test.go

    			tt.config(cfg)
    
    			ext := &dep.DependenciesStub{}
    			iptStub, _ := ext.DetectIptablesVersion(false)
    			ip6tStub, _ := ext.DetectIptablesVersion(true)
    			cleaner := NewIptablesCleaner(cfg, &iptStub, &ip6tStub, ext)
    
    			cleaner.Run()
    
    			compareToGolden(t, tt.name, ext.ExecutedAll)
    
    			expectedExecutedNormally := []string{"iptables-save", "ip6tables-save"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/namespace-role-bindings.yaml

        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:token-cleaner
        namespace: kube-system
      roleRef:
        apiGroup: rbac.authorization.k8s.io
        kind: Role
        name: system:controller:token-cleaner
      subjects:
      - kind: ServiceAccount
        name: token-cleaner
        namespace: kube-system
    kind: List
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 08 16:15:52 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  10. platforms/ide/base-ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/IdePluginTest.groovy

            Task worker = project.tasks['generateXml']
            Task ideTask = project.tasks['testIde']
            ideTask.taskDependencies.getDependencies(ideTask) == [worker] as Set
    
            Task cleaner = project.tasks['cleanGenerateXml']
            cleaner instanceof Delete
        }
    }
    
    class TestIdePlugin extends IdePlugin {
        @Override protected String getLifecycleTaskName() {
            return 'testIde'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top