Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 285 for diag (0.04 sec)

  1. pkg/hbone/dialer.go

    func (d *dialer) DialContext(ctx context.Context, network, address string) (net.Conn, error) {
    	if network != "tcp" {
    		return net.Dial(network, address)
    	}
    	// TODO: use context
    	c, s := net.Pipe()
    	err := d.proxyTo(s, d.cfg, address)
    	if err != nil {
    		return nil, err
    	}
    	return c, nil
    }
    
    func (d dialer) Dial(network, address string) (c net.Conn, err error) {
    	return d.DialContext(context.Background(), network, address)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:41 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. src/crypto/sha256/sha256block_s390x.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // func block(dig *digest, p []byte)
    TEXT ·block(SB), NOSPLIT|NOFRAME, $0-32
    	MOVBZ  ·useAsm(SB), R4
    	LMG    dig+0(FP), R1, R3            // R2 = &p[0], R3 = len(p)
    	MOVBZ  $2, R0                       // SHA-256 function code
    	CMPBEQ R4, $0, generic
    
    loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 610 bytes
    - Viewed (0)
  3. src/crypto/sha512/sha512block_s390x.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // func block(dig *digest, p []byte)
    TEXT ·block(SB), NOSPLIT|NOFRAME, $0-32
    	MOVBZ  ·useAsm(SB), R4
    	LMG    dig+0(FP), R1, R3            // R2 = &p[0], R3 = len(p)
    	MOVBZ  $3, R0                       // SHA-512 function code
    	CMPBEQ R4, $0, generic
    
    loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 610 bytes
    - Viewed (0)
  4. src/internal/trace/testdata/testprog/stacks.go

    	done1 <- true
    	<-done2
    	select {
    	case c1 <- 0:
    	case c2 <- 0:
    	}
    	mu.Unlock()
    	wg.Done()
    	cv.Signal()
    	c, err := net.Dial("tcp", ln.Addr().String())
    	if err != nil {
    		log.Fatalf("failed to dial: %v", err)
    	}
    	c.Close()
    	var data [1]byte
    	wp.Write(data[:])
    	<-pipeReadDone
    
    	oldGoMaxProcs := runtime.GOMAXPROCS(0)
    	runtime.GOMAXPROCS(oldGoMaxProcs + 1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/end2end/unroll_batch_matmul.pbtxt

    # CHECK-DAG:       %[[VAL_2:.*]] = arith.constant dense<[1, 0]> : tensor<2xi32>
    # CHECK-DAG:       %[[VAL_3:.*]] = "tfl.no_value"() <{value}> : () -> none
    # CHECK-DAG:       %[[VAL_6:.*]] = arith.constant dense<0> : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprognet/net.go

    	"fmt"
    	"net"
    )
    
    func init() {
    	registerInit("NetpollDeadlock", NetpollDeadlockInit)
    	register("NetpollDeadlock", NetpollDeadlock)
    }
    
    func NetpollDeadlockInit() {
    	fmt.Println("dialing")
    	c, err := net.Dial("tcp", "localhost:14356")
    	if err == nil {
    		c.Close()
    	} else {
    		fmt.Println("error: ", err)
    	}
    }
    
    func NetpollDeadlock() {
    	fmt.Println("done")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 539 bytes
    - Viewed (0)
  7. pkg/kubelet/server/server_websocket_test.go

    				url = fmt.Sprintf("ws://%s/portForward/%s/%s?port=%s", fw.testHTTPServer.Listener.Addr().String(), podNamespace, podName, test.port)
    			}
    
    			ws, err := websocket.Dial(url, "", "http://127.0.0.1/")
    			assert.Equal(t, test.shouldError, err != nil, "websocket dial")
    			if test.shouldError {
    				return
    			}
    			defer ws.Close()
    
    			p, err := strconv.ParseUint(test.port, 10, 16)
    			require.NoError(t, err, "parse port")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. pkg/istio-agent/health/health_check_test.go

    	// Should have connection refused before we listen
    	_, err = net.Dial("tcp", d.Address())
    	assert.Error(t, err)
    
    	assert.NoError(t, d.Listen())
    
    	// Now we should see success
    	_, err = net.Dial("tcp", d.Address())
    	assert.NoError(t, err)
    
    	assert.NoError(t, d.Close())
    	// Now we should failure again success
    	_, err = net.Dial("tcp", d.Address())
    	assert.Error(t, err)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 16:50:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/target.pbtxt

    # PRUNE-SAME:  control_outputs = "AssignAdd"
    # PRUNE-SAME:  inputs = ""
    # PRUNE-SAME:  outputs = ""
    # PRUNE-NOT:       "tf.Assign"
    # PRUNE-NOT:       "tf.Identity"
    # PRUNE-DAG:       %[[CONST:.*]], %{{.*}} = tf_executor.island wraps "tf.Const"
    # PRUNE-DAG:       %[[VAR:.*]], %{{.*}} = tf_executor.island wraps "tf.VariableV2"
    # PRUNE:           %{{.*}}, %[[ASSIGN_ADD_CTRL:.*]] = tf_executor.island wraps "tf.AssignAdd"(%[[VAR]], %[[CONST]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/prepare_quantize_drq.mlir

        return %0 : tensor<*xf32>
      }
    
    // CHECK-LABEL: func @conv2d
    // CHECK-DAG: %[[CONST_0:.*]] = arith.constant dense<0.000000e+00> : tensor<2xf32>
    // CHECK-DAG: %[[CONST_1:.*]] = arith.constant dense<3.000000e+00> : tensor<2x3x3x512xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top