Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for nodeType (3.19 sec)

  1. src/os/os_windows_test.go

    	}
    	if tp := lfi.Mode().Type(); tp != fs.ModeIrregular {
    		// A reparse point is not a regular file, but we don't have a more appropriate
    		// ModeType bit for it, so it should be marked as irregular.
    		t.Errorf("%q should not be a an irregular file (mode=0x%x)", pythonPath, uint32(tp))
    	}
    
    	if sfi.Name() != pythonExeName {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

    }
    
    LogicalResult EnsureBias(Operation* op, int bias_idx,
                             PatternRewriter& rewriter) {
      auto bias = op->getOperand(bias_idx);
    
      if (!mlir::isa<NoneType>(bias.getType())) return failure();
    
      // Proceed to create a zero bias.
      auto output = op->getResult(0);
      auto output_type = mlir::dyn_cast_or_null<RankedTensorType>(output.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    		if err != nil {
    			addError(p, false, err)
    			continue
    		}
    		if err := collisions.check(p, info.IsDir()); err != nil {
    			addError(p, false, err)
    			continue
    		}
    		if info.Mode()&os.ModeType == os.ModeSymlink {
    			// Skip symbolic links (golang.org/issue/27093).
    			addError(p, true, errSymlink)
    			continue
    		}
    		if !info.Mode().IsRegular() {
    			addError(p, true, errNotRegular)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

      if (op_infos.empty())
        return parser.emitError(loc) << " expects at least one data operand";
    
      Attribute frame;
      if (parser.parseKeyword("frame") ||
          parser.parseAttribute(frame, NoneType::get(context), "frame_name",
                                result.attributes))
        return failure();
    
      Type i64 = parser.getBuilder().getIntegerType(64);
      if (parser.parseOptionalKeyword("parallel_iterations")) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top