Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for createFor (0.17 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

        @Requires(UnitTestPreconditions.Symlinks)
        def "a task that writes into a symlink that overlaps with output of currently running task is not started"() {
            given:
            def taskOutput = file("outputDir").createDir()
            def symlink = file("symlink")
            symlink.createLink(taskOutput)
    
            and:
            Task a = task("a", type: AsyncWithOutputDirectory)
            _ * a.outputDirectory >> taskOutput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            where:
            terse << [true, false]
        }
    
        def "can fetch key from different keyserver"() {
            def keyring = newKeyRing()
            def secondServer = new KeyServer(temporaryFolder.createDir("keyserver-${UUID.randomUUID()}"))
            secondServer.registerPublicKey(keyring.publicKey)
            def pkId = toHexString(keyring.publicKey.fingerprint)
            secondServer.start()
            createMetadataFile {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: during the preflight check "CreateJob" of "kubeadm upgrade", check if there are no nodes where a Pod can schedule. If there are none, show a warning and skip this preflight check. This can happen in single node clusters where the only node was drained. ([#124503](https://github.com/...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    // transitions are designed to cope with this, however performance could be
    // lower as these two active controllers will step on each other toes
    // frequently.
    //
    // This controller supports pre-bound (by the creator) objects in both
    // directions: a PVC that wants a specific PV or a PV that is reserved for a
    // specific PVC.
    //
    // The binding is two-step process. PV.Spec.ClaimRef is modified first and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top