Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for userLog (0.29 sec)

  1. src/runtime/trace/annotation.go

    	id := fromContext(ctx).id
    	userLog(id, category, message)
    }
    
    // Logf is like [Log], but the value is formatted using the specified format spec.
    func Logf(ctx context.Context, category, format string, args ...any) {
    	if IsEnabled() {
    		// Ideally this should be just Log, but that will
    		// add one more frame in the stack trace.
    		id := fromContext(ctx).id
    		userLog(id, category, fmt.Sprintf(format, args...))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/tests/go122-annotations.test

    GoBlock dt=249 reason_string=10 stack=14
    GoStart dt=8 g=9 g_seq=1
    UserRegionBegin dt=286 task=1 name_string=24 stack=15
    UserRegionBegin dt=244 task=1 name_string=25 stack=16
    UserRegionBegin dt=6 task=1 name_string=26 stack=17
    UserLog dt=6 task=1 key_string=27 value_string=28 stack=18
    UserRegionEnd dt=4 task=1 name_string=26 stack=19
    UserRegionEnd dt=315 task=1 name_string=25 stack=20
    UserTaskEnd dt=5 task=1 stack=21
    GoUnblock dt=11 g=1 g_seq=1 stack=22
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/propagate_quantize_type.cc

        // Skip the original dequant op and connect the op before dequantize to the
        // user op.
        user_op->setOperand(user_idx, op_before_dequantize);
    
        // Wire input/output nodes.
        new_dequantize_op->setOperand(0, user_op->getResult(0));
        new_dequantize_op->getResult(0).setType(user_op->getResult(0).getType());
        user_op->getResult(0).replaceAllUsesExcept(new_dequantize_op->getResult(0),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/constant_op_device_assignment.cc

        bool all_uses_replaced = true;
    
        for (mlir::OpOperand &use :
             llvm::make_early_inc_range(op.getResult().getUses())) {
          mlir::Operation *user_op = use.getOwner();
          StringAttr device_attr = user_op->getAttrOfType<StringAttr>(kDeviceAttr);
          if (!device_attr) {
            all_uses_replaced = false;
            continue;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftLinker.java

                if (!spec.getLibraryPath().isEmpty()) {
                    throw new UnsupportedOperationException("Library Path not yet supported on Swiftc");
                }
    
                for (String userArg : spec.getArgs()) {
                    args.add(userArg);
                }
    
                return args;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinker.java

                if (!spec.getLibraryPath().isEmpty()) {
                    throw new UnsupportedOperationException("Library Path not yet supported on GCC");
                }
    
                for (String userArg : spec.getArgs()) {
                    args.add(userArg);
                }
    
                return args;
            }
    
            private void maybeSetInstallName(SharedLibraryLinkerSpec spec, List<String> args) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top