Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for dialects (0.29 sec)

  1. src/net/http/transport.go

    	// because a future request may be able to make use of the connection.
    	//
    	// We retain the request context's values.
    	dialCtx, dialCancel := context.WithCancel(context.WithoutCancel(ctx))
    
    	w := &wantConn{
    		cm:         cm,
    		key:        cm.key(),
    		ctx:        dialCtx,
    		cancelCtx:  dialCancel,
    		result:     make(chan connOrError, 1),
    		beforeDial: testHookPrePendingDial,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let results = (outs
        TF_BoolTensor:$success
      );
    }
    
    // Internal op for testing value-based side-effects for non-resource values.
    // TODO(mgester) We should have an extension of TF dialect only for testing so
    // TF dialect is not polluted with test ops.
    def TF__InternalTestNonResourceValueSideEffects_ : TF_Op<"_InternalTestNonResourceValueSideEffects_", []> {
      let summary = "Internal op for testing only";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //                    other platforms, including Windows.
    //
    // Logging:
    //   GTEST_LOG_()   - logs messages at the specified severity level.
    //   LogToStderr()  - directs all log messages to stderr.
    //   FlushInfoLog() - flushes informational log messages.
    //
    // Stdout and stderr capturing:
    //   CaptureStdout()     - starts capturing stdout.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

                        return negotiate2(r);
                    }
                    else if ( r.getDialectRevision() != Smb2Constants.SMB2_DIALECT_0202 ) {
                        throw new CIFSException("Server returned invalid dialect verison in multi protocol negotiation");
                    }
    
                    int permits = r.getInitialCredits();
                    if ( permits > 0 ) {
                        this.credits.release(permits);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    #include "llvm/ADT/MapVector.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SetVector.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Block.h"  // from @llvm-project
    #include "mlir/IR/IRMapping.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        self.symbol_table.exit_scope()
    
      def visit_arguments(self, node):
        # TODO(fengliuai): return ordered the types and names.
        # We need to order the arguments to match the assumption in the TFR dialect.
        raise NotImplementedError('arguments not supported.')
    
      def visit_Lambda(self, node):
        raise NotImplementedError('Lambda not supported.')
    
      def _get_mlir_ssa_values(self, name_prefix, out_types):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SetVector.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/FormatVariadic.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  8. src/debug/elf/file_test.go

    					Tag:      dwarf.TagCompileUnit,
    					Children: true,
    					Field: []dwarf.Field{
    						{Attr: dwarf.AttrProducer, Val: "GNU C 4.9.2 20141224 (prerelease) -march=armv7-a -mfloat-abi=hard -mfpu=vfpv3-d16 -mtls-dialect=gnu -g", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLanguage, Val: int64(1), Class: dwarf.ClassConstant},
    						{Attr: dwarf.AttrName, Val: "go-relocation-test-gcc492.c", Class: dwarf.ClassString},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    	d := Dialer{Config: &Config{
    		Rand: readerFunc(func(b []byte) (n int, err error) {
    			// By the time crypto/tls wants randomness, that means it has a TCP
    			// connection, so we're past the Dialer's dial and now blocked
    			// in a handshake. Cancel our context and see if we get unstuck.
    			// (Our TCP listener above never reads or writes, so the Handshake
    			// would otherwise be stuck forever)
    			cancel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    #include "absl/strings/str_cat.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/MapVector.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SetVector.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top