- Sort Score
- Result 10 results
- Languages All
Results 4861 - 4870 of 7,602 for _class (0.05 sec)
-
src/main/java/jcifs/netbios/NameServicePacket.java
*/ package jcifs.netbios; import java.net.InetAddress; import jcifs.Configuration; import jcifs.util.Hexdump; abstract class NameServicePacket { // opcode static final int QUERY = 0; static final int WACK = 7; // rcode static final int FMT_ERR = 0x1; static final int SRV_ERR = 0x2;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 12K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServicePacket.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.netbios; import java.net.InetAddress; import jcifs.smb1.util.Hexdump; abstract class NameServicePacket { // opcode static final int QUERY = 0; static final int WACK = 7; // rcode static final int FMT_ERR = 0x1; static final int SRV_ERR = 0x2;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 12.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
} @Nonnull static ModelBuilderRequestBuilder builder(ModelBuilderRequest request) { return new ModelBuilderRequestBuilder(request); } @NotThreadSafe class ModelBuilderRequestBuilder { Session session; RequestType requestType; boolean locationTracking; boolean recursive; ModelSource source; Collection<Profile> profiles;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 09 11:07:31 UTC 2024 - 13.3K bytes - Viewed (0) -
docs/ru/docs/tutorial/handling-errors.md
{!../../docs_src/handling_errors/tutorial002.py!} ``` ## Установка пользовательских обработчиков исключений Вы можете добавить пользовательские обработчики исключений с помощью <a href="https://www.starlette.io/exceptions/" class="external-link" target="_blank">то же самое исключение - утилиты от Starlette</a>. Допустим, у вас есть пользовательское исключение `UnicornException`, которое вы (или используемая вами библиотека) можете `вызвать`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 14.5K bytes - Viewed (0) -
docs/ko/docs/tutorial/cors.md
# 교차 출처 리소스 공유 <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS" class="external-link" target="_blank">CORS 또는 "교차-출처 리소스 공유"</a>란, 브라우저에서 동작하는 프론트엔드가 자바스크립트로 코드로 백엔드와 통신하고, 백엔드는 해당 프론트엔드와 다른 "출처"에 존재하는 상황을 의미합니다. ## 출처 출처란 프로토콜(`http` , `https`), 도메인(`myapp.com`, `localhost`, `localhost.tiangolo.com` ), 그리고 포트(`80`, `443`, `8080` )의 조합을 의미합니다. 따라서, 아래는 모두 상이한 출처입니다: * `http://localhost` * `https://localhost`
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.8K bytes - Viewed (0) -
docs/pt/docs/deployment/server-workers.md
/// ## Vários trabalhadores Você pode iniciar vários trabalhadores com a opção de linha de comando `--workers`: //// tab | `fastapi` Se você usar o comando `fastapi`: <div class="termy"> ```console $ <pre> <font color="#4E9A06">fastapi</font> run --workers 4 <u style="text-decoration-style:single">main.py</u> <font color="#3465A4">INFO </font> Using path <font color="#3465A4">main.py</font>
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Sep 20 11:01:03 UTC 2024 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
import org.opensearch.search.sort.SortOrder; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpSession; public class QueryHelper { private static final Logger logger = LogManager.getLogger(QueryHelper.class); protected static final String PREFERENCE_QUERY = "_query"; protected String sortPrefix = "sort:"; protected String additionalQuery;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 11.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ContiguousSet.java
* * @author Gregory Kick * @since 10.0 */ @GwtCompatible(emulated = true) @SuppressWarnings("rawtypes") // allow ungenerified Comparable types @ElementTypesAreNonnullByDefault public abstract class ContiguousSet<C extends Comparable> extends ImmutableSortedSet<C> { /** * Returns a {@code ContiguousSet} containing the same values in the given domain {@linkplain * Range#contains contained} by the range. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 9.9K bytes - Viewed (0) -
common-protos/k8s.io/api/storage/v1beta1/generated.proto
// +listType=map // +listMapKey=name repeated CSIStorageCapacity items = 2; } // StorageClass describes the parameters for a class of storage for // which PersistentVolumes can be dynamically provisioned. // // StorageClasses are non-namespaced; the name of the storage class // according to etcd is in ObjectMeta.Name. message StorageClass { // Standard object's metadata.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/FessSystemException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class FessSystemException extends RuntimeException { private static final long serialVersionUID = 1L; public FessSystemException(final String message, final Throwable cause) { super(message, cause); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.2K bytes - Viewed (0)