Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 285 for diag (0.41 sec)

  1. src/crypto/sha512/sha512block_amd64.go

    //go:build !purego
    
    package sha512
    
    import "internal/cpu"
    
    //go:noescape
    func blockAVX2(dig *digest, p []byte)
    
    //go:noescape
    func blockAMD64(dig *digest, p []byte)
    
    var useAVX2 = cpu.X86.HasAVX2 && cpu.X86.HasBMI1 && cpu.X86.HasBMI2
    
    func block(dig *digest, p []byte) {
    	if useAVX2 {
    		blockAVX2(dig, p)
    	} else {
    		blockAMD64(dig, p)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 501 bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/plugin/v1beta1/client.go

    }
    
    func (c *client) API() api.DevicePluginClient {
    	return c.client
    }
    
    func (c *client) SocketPath() string {
    	return c.socket
    }
    
    // dial establishes the gRPC communication with the registered device plugin. https://godoc.org/google.golang.org/grpc#Dial
    func dial(unixSocketPath string) (api.DevicePluginClient, *grpc.ClientConn, error) {
    	ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
    	defer cancel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:35:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/log/syslog/syslog.go

    func New(priority Priority, tag string) (*Writer, error) {
    	return Dial("", "", priority, tag)
    }
    
    // Dial establishes a connection to a log daemon by connecting to
    // address raddr on the specified network. Each write to the returned
    // writer sends a log message with the facility and severity
    // (from priority) and tag. If tag is empty, the [os.Args][0] is used.
    // If network is empty, Dial will connect to the local syslog server.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. src/net/tcpsock_posix.go

    		}
    	}
    	fd, err := internetSocket(ctx, sd.network, laddr, raddr, syscall.SOCK_STREAM, proto, "dial", ctrlCtxFn)
    
    	// TCP has a rarely used mechanism called a 'simultaneous connection' in
    	// which Dial("tcp", addr1, addr2) run on the machine at addr1 can
    	// connect to a simultaneous Dial("tcp", addr2, addr1) run on the machine
    	// at addr2, without either machine executing Listen. If laddr == nil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. test/fixedbugs/bug243.go

    // function call.
    
    func main() {
    	var listen, _ = Listen("tcp", "127.0.0.1:0")
    
    	go func() {
    		for {
    			var conn, _ = listen.Accept()
    			_ = conn
    		}
    	}()
    
    	var conn, _ = Dial("tcp", "", listen.Addr().Error())
    	_ = conn
    }
    
    // Simulated net interface to exercise bug
    // without involving a real network.
    type T chan int
    
    var global T
    
    func Listen(x, y string) (T, string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 893 bytes
    - Viewed (0)
  6. pkg/hbone/dialer_test.go

    	timeout := 500 * time.Millisecond
    	d := NewDialer(Config{
    		ProxyAddress: "127.0.0.10:1", // Random address that should fail to dial
    		Headers: map[string][]string{
    			"some-addition-metadata": {"test-value"},
    		},
    		TLS:     nil, // No TLS for simplification
    		Timeout: &timeout,
    	})
    
    	_, err := d.Dial("tcp", "fake")
    	if err == nil {
    		t.Fatal("expected error, got none.")
    	}
    }
    
    func TestDialer(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 26 23:44:52 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/guarantee-all-funcs-one-use.mlir

    func.func @g() {
      func.return
    }
    
    // -----
    // Transitive callees.
    // CHECK-LABEL: func @f
    // 2 copies of @g
    // CHECK-DAG: func @g{{.*}}
    // CHECK-DAG: func private @g{{.*}}
    // 4 copies of @h
    // CHECK-DAG: func @h{{.*}}
    // CHECK-DAG: func private @h{{.*}}
    // CHECK-DAG: func private @h{{.*}}
    // CHECK-DAG: func private @h{{.*}}
    func.func @f() {
      func.call @g() : () -> ()
      func.call @g() : () -> ()
      func.return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/shape-attrs.pbtxt

          type: DT_BOOL
        }
      }
    }
    
    # CHECK-DAG: tf.IteratorGetNext{{.+}}-> (tensor<1x8xbf16>, tensor<2x?x16xf32>, tensor<*xf64>)
    # CHECK-DAG: tf.IteratorGetNextSync{{.+}}-> (tensor<*xi16>, tensor<3x24xi32>, tensor<?x4x32xi64>)
    # CHECK-DAG: tf.MultiDeviceIteratorGetNextFromShard{{.+}}-> (tensor<5x40xf16>, tensor<*xcomplex<f32>>, tensor<6x48x?xcomplex<f64>>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 04 18:02:53 UTC 2020
    - 5K bytes
    - Viewed (0)
  9. src/crypto/md5/gen.go

    // Code generated by go run gen.go -output md5block.go; DO NOT EDIT.
    
    package md5
    
    import (
    	"internal/byteorder"
    	"math/bits"
    )
    
    func blockGeneric(dig *digest, p []byte) {
    	// load state
    	a, b, c, d := dig.s[0], dig.s[1], dig.s[2], dig.s[3]
    
    	for i := 0; i <= len(p)-BlockSize; i += BlockSize {
    		// eliminate bounds checks on p
    		q := p[i:]
    		q = q[:BlockSize:BlockSize]
    
    		// save current state
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/fake_quant_e2e_flow.mlir

    // CHECK-SAME: %[[ARG1:.*]]: tensor<2x3
    // CHECK-DAG: %[[CST:.*]] = "tf.Const"() <{value = dense<0.00117647066> : tensor<f32>}> : () -> tensor<f32>
    // CHECK-DAG: %[[CST_0:.*]] = "tf.Const"() <{value = dense<-43> : tensor<i32>}> : () -> tensor<i32>
    // CHECK-DAG: %[[CST_1:.*]] = "tf.Const"() <{value = dense<0.0117647061> : tensor<f32>}> : () -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top