Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 204 for circle (0.18 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ModuleVersionNotFoundExceptionTest.groovy

            def versions = [
                    rejectedByAttributes('1.1', [color: ['red', 'red', true], shape: ['square', 'circle', false]]),
                    rejectedByAttributes('1.0', [color: ['red', 'green', false], shape: ['square', 'circle', false]]),
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ComponentAttributesDynamicVersionIntegrationTest.groovy

      - 1.1:
          - Attribute 'color' didn't match. Requested 'green', was: 'blue'
          - Attribute 'shape' matched. Requested 'circle', was: 'circle'
      - 1.0:
          - Attribute 'color' didn't match. Requested 'green', was: 'red'
          - Attribute 'shape' didn't match. Requested 'circle', was: 'square'""")
        }
    
        static Closure<String> latestNotation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                            .text("Difference");
                                i().classAttr("fa fa-info-circle").text(" ").end()
                        .end();
                        div().classAttr("col p-0")
                            .attr("data-toggle", "tooltip")
                            .style("font-size: smaller")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/garbagecollector.go

    		deps := item.getDependents()
    		for _, dep := range deps {
    			if dep.isDeletingDependents() {
    				// this circle detection has false positives, we need to
    				// apply a more rigorous detection if this turns out to be a
    				// problem.
    				// there are multiple workers run attemptToDeleteItem in
    				// parallel, the circle detection can fail in a race condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. test/typeparam/list2.go

    func checkListPointers[T any](l *_List[T], es []*_Element[T]) {
    	root := &l.root
    
    	if !checkListLen(l, len(es)) {
    		return
    	}
    
    	// zero length lists must be the zero value or properly initialized (sentinel circle)
    	if len(es) == 0 {
    		if l.root.next != nil && l.root.next != root || l.root.prev != nil && l.root.prev != root {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        const elem = document.getElementById(name);
        if (!elem) {
          throw 'element not found: ' + name
        }
        return elem;
      }
    
      function makeColor(index) {
        // Rotate hue around a circle. Multiple by phi to spread things
        // out better. Use 50% saturation to make subdued colors, and
        // 80% lightness to have good contrast with black foreground text.
        const PHI = 1.618033988;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/go/printer/printer_test.go

    // is incorrect.
    func TestBadComments(t *testing.T) {
    	t.Parallel()
    	const src = `
    // first comment - text and position changed by test
    package p
    import "fmt"
    const pi = 3.14 // rough circle
    var (
    	x, y, z int = 1, 2, 3
    	u, v float64
    )
    func fibo(n int) {
    	if n < 2 {
    		return n /* seed values */
    	}
    	return fibo(n-1) + fibo(n-2)
    }
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. src/os/exec/exec.go

    	if overage := len(p) - w.N; overage > 0 {
    		p = p[overage:]
    		w.skipped += int64(overage)
    	}
    	p = w.fill(&w.suffix, p)
    
    	// w.suffix is full now if p is non-empty. Overwrite it in a circle.
    	for len(p) > 0 { // 0, 1, or 2 iterations.
    		n := copy(w.suffix[w.suffixOff:], p)
    		p = p[n:]
    		w.skipped += int64(n)
    		w.suffixOff += n
    		if w.suffixOff == w.N {
    			w.suffixOff = 0
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    christiansburg.museum christmas chrome chtr.k12.ma.us chu.jp chungbuk.kr chungnam.kr chuo.chiba.jp chuo.fukuoka.jp chuo.osaka.jp chuo.tokyo.jp chuo.yamanashi.jp church ci ci.it ciao.jp ciencia.bo cieszyn.pl cim.br cincinnati.museum cinema.museum cipriani circle circus.museum cisco ciscofreak.com cistron.nl citadel citi citic city city.hu cityeats civilaviation.aero civilisation.museum civilization.museum civilwar.museum ck.ua cl cl.it claims clan.rip cleaning clerk.app clerkstage.app cleverapps.io click clicketcloud.com...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/initorder.go

    		// if n still depends on other nodes, we have a cycle
    		if n.ndeps > 0 {
    			cycle := findPath(check.objMap, n.obj, n.obj, make(map[Object]bool))
    			// If n.obj is not part of the cycle (e.g., n.obj->b->c->d->c),
    			// cycle will be nil. Don't report anything in that case since
    			// the cycle is reported when the algorithm gets to an object
    			// in the cycle.
    			// Furthermore, once an object in the cycle is encountered,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top