Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 437 for tramps (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/tutorial/build-scan-trans-dependencies.png

    build-scan-trans-dependencies.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 633.7K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    SubstringMatcher TypeSafeDiagnosingMa TypeSafeMatcher constant-values.html Overview Package Class Use Tree Deprecated Index Help PREV NEXT FRAMES NO FRAMES All Classes Constant Field Values Contents Overview Package Class Use Tree Deprecated Index Help PREV NEXT FRAMES NO FRAMES All Classes deprecated-list.html Overview Package Class Use Tree Deprecated Index Help PREV NEXT FRAMES NO FRAMES All Classes Deprecated API Contents Deprecated Methods Deprecated Methods org.hamcrest.Matcher._dont_implement_Matcher___i...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tests/test_error_message.lit.pbtxt.debug.pbtxt

    traces: {
      key: "x@"
      value: {
        file_line_cols: {
          line: 1
          col:  1
        }
      }
    }
    traces: {
      key: "x_y_sum@"
      value: {
        file_line_cols: {
          line: 3
          col:  1
        }
        file_line_cols: {
          line: 4
          col:  1
        }
      }
    }
    traces: {
      key: "y@"
      value: {
        file_line_cols: {
          line: 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 16 00:15:24 UTC 2020
    - 444 bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt

        opcode = b0 and B0_MASK_OPCODE
        isFinalFrame = b0 and B0_FLAG_FIN != 0
        isControlFrame = b0 and OPCODE_FLAG_CONTROL != 0
    
        // Control frames must be final frames (cannot contain continuations).
        if (isControlFrame && !isFinalFrame) {
          throw ProtocolException("Control frames must be final.")
        }
    
        val reservedFlag1 = b0 and B0_FLAG_RSV1 != 0
        when (opcode) {
          OPCODE_TEXT, OPCODE_BINARY -> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/PushObserver.kt

     *  * [onHeaders] (unless canceled)
     *  * [onData] (optional sequence of data frames)
     *
     * As a stream ID is scoped to a single HTTP/2 connection, implementations which target multiple
     * connections should expect repetition of stream IDs.
     *
     * Return true to request cancellation of a pushed stream.  Note that this does not guarantee
     * future frames won't arrive on the stream ID.
     */
    interface PushObserver {
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. tests/integration/telemetry/tracing/zipkin/client_tracing_test.go

    						}
    						traces, err := tracing.GetZipkinInstance().QueryTraces(100,
    							fmt.Sprintf("server.%s.svc.cluster.local:80/*", appNsInst.Name()), "")
    						if err != nil {
    							return fmt.Errorf("cannot get traces from zipkin: %v", err)
    						}
    						if !tracing.VerifyEchoTraces(ctx, appNsInst.Name(), cluster.Name(), traces) {
    							return errors.New("cannot find expected traces")
    						}
    						return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. samples/open-telemetry/tracing/README.md

    ```yaml
    spec:
      ports:
        - name: grpc-otlp
          port: 4317
          protocol: TCP
          targetPort: 4317
    ```
    
    Otherwise the traces may not be reported.
    
    ## Update mesh config
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/emitter.go

    				frames     = make(map[string]format.Frame)
    				framesSize = 0
    			)
    			for i, ev := range sizes {
    				eventsSize += ev.Sz
    
    				// Add required stack frames. Note that they
    				// may already be in the map.
    				for _, id := range ev.Frames {
    					s := strconv.Itoa(id)
    					_, ok := frames[s]
    					if ok {
    						continue
    					}
    					f := allFrames[s]
    					frames[s] = f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  9. test/fixedbugs/issue21879.go

    	// "main.main".
    	println(caller().name())
    }
    
    func caller() call {
    	var pcs [3]uintptr
    	n := runtime.Callers(1, pcs[:])
    	frames := runtime.CallersFrames(pcs[:n])
    	frame, _ := frames.Next()
    	frame, _ = frames.Next()
    
    	return call{frame: frame}
    }
    
    type call struct {
    	frame runtime.Frame
    }
    
    func (c call) name() string {
    	return c.frame.Function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 18:35:24 UTC 2017
    - 658 bytes
    - Viewed (0)
  10. test/fixedbugs/issue34123.go

    //go:noinline
    func f() {
    	q := p
    	x = 11  // line 23
    	*q = 12 // line 24
    }
    func main() {
    	defer func() {
    		recover()
    		var pcs [10]uintptr
    		n := runtime.Callers(1, pcs[:])
    		frames := runtime.CallersFrames(pcs[:n])
    		for {
    			f, more := frames.Next()
    			if f.Function == "main.f" && f.Line != 24 {
    				panic(fmt.Errorf("expected line 24, got line %d", f.Line))
    			}
    			if !more {
    				break
    			}
    		}
    	}()
    	f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 08 21:05:17 UTC 2019
    - 735 bytes
    - Viewed (0)
Back to top