Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 310 for attr_ (0.13 sec)

  1. fastapi/_compat.py

        from pydantic.fields import (  # type: ignore[no-redef,attr-defined]
            Required as Required,  # noqa: F401
        )
        from pydantic.fields import (  # type: ignore[no-redef,attr-defined]
            Undefined as Undefined,
        )
        from pydantic.fields import (  # type: ignore[no-redef, attr-defined]
            UndefinedType as UndefinedType,  # noqa: F401
        )
        from pydantic.schema import (
            field_schema,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbCopyUtil.java

                  SmbFileInputStream fis = new SmbFileInputStream(src, sh, sfd) ) {
                int attrs = src.getAttributes();
    
                try ( SmbFileHandleImpl dfd = openCopyTargetFile(dest, attrs, false);
                      SmbFileOutputStream fos = new SmbFileOutputStream(
                          dest,
                          dh,
                          dfd,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

        "'TFLite_Detection_PostProcess:3' type: DT_FLOAT } attr : { name: "
        "'h_scale' type: 'float'} attr : { name: 'max_classes_per_detection' "
        "type: 'int'} attr : { name: 'max_detections' type: 'int'} attr : { "
        "name: 'nms_iou_threshold' type: 'float'} attr : { name: "
        "'nms_score_threshold' type: 'float'} attr : { name: 'num_classes' type: "
        "'int'} attr : { name: 'w_scale' type: 'float'} attr : { name: 'x_scale' "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

            protected FileVisitResult doVisitFile(Path file, BasicFileAttributes attrs) {
                String internedFileName = getInternedFileName(file);
                pathTracker.enter(internedFileName);
                try {
                    if (attrs.isSymbolicLink()) {
                        BasicFileAttributes targetAttributes = readAttributesOfSymlinkTarget(file, attrs);
                        if (targetAttributes.isDirectory()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                        div().classAttr("col text-right mt-1");
                            i().classAttr("fa fa-filter").attr("data-toggle", "popover", "data-placement", "bottom").title("Filter by tag").style("cursor: pointer").text(" ").end();
                        end();
                        div().classAttr("col p-0")
                            .attr("data-toggle", "tooltip")
                            .style("font-size: smaller")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

    // Utilities
    //===----------------------------------------------------------------------===//
    
    static bool IsStrArrayAttr(Attribute attr) {
      auto array = mlir::dyn_cast<ArrayAttr>(attr);
      if (!array) return false;
    
      return llvm::all_of(
          array, [](Attribute attr) { return mlir::isa<StringAttr>(attr); });
    }
    
    //===----------------------------------------------------------------------===//
    // TensorFlowSavedModelDialect Op's
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/tests/end2end.mlir

        : (!tfr.tensor, !tfr.tensor, !tfr.tensor, !tfr.tensor, !tfr.tensor_list, !tfr.attr, !tfr.attr, !tfr.attr, i1) -> !tfr.tensor
      tfr.return %ret : !tfr.tensor
    }
    
    //=================>  signatures of the primitive ops with kernels, modeled as external TFR function <==
    tfr.func @tf__risc_cast_(!tfr.tensor, !tfr.attr{tfr.name="Tout"}) -> !tfr.tensor<Tout> attributes{Tout}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/NioFileInterceptors.java

            @VarargParameter FileAttribute<?>[] attrs,
            @CallerClassName String consumer
        ) throws IOException {
            if (optionsAllowReading(options)) {
                tryReportFileOpened(path, consumer);
            }
            return Files.newByteChannel(path, Cast.uncheckedNonnullCast(options), attrs);
        }
    
        @InterceptCalls
        @StaticMethod(ofClass = Files.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 12:34:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    	return destp
    }
    
    //sys	getxattr(path string, attr string, dest *byte, size int, position uint32, options int) (sz int, err error)
    
    func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
    	return getxattr(path, attr, xattrPointer(dest), len(dest), 0, 0)
    }
    
    func Lgetxattr(link string, attr string, dest []byte) (sz int, err error) {
    	return getxattr(link, attr, xattrPointer(dest), len(dest), 0, XATTR_NOFOLLOW)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  10. tensorflow/c/kernels.cc

      const tensorflow::AttrValue* attr =
          ::tensorflow::AttrSlice(cc_ctx->def()).Find(attr_name);
      if (attr == nullptr) {
        status->status = absl::InvalidArgumentError(
            absl::StrCat("Operation '", cc_ctx->def().name(),
                         "' has no attr named '", attr_name, "'."));
      }
      return attr;
    }
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top