Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 198 for spanOf (0.16 sec)

  1. releasenotes/notes/48471.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 48336
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 21:27:13 UTC 2023
    - 162 bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/ProgressLogEventGeneratorTest.groovy

                event.spans.size() == 1 && event.spans[0].text == toNative('task2\n')
            })
            1 * target.onOutput({ StyledTextOutputEvent event ->
                event.spans.size() == 3 &&
                    event.spans[0].text == toNative('task1 ') &&
                    event.spans[1].text == toNative('task1-done') &&
                    event.spans[2].text == toNative('\n')
            })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. pkg/ctrlz/topics/assets/templates/mem.html

            <th>Value</th>
            <th>Description</th>
        </tr>
        </thead>
        <tbody>
        <tr>
            <td>HeapInuse</td>
            <td id="HeapInuse">{{.HeapInuse}} bytes</td>
            <td>Bytes in in-use spans.</td>
        </tr>
    
        <tr>
            <td>Total Alloc</td>
            <td id="TotalAlloc">{{.TotalAlloc}} bytes</td>
            <td>Cumulative bytes allocated for heap objects.</td>
        </tr>
    
        <tr>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/tests/unit/test_productpage.py

            # and the test will fail.
            expected_headers = {
                'x-request-id': '34eeb41d-d267-9e49-8b84-dde403fc5b72',
                'x-b3-traceid': '80f198ee56343ba864fe8b2a57d3eff7',
                'x-b3-spanid': 'e457b5a2e4d86bd1',
                'x-b3-sampled': '1',
                'sw8': '40c7fdf104e3de67'
            }
            m.get("http://reviews:9080/reviews/%d" % product_id, text='{}',
                  request_headers=expected_headers)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/LoggingBackedStyledTextOutputTest.groovy

            then:
            1 * listener.onOutput(!null) >> { args ->
                def event = args[0]
                assert event.spans.size() == 2
                assert event.spans[0].style == Header
                assert event.spans[0].text == 'header'
                assert event.spans[1].style == Normal
                assert event.spans[1].text == toNative('normal\n')
            }
            0 * listener._
        }
    
        def ignoresEmptySpans() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/MultiInputStreamTest.java

        assertEquals(150, result.length);
      }
    
      private void joinHelper(Integer... spans) throws Exception {
        List<ByteSource> sources = Lists.newArrayList();
        int start = 0;
        for (Integer span : spans) {
          sources.add(newByteSource(start, span));
          start += span;
        }
        ByteSource joined = ByteSource.concat(sources);
        assertTrue(newByteSource(0, start).contentEquals(joined));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4.groovy

                    })
                    return result
                }
    
                public func getLongMessage() -> String {
                    return """
                            When you write a string that spans multiple
                            lines make sure you start its content on a
                            line all of its own, and end it with three
                            quotes also on a line of their own.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/source/PrintStreamLoggingSystemTest.groovy

            stream.println('info')
    
            then:
            1 * listener.onOutput({ it instanceof LogLevelChangeEvent && it.newLogLevel == LogLevel.INFO })
            1 * listener.onOutput({ it instanceof StyledTextOutputEvent && it.spans[0].text == withEOL('info') })
            original.toString() == ''
            0 * listener._
        }
    
        def fillsInEventDetails() {
            given:
            currentBuildOperationRef.set(new DefaultBuildOperationRef(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompilerDaemonFailureIntegrationTest.groovy

            def outputProgress = compileJavaOperation.progress(StyledTextOutputEvent)
            // Output may come in different orders, so we just check that all the expected messages are there.
            def text = outputProgress*.details.spans*.text.flatten().join()
            text.count("Unrecognized option: --not-a-real-argument") == 1
            text.count("Error: Could not create the Java Virtual Machine.") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/global_test.go

    		t.Fatalf("could not build target: %v\n%s", err, out)
    	}
    
    	// Check destination to see if scanf code was included.
    	cmd = testenv.Command(t, testenv.GoToolPath(t), "tool", "nm", dst)
    	out, err = cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("could not read target: %v", err)
    	}
    	if bytes.Contains(out, []byte("scanInt")) {
    		t.Fatalf("scanf code not removed from helloworld")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top