- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 205 for prea (0.02 sec)
-
src/main/java/jcifs/smb1/smb1/ACE.java
* FILE_WRITE_DATA</code>) and the target file has the following security * descriptor ACEs: * <pre> * Allow WNET\alice 0x001200A9 Direct * Allow Administrators 0x001F01FF Inherited * Allow SYSTEM 0x001F01FF Inherited * </pre> * the access check would fail because the direct ACE has an access mask * of <code>0x001200A9</code> which doesn't have the
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/Config.java
* <blockquote> * * <pre> * Exception MalformedURLException: unknown protocol: smb * at java.net.URL.<init>(URL.java:480) * at java.net.URL.<init>(URL.java:376) * at java.net.URL.<init>(URL.java:330) * at jcifs.smb.SmbFile.<init>(SmbFile.java:355) * ... * </pre> * </blockquote> */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java
SMBUtil.writeInt4(432, buffer, bufferIndex + 4); // 512 - 80 response = spy(response); when(response.getHeaderStart()).thenReturn(0); // Fill the entire data area with zero (no valid entries) for (int i = dataOffset; i < 512; i++) { buffer[i] = 0; } int result = response.readBytesWireFormat(buffer, bufferIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.5K bytes - Viewed (0) -
cmd/bucket-replication-metrics.go
} return &SMA{ buf: make([]float64, ln), window: ln, idx: 0, } } func (s *SMA) addSample(next float64) { prev := s.buf[s.idx] s.buf[s.idx] = next if s.filledBuf { s.prevSMA += (next - prev) / float64(s.window) s.CAvg += (next - s.CAvg) / float64(s.window) } else { s.CAvg = s.simpleMovingAvg() s.prevSMA = s.CAvg } if s.idx == s.window-1 {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 14.2K bytes - Viewed (0) -
docs/es/docs/tutorial/sql-databases.md
M谩s adelante la mejoraremos aumentando la seguridad y versatilidad con **m煤ltiples modelos** a continuaci贸n. 馃 ### Crear Modelos Importa `SQLModel` y crea un modelo de base de datos: {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[1:11] hl[7:11] *} La clase `Hero` es muy similar a un modelo de Pydantic (de hecho, en el fondo, realmente *es un modelo de Pydantic*).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 15.8K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Supplier.java
* the License. */ package com.google.common.base; import com.google.common.annotations.GwtCompatible; import org.jspecify.annotations.Nullable; /** * A class that can supply objects of a single type; a pre-Java-8 version of {@link * java.util.function.Supplier java.util.function.Supplier}. Semantically, this could be a factory, * generator, builder, closure, or something else entirely. No guarantees are implied by this * interface.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jun 19 17:20:48 UTC 2025 - 3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformer.java
* The {@link #getData(AccessResultData)} method allows retrieving the transformed data as a String (XML content), * a Map, or an instance of a specified class. * </p> * * <p> * Example usage: * </p> * * <pre> * XpathTransformer transformer = new XpathTransformer(); * transformer.addFieldRule("title", "//title/text()"); * transformer.addFieldRule("body", "//body/p/text()"); * * ResponseData responseData = new ResponseData();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 13.1K bytes - Viewed (0) -
docs/es/docs/tutorial/response-model.md
/// {* ../../docs_src/response_model/tutorial005_py310.py hl[29,35] *} /// tip | Consejo La sintaxis `{"name", "description"}` crea un `set` con esos dos valores. Es equivalente a `set(["name", "description"])`. /// #### Usar `list`s en lugar de `set`s
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 17K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt
"WWW-Authenticate", "Basic realm=\"protected area\", charset=\"UTF-8\"", ), body = "Please authenticate with UTF-8.", ), ) server.enqueue( MockResponse( code = 401, headers = headersOf( "WWW-Authenticate", "Basic realm=\"protected area\"", ),
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jun 21 20:36:35 UTC 2025 - 133.2K bytes - Viewed (0) -
docs/es/docs/tutorial/dependencies/classes-as-dependencies.md
## 脷salo Ahora puedes declarar tu dependencia usando esta clase. {* ../../docs_src/dependencies/tutorial002_an_py310.py hl[19] *} **FastAPI** llama a la clase `CommonQueryParams`. Esto crea una "instance" de esa clase y la instance ser谩 pasada como el par谩metro `commons` a tu funci贸n. ## Anotaci贸n de tipos vs `Depends` Nota c贸mo escribimos `CommonQueryParams` dos veces en el c贸digo anterior:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 6.9K bytes - Viewed (0)