- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for __attribute (0.08 sec)
-
tensorflow/c/c_api.h
// TF_AttrMetadata describes the value of an attribute on an operation. typedef struct TF_AttrMetadata { // A boolean: 1 if the attribute value is a list, 0 otherwise. unsigned char is_list; // Length of the list if is_list is true. Undefined otherwise. int64_t list_size; // Type of elements of the list if is_list != 0. // Type of the single value stored in the attribute if is_list == 0. TF_AttrType type;
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
final SearchResult searchResult = results.next(); final Attribute attribute = searchResult.getAttributes().get("sAMAccountName"); if (logger.isDebugEnabled()) { logger.debug("sAMAccountName: {}", attribute); } if (attribute != null && attribute.get() instanceof String sAMAccountName) { return OptionalEntity.of(sAMAccountName);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# LDAP attribute for home postal address. ldap.attr.homePostalAddress=homePostalAddress # LDAP attribute for labeled URI. ldap.attr.labeledURI=labeledURI # LDAP attribute for room number. ldap.attr.roomNumber=roomNumber # LDAP attribute for description. ldap.attr.description=description # LDAP attribute for title. ldap.attr.title=title # LDAP attribute for pager. ldap.attr.pager=pager # LDAP attribute for street.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
.get(stream -> stream.filter(StringUtil::isNotBlank).anyMatch(s -> s.equals(name))); } String getLdapAdminUserObjectClasses(); default Attribute getLdapAdminUserObjectClassAttribute() { final Attribute oc = new BasicAttribute("objectClass"); split(getLdapAdminUserObjectClasses(), ",").of(stream -> stream.filter(StringUtil::isNotBlank).forEach(s -> oc.add(s.trim()))); return oc;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 86.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
} } } return null; } /** * Gets an attribute value as an integer. * * @param attributes the named node map of attributes * @param name the attribute name * @return the attribute value as Integer, null if not found or not parseable */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
// Test SMB hidden file attribute handling long timestamp = System.currentTimeMillis(); SmbFile file = new SmbFile(baseUrl + "shared/hidden_" + timestamp + ".txt", context); // Create file file.createNewFile(); assertTrue(file.exists(), "File should exist"); // Set hidden attribute int attrs = file.getAttributes();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0) -
tensorflow/BUILD
# https://github.com/tensorflow/tensorflow/blob/cd67f4f3723f9165aabedd0171aaadc6290636e5/tensorflow/tensorflow.bzl#L396-L425 # And is usable in the "deps" attribute instead of the "srcs" attribute # as a workaround for https://github.com/tensorflow/tensorflow/issues/34117 cc_import( name = "libtensorflow_framework_import_lib", shared_library = select({
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Aug 28 19:11:51 UTC 2025 - 53.4K bytes - Viewed (0) -
tensorflow/c/c_api_test.cc
TF_DeleteTensor(fetchValues[0]); TF_DeleteTensor(fetchValues[1]); } // REGISTER_OP for CApiAttributesTest test cases. // Registers two ops, each with a single attribute called 'v'. // The attribute in one op will have a type 'type', the other // will have list(type). #define ATTR_TEST_REGISTER_OP(type) \ REGISTER_OP("CApiAttributesTestOp" #type) \
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Dec 27 12:18:10 UTC 2024 - 97K bytes - Viewed (0) -
tensorflow/c/c_api_function_test.cc
EXPECT_EQ(string("Invalid FunctionDef given to TF_FunctionImportFunctionDef"), string(TF_Message(s_))); } TEST_F(CApiFunctionTest, Attribute) { DefineFunction(func_name_, &func_); // Get non existent attribute TF_Buffer* attr_buf = TF_NewBuffer(); TF_FunctionGetAttrValueProto(func_, "foo_attr", attr_buf, s_); EXPECT_EQ(TF_INVALID_ARGUMENT, TF_GetCode(s_));
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Jul 20 22:08:54 UTC 2023 - 63.6K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
*/ public ViewHelper() { // Default constructor } private static final Logger logger = LogManager.getLogger(ViewHelper.class); /** Request attribute key for screen width */ protected static final String SCREEN_WIDTH = "screen_width"; /** Tablet width threshold for responsive design */ protected static final int TABLET_WIDTH = 768;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0)