- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 297 for atributos (0.18 sec)
-
tensorflow/c/eager/c_api_test.cc
- TFE_OpSetAttrType(var_op, "dtype", TF_INT64);
- TFE_OpSetAttrShape(var_op, "shape", {}, 0, status);
- const TFE_OpAttrs* attributes = TFE_OpGetAttrs(var_op);
- TFE_Op* copy_op = TFE_NewOp(ctx, "VarHandleOp", status);
- TFE_OpSetAttrType(copy_op, "dtype", TF_FLOAT);
- TFE_OpAddAttrs(copy_op, attributes);
- unsigned char is_list = 0;
- ASSERT_EQ(TF_ATTR_TYPE,
- TFE_OpGetAttrType(copy_op, "dtype", &is_list, status));
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Aug 03 20:50:20 UTC 2023 - 94.6K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/ClassPath.java
- import java.util.Enumeration;
- import java.util.HashSet;
- import java.util.LinkedHashMap;
- import java.util.Map;
- import java.util.NoSuchElementException;
- import java.util.Set;
- import java.util.jar.Attributes;
- import java.util.jar.JarEntry;
- import java.util.jar.JarFile;
- import java.util.jar.Manifest;
- import java.util.logging.Logger;
- import javax.annotation.CheckForNull;
- /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jan 05 17:43:40 UTC 2022 - 24.9K bytes - Viewed (0) -
docs/en/docs/tutorial/path-params.md
- By inheriting from `str` the API docs will be able to know that the values must be of type `string` and will be able to render correctly.
- Then create class attributes with fixed values, which will be the available valid values:
- ```Python hl_lines="1 6-9"
- {!../../docs_src/path_params/tutorial005.py!}
- ```
- /// info
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.1K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CookieTest.kt
- }
- /** If a cookie incorrectly defines multiple 'Max-Age' attributes, the last one defined wins. */
- @Test fun lastMaxAgeWins() {
- assertThat(parseCookie(0L, url, "a=b; Max-Age=2; Max-Age=4; Max-Age=1; Max-Age=3")!!.expiresAt)
- .isEqualTo(3000L)
- }
- /** If a cookie incorrectly defines multiple 'Expires' attributes, the last one defined wins. */
- @Test fun lastExpiresAtWins() {
- assertThat(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 24.3K bytes - Viewed (0) -
docs/fr/docs/tutorial/path-params.md
- En héritant de `str` la documentation sera capable de savoir que les valeurs doivent être de type `string` et pourra donc afficher cette `Enum` correctement.
- Créez ensuite des attributs de classe avec des valeurs fixes, qui seront les valeurs autorisées pour cette énumération.
- ```Python hl_lines="1 6-9"
- {!../../docs_src/path_params/tutorial005.py!}
- ```
- /// info
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
- }
- }
- catch ( SmbUnsupportedOperationException e ) {
- if ( src.getContext().getConfig().isIgnoreCopyToException() ) {
- log.warn("Failed to set file attributes on " + path, e);
- }
- else {
- throw e;
- }
- }
- catch ( SmbException se ) {
- log.trace("copyTo0", se);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 17.1K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
- </field>
- <field>
- <name>os</name>
- <version>1.0.0+</version>
- <description>
- Specifies that this profile will be activated when matching OS attributes are detected.
- </description>
- <association>
- <type>ActivationOS</type>
- </association>
- </field>
- <field>
- <name>property</name>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Oct 08 13:46:42 UTC 2024 - 33.5K bytes - Viewed (0) -
src/archive/zip/struct.go
- func (h *FileHeader) SetMode(mode fs.FileMode) {
- h.CreatorVersion = h.CreatorVersion&0xff | creatorUnix<<8
- h.ExternalAttrs = fileModeToUnixMode(mode) << 16
- // set MSDOS attributes too, as the original zip does.
- if mode&fs.ModeDir != 0 {
- h.ExternalAttrs |= msdosDir
- }
- if mode&0200 == 0 {
- h.ExternalAttrs |= msdosReadOnly
- }
- }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue May 28 21:41:09 UTC 2024 - 12.1K bytes - Viewed (0) -
common-protos/k8s.io/api/certificates/v1/generated.proto
- // Populated by the API server on creation and immutable.
- // +listType=atomic
- // +optional
- repeated string groups = 4;
- // extra contains extra attributes of the user that created the CertificateSigningRequest.
- // Populated by the API server on creation and immutable.
- // +optional
- map<string, ExtraValue> extra = 6;
- }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 11.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
- || nego.getDialectRevision() != out.getDialect() || !Arrays.equals(nego.getServerGuid(), out.getServerGuid()) ) {
- log.debug("Secure negotiation failure");
- throw new CIFSException("Mismatched attributes validating negotiate info");
- }
- log.debug("Secure negotiation OK");
- }
- /**
- * @param transport
- * @return
- * @throws SmbException
- */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0)