Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for circle (0.16 sec)

  1. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    y="9" x="1"/></svg>',"more-vertical":'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="3" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="10" cy="17" r="2"/></svg>',more:'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="3" cy="10" r="2"/><circle cx="10" cy="10" r="2"/><circle cx="17" cy="10" r="2"/></svg>',move:'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><polygon...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

        font-size:1.1em;
        display:inline;
        font-weight:bold;
    }
    dl.name-value > dd {
        margin:0 0 0 1px;
        font-size:1.1em;
        display:inline;
    }
    /*
     * Styles for lists.
     */
    li.circle {
        list-style:circle;
    }
    ul.horizontal li {
        display:inline;
        font-size:0.9em;
    }
    div.inheritance {
        margin:0;
        padding:0;
    }
    div.inheritance div.inheritance {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    	margin-left: 1.25em;
    	margin-bottom: 0;
    	font-size: 1em;
    	/* Override nested font-size change */
    }
    
    ul.square li ul,
    ul.circle li ul,
    ul.disc li ul {
    	list-style: inherit;
    }
    
    ul.square {
    	list-style-type: square;
    }
    
    ul.circle {
    	list-style-type: circle;
    }
    
    ul.disc {
    	list-style-type: disc;
    }
    
    ul.no-bullet {
    	list-style: none;
    }
    
    /* Ordered Lists */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

          assertTrue(cycle.hasNext());
          assertEquals("b", cycle.next());
        }
      }
    
      public void testCycleOfTwoWithRemove() {
        Iterable<String> iterable = Lists.newArrayList("a", "b");
        Iterator<String> cycle = Iterators.cycle(iterable);
        assertTrue(cycle.hasNext());
        assertEquals("a", cycle.next());
        assertTrue(cycle.hasNext());
        assertEquals("b", cycle.next());
        assertTrue(cycle.hasNext());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer.go

    	// heapScanWork is the total heap scan work performed this cycle.
    	// stackScanWork is the total stack scan work performed this cycle.
    	// globalsScanWork is the total globals scan work performed this cycle.
    	//
    	// These are updated atomically during the cycle. Updates occur in
    	// bounded batches, since they are both written and read
    	// throughout the cycle. At the end of the cycle, heapScanWork is how
    	// much of the retained heap is scannable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    	// cycles ("C+n" above) and we only publish a cycle once all
    	// of the events from that cycle must be done. Specifically:
    	//
    	// Mallocs are accounted to cycle C+2.
    	// Explicit frees are accounted to cycle C+2.
    	// GC frees (done during sweeping) are accounted to cycle C+1.
    	//
    	// After mark termination, we increment the global heap
    	// profile cycle counter and accumulate the stats from cycle C
    	// into the active profile.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    // program.
    func GC() {
    	// We consider a cycle to be: sweep termination, mark, mark
    	// termination, and sweep. This function shouldn't return
    	// until a full cycle has been completed, from beginning to
    	// end. Hence, we always want to finish up the current cycle
    	// and start a new one. That means:
    	//
    	// 1. In sweep termination, mark, or mark termination of cycle
    	// N, wait until mark termination N completes and transitions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            then:
            ConfigurationCycleException e = thrown()
            e.message == TextUtil.toPlatformLineSeparators("""A cycle has been detected in model rule dependencies. References forming the cycle:
    foo
    \\- foo mutator
       \\- foo""")
        }
    
        def "only the elements actually forming the cycle are reported when configuration cycles are detected"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    	memoryLimitGoal atomic.Uint64
    
    	// assistTime is the time spent by the allocator scavenging in the last GC cycle.
    	//
    	// This is reset once a GC cycle ends.
    	assistTime atomic.Int64
    
    	// backgroundTime is the time spent by the background scavenger in the last GC cycle.
    	//
    	// This is reset once a GC cycle ends.
    	backgroundTime atomic.Int64
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    					t.Errorf("cycle %d: got NumFilterCalled=%d, want %d", cycle, fakePlugin.NumFilterCalled-prevNumFilterCalled, tt.expectedNumFilterCalled[cycle])
    				}
    				prevNumFilterCalled = fakePlugin.NumFilterCalled
    				if diff := cmp.Diff(tt.expected[cycle], candidates, cmp.AllowUnexported(candidate{})); diff != "" {
    					t.Errorf("cycle %d: unexpected candidates (-want, +got): %s", cycle, diff)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top