Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 640 for span1 (0.04 sec)

  1. test-site/public/index.html

    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
    <script src="/javascripts/suggestor.js"></script>
    <div class="container">
        <div class="row" style="margin-top:100px;">
            <div class="span1" style="text-align:center;">
                <div class="input">
                    <input type="text" name="query" maxlength="1000" size="50" value="" id="contentQuery" class="query"
                           autocomplete="off">
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/Span.java

    import com.google.common.base.Objects;
    
    import java.io.Serializable;
    
    public class Span implements Serializable {
        private final Style style;
        private final String text;
    
        public Span(Style style, String text) {
            this.style = style;
            this.text = text;
        }
    
        public Span(String text) {
            this(Style.NORMAL, text);
        }
    
        public Style getStyle() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/StyledTextOutputEvent.java

            for (Span span : spans) {
                output.style(span.style);
                output.text(span.text);
            }
        }
    
        @Override
        public LogEventLevel getLevel() {
            return LogLevelConverter.convert(getLogLevel());
        }
    
        public static class Span implements org.gradle.internal.logging.events.operations.StyledTextBuildOperationProgressDetails.Span {
            private final String text;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. src/runtime/mcentral.go

    	// unswept set and pushes spans that are still in-use on the
    	// swept set. Likewise, allocating an in-use span pushes it
    	// on the swept set.
    	//
    	// Some parts of the sweeper can sweep arbitrary spans, and hence
    	// can't remove them from the unswept set, but will add the span
    	// to the appropriate swept list. As a result, the parts of the
    	// sweeper and mcentral that do consume from the unswept list may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultRedrawableLabel.java

        public void setText(String text) {
            this.spans = Collections.singletonList(new StyledTextOutputEvent.Span(text));
        }
    
        @Override
        public void setText(StyledTextOutputEvent.Span span) {
            this.spans = Collections.singletonList(span);
        }
    
        @Override
        public void setText(List<StyledTextOutputEvent.Span> spans) {
            this.spans = spans;
        }
    
        public Cursor getWritePosition() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/TestStyledLabel.groovy

        }
    
        @Override
        void setText(StyledTextOutputEvent.Span span) {
            throw new UnsupportedOperationException()
        }
    
        @Override
        void setText(List<StyledTextOutputEvent.Span> spans) {
            String text = ""
            for (StyledTextOutputEvent.Span span : spans) {
                stringToStyleMap.put(span.text, span.style)
                text += span.text
            }
            setText(text)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingBackedStyledTextOutput.java

            buffer.append(endOfLine);
            spans.add(new StyledTextOutputEvent.Span(this.style, buffer.toString()));
            buffer.setLength(0);
            OperationIdentifier buildOperationId = CurrentBuildOperationRef.instance().getId();
            listener.onOutput(new StyledTextOutputEvent(clock.getCurrentTime(), category, logLevel, buildOperationId, spans));
            spans = new ArrayList<StyledTextOutputEvent.Span>();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. tests/integration/telemetry/tracing/tracing.go

    		t.Logf("got span %+v, want span %+v", got, want)
    		return false
    	}
    	if len(got.ChildSpans) < len(want.ChildSpans) {
    		t.Logf("got %d child spans from, want %d child spans, maybe trace has not be fully reported",
    			len(got.ChildSpans), len(want.ChildSpans))
    		return false
    	} else if len(got.ChildSpans) > len(want.ChildSpans) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/serializer/StyledTextOutputEventSerializerTest.groovy

                new ListSerializer<StyledTextOutputEvent.Span>(
                    new SpanSerializer(serializerFactory.getSerializerFor(StyledTextOutput.Style.class))))
        }
    
        def "can serialize StyledTextOutputEvent messages"() {
            given:
            List spans = [new StyledTextOutputEvent.Span(StyledTextOutput.Style.Description, "description"),
                          new StyledTextOutputEvent.Span(StyledTextOutput.Style.Error, "error")]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    	if span.list != list {
    		print("runtime: failed mSpanList.remove span.npages=", span.npages,
    			" span=", span, " prev=", span.prev, " span.list=", span.list, " list=", list, "\n")
    		throw("mSpanList.remove")
    	}
    	if list.first == span {
    		list.first = span.next
    	} else {
    		span.prev.next = span.next
    	}
    	if list.last == span {
    		list.last = span.prev
    	} else {
    		span.next.prev = span.prev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top