Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for attr_ (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	}
    	return (*funcref)(fd, attr, dest)
    }
    
    func error_Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
    	sz = -1
    	err = ENOSYS
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func impl_Fsetxattr(fd int, attr string, data []byte, flag int) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(attr)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

            op_code.custom_code, custom_options, builder, loc, &attrs);
        if (!status.ok()) {
          return emitError(loc, status.ToString()), status;
        }
      } else {
        mlir::BuiltinOptionsToAttributes(op.builtin_options, builder, attrs);
        mlir::BuiltinOptions2ToAttributes(op.builtin_options_2, builder, attrs);
      }
    
      if (builtin_code == tflite::BuiltinOperator_STABLEHLO_COMPOSITE) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

            }
        }
    
    
        SmbFileHandleImpl openUnshared ( int flags, int access, int sharing, int attrs, int options ) throws CIFSException {
            return openUnshared(getUncPath(), flags, access, sharing, attrs, options);
        }
    
    
        SmbFileHandleImpl openUnshared ( String uncPath, int flags, int access, int sharing, int attrs, int options ) throws CIFSException {
            SmbFileHandleImpl fh = null;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //sys   Fremovexattr(fd int, attr string) (err error) = SYS___FREMOVEXATTR_A
    //sys	read(fd int, p []byte) (n int, err error)
    //sys	write(fd int, p []byte) (n int, err error)
    
    //sys   Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) = SYS___FGETXATTR_A
    //sys   Fsetxattr(fd int, attr string, data []byte, flag int) (err error) = SYS___FSETXATTR_A
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        Type shape_dtype = getElementTypeOrSelf(op.getElementShape().getType());
        Value num_elements = operands[1];
        IntegerAttr attr;
        if (matchPattern(num_elements, m_Constant(&attr))) {
          return CreateI32SplatConst(op.getLoc(), rewriter, {1}, attr.getInt());
        }
        if (auto const_op = num_elements.getDefiningOp<TF::ConstOp>()) {
          return CreateI32SplatConst(op->getLoc(), rewriter, {1},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  6. src/crypto/x509/x509.go

    	for _, rawAttr := range rawAttributes {
    		var attr pkcs10Attribute
    		if rest, err := asn1.Unmarshal(rawAttr.FullBytes, &attr); err != nil || len(rest) != 0 || len(attr.Values) == 0 {
    			// Ignore attributes that don't parse.
    			continue
    		}
    
    		if !attr.Id.Equal(oidExtensionRequest) {
    			continue
    		}
    
    		var extensions []pkix.Extension
    		if _, err := asn1.Unmarshal(attr.Values[0].FullBytes, &extensions); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

                                    PatternRewriter& rewriter) const override {
        DenseFPElementsAttr attr;
        if (!matchPattern(q_op.getArg(), m_Constant(&attr))) {
          return failure();
        }
    
        ShapedType tensor_qtype =
            mlir::cast<ShapedType>(q_op.getResult().getType());
        Attribute tensor_proto_attr = Quantize(attr, tensor_qtype);
        if (!tensor_proto_attr) {
          return failure();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_test.cc

      }
    
      void SetViaProto(TF_OperationDescription* desc,
                       const std::vector<string>& list) {
        tensorflow::AttrValue attr;
        for (const string& v : list) {
          attr.mutable_list()->add_s(v);
        }
        string bytes;
        attr.SerializeToString(&bytes);
        TF_SetAttrValueProto(desc, tensorflow::kColocationAttrName, bytes.data(),
                             bytes.size(), s_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    func (s *xlStorage) getDeleteAttribute() uint64 {
    	attr := "user.total_deletes"
    	buf, err := xattr.LGet(s.formatFile, attr)
    	if err != nil {
    		// We start off with '0' if we can read the attributes
    		return 0
    	}
    	return binary.LittleEndian.Uint64(buf[:8])
    }
    
    func (s *xlStorage) getWriteAttribute() uint64 {
    	attr := "user.total_writes"
    	buf, err := xattr.LGet(s.formatFile, attr)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/manual.css

    .listingblock code[data-lang]:before {
    	display: none;
    	content: attr(data-lang);
    	position: absolute;
    	font-size: 0.75em;
    	top: 0.425rem;
    	right: 0.5rem;
    	line-height: 1;
    	text-transform: uppercase;
    	color: #999;
    }
    
    .listingblock:hover code[data-lang]:before {
    	display: block;
    }
    
    .listingblock.terminal pre .command:before {
    	content: attr(data-prompt);
    	padding-right: 0.5em;
    	color: #999;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top