- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 22 for _attributes (0.05 sec)
-
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/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
SmbFile file = new SmbFile(baseUrl + "shared/attributes.txt", context); file.createNewFile(); // Test basic attributes assertTrue(file.canRead(), "File should be readable"); assertTrue(file.canWrite(), "File should be writable"); int attributes = file.getAttributes(); assertTrue(attributes >= 0, "Attributes should be valid"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0) -
tensorflow/c/c_api.h
TF_Operation* oper, const char* attr_name, TF_Buffer* output_attr_value, TF_Status* status); // Get the number of attributes the operation has. TF_CAPI_EXPORT extern int TF_OperationGetNumAttrs(TF_Operation* oper); // Get the length of the name of the ith attribute, or -1 if there is not an // ith attribute. TF_CAPI_EXPORT extern int TF_OperationGetAttrNameLength(TF_Operation* oper,
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/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) -
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) -
src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java
when(mockNdrBuffer.dec_ndr_long()).thenReturn(100, 1, 2, 3, 4, 5); // length, _root_directoryp, _object_namep, attributes, security_descriptor, _security_quality_of_servicep objAttr.decode(mockNdrBuffer); assertEquals(100, objAttr.length); assertEquals(3, objAttr.attributes); assertEquals(4, objAttr.security_descriptor); verify(objAttr.root_directory).decode(mockDeferredNdrBuffer);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 60.8K 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) -
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) -
.bazelrc
build:linux --copt="-Wno-all" build:linux --copt="-Wno-extra" build:linux --copt="-Wno-deprecated" build:linux --copt="-Wno-deprecated-declarations" build:linux --copt="-Wno-ignored-attributes" build:linux --copt="-Wno-array-bounds" # Add unused-result as an error on Linux. build:linux --copt="-Wunused-result" build:linux --copt="-Werror=unused-result" # Add switch as an error on Linux.
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Aug 22 21:03:34 UTC 2025 - 56K bytes - Viewed (0)