Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,176 for efter (0.71 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/cache/CacheConfigurations.java

    @HasInternalProtocol
    @Incubating
    public interface CacheConfigurations {
    
        /**
         * Configures caching for wrapper distributions that are released Gradle versions.  By default, released
         * distributions are removed after 30 days of not being used.
         */
        void releasedWrappers(Action<? super CacheResourceConfiguration> cacheConfiguration);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 20:02:29 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/os/executable_test.go

    		fmt.Fprintf(os.Stderr, "failed to remove executable: %v\n", err)
    		os.Exit(1)
    	}
    
    	after, err := os.Executable()
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "failed to read executable name after deletion: %v\n", err)
    		os.Exit(1)
    	}
    
    	if before != after {
    		fmt.Fprintf(os.Stderr, "before and after do not match: %v != %v\n", before, after)
    		os.Exit(1)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. pkg/queue/delay_test.go

    		return nil
    	}, 100*time.Millisecond)
    	dq.Push(func() error {
    		mu.Lock()
    		defer mu.Unlock()
    		t0 = time.Now()
    		return nil
    	})
    
    	select {
    	case <-time.After(500 * time.Millisecond):
    	case <-done:
    	}
    
    	mu.Lock()
    	if !(t2.After(t1) && t1.After(t0)) {
    		t.Errorf("expected jobs to be run in order based on delays")
    	}
    	mu.Unlock()
    }
    
    func TestDelayQueuePushBeforeRun(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 06:27:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/versions/features.go

    const Future = ""
    
    // AtLeast reports whether the file version v comes after a Go release.
    //
    // Use this predicate to enable a behavior once a certain Go release
    // has happened (and stays enabled in the future).
    func AtLeast(v, release string) bool {
    	if v == Future {
    		return true // an unknown future version is always after y.
    	}
    	return Compare(Lang(v), Lang(release)) >= 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/schedule_test.go

    			fi = i
    		}
    	}
    	if !(ai < bi && bi < ci && ci < di && di < ei && ei < fi) {
    		t.Logf("Func: %s", fun.f)
    		t.Errorf("carry chain order is wrong: got %v, want V%d after V%d after V%d after V%d after V%d after V%d,",
    			fun.f.Blocks[0], fun.values["A1"].ID, fun.values["A1carry"].ID, fun.values["A1Carryvalue"].ID,
    			fun.values["A2"].ID, fun.values["A2carry"].ID, fun.values["A2Carryvalue"].ID)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 01:46:00 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/tests/commandLineCredentials.out

    Enter username:
    Enter password:
    Welcome, secret-user!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 79 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/groovy/build.gradle

    // tag::after-evaluate[]
    gradle.beforeProject { project ->
        project.ext.set("hasTests", false)
    }
    
    gradle.afterProject { project ->
        if (project.ext.has("hasTests") && project.ext.get("hasTests") as Boolean) {
            def projectString = project.toString()
            println "Adding test task to $projectString"
            project.task('test') {
                doLast {
                    println "Running tests for $projectString"
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 483 bytes
    - Viewed (0)
  8. src/time/sleep.go

    	}
    	return stopTimer(t)
    }
    
    // NewTimer creates a new Timer that will send
    // the current time on its channel after at least duration d.
    //
    // Before Go 1.23, the garbage collector did not recover
    // timers that had not yet expired or been stopped, so code often
    // immediately deferred t.Stop after calling NewTimer, to make
    // the timer recoverable when it was no longer needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/runtime/mgclimit_test.go

    		fill := (2*time.Millisecond + 1*time.Microsecond) * procs
    		l.Update(advance(time.Duration(factor * float64(fill-procs) / procs)))
    		if l.Fill() != procs {
    			t.Fatalf("expected fill %d cpu-ns from draining after a GC started, got fill of %d cpu-ns", procs, l.Fill())
    		}
    
    		// Drain to zero for the rest of the test.
    		l.Update(advance(2 * procs * CapacityPerProc))
    		if l.Fill() != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 16:02:20 UTC 2022
    - 9K bytes
    - Viewed (0)
  10. test/for.go

    	}
    	assertequal(i, 4, " incorrect index value after range loop")
    
    	i = 0
    	var a1 [5]struct{}
    	for i = range a1 {
    		a1[i] = struct{}{}
    	}
    	assertequal(i, 4, " incorrect index value after array with zero size elem range clear")
    
    	i = 0
    	var a2 [5]int
    	for i = range a2 {
    		a2[i] = 0
    	}
    	assertequal(i, 4, " incorrect index value after array range clear")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 10 16:36:41 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top