- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,474 for defined (0.2 sec)
-
fastapi/utils.py
new_field.key_field = create_cloned_field( # type: ignore[attr-defined] field.key_field, # type: ignore[attr-defined] cloned_types=cloned_types, ) new_field.validators = field.validators # type: ignore[attr-defined] new_field.pre_validators = field.pre_validators # type: ignore[attr-defined] new_field.post_validators = field.post_validators # type: ignore[attr-defined]
Python - Registered: 2023-12-03 07:19 - Last Modified: 2023-10-24 20:26 - 8K bytes - Viewed (0) -
maven-core/src/site/apt/lifecycles.apt.vm
Lifecycles Reference Maven defines 4 lifecycles in {{{./apidocs/org/apache/maven/lifecycle/providers/package-summary.html}<<<org.apache.maven.lifecycle.providers>>>}} package: %{toc|fromDepth=2} * <<<default>>> Lifecycle <<<default>>> lifecycle is defined only with phases, <<without>> any associated plugin binding: plugins bindings for this lifecycle are {{{./default-bindings.html}defined separately for each packaging}}:
Plain Text - Registered: 2023-12-03 03:35 - Last Modified: 2022-01-08 14:57 - 2.1K bytes - Viewed (0) -
architecture/environments/operator.md
[default profile](../manifests/profiles/default.yaml) is used. Each profile is defined as a set of defaults for `IstioOperatorSpec`, for both the restructured fields (K8s settings, namespaces and enablement) and the Helm values (Istio behavior configuration). 1. The fields defined in the user CR override any values defined in the configuration profile CR. The
Plain Text - Registered: 2023-11-29 22:53 - Last Modified: 2023-08-09 22:09 - 13.4K bytes - Viewed (0) -
tensorflow/c/c_api_internal.h
: #if !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD) api_def_map(op_list), #endif // !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD) update_docs_called(false) { } #if !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD) tensorflow::ApiDefMap api_def_map TF_GUARDED_BY(lock); #endif // !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD)
C - Registered: 2023-11-28 12:39 - Last Modified: 2023-05-13 00:49 - 7.6K bytes - Viewed (0) -
tensorflow/c/c_api.cc
void TF_DeleteServer(TF_Server* server) { #if !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD) delete server; #endif // !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD) } void TF_RegisterLogListener(void (*listener)(const char*)) { #if !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD) tensorflow::logging::RegisterListener(listener); #endif // !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD) }
C++ - Registered: 2023-11-28 12:39 - Last Modified: 2023-10-26 21:08 - 102.4K bytes - Viewed (0) -
src/cmd/asm/internal/arch/arm.go
return true } return false } // MCR is not defined by the obj/arm; instead we define it privately here. // It is encoded as an MRC with a bit inside the instruction word, // passed to arch.ARMMRCOffset. const aMCR = arm.ALAST + 1 // IsARMMRC reports whether the op (as defined by an arm.A* constant) is // MRC or MCR. func IsARMMRC(op obj.As) bool { switch op {
Go - Registered: 2023-12-05 11:13 - Last Modified: 2022-11-18 17:59 - 6.1K bytes - Viewed (0) -
.cm/estimated_time_to_review.cm
# if all the conditions pass. You can define multiple automations in a .cm file, but # each automation name should be unique within the file. automations: # Add a label that indicates how many minutes it will take to review the PR and categorizes it estimated_time_to_review: if: - {{ author.using_gitstream }} run: - action: add-label@v1 # etr is defined in the last section of this example
Plain Text - Registered: 2023-11-29 11:36 - Last Modified: 2023-10-04 13:40 - 2.7K bytes - Viewed (0) -
android/guava/src/com/google/common/net/HostAndPort.java
return host; } /** Return true if this instance has a defined port. */ public boolean hasPort() { return port >= 0; } /** * Get the current port number, failing if no port is defined. * * @return a validated port number, in the range [0..65535] * @throws IllegalStateException if no port is defined. You can use {@link #withDefaultPort(int)} * to prevent this from occurring.
Java - Registered: 2023-12-01 12:43 - Last Modified: 2023-08-22 20:55 - 11.3K bytes - Viewed (0) -
maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java
} } private ReflectionValueExtractor() {} /** * <p>The implementation supports indexed, nested and mapped properties.</p> * <ul> * <li>nested properties should be defined by a dot, i.e. "user.address.street"</li> * <li>indexed properties (java.util.List or array instance) should be contains <code>(\\w+)\\[(\\d+)\\]</code> * pattern, i.e. "user.addresses[1].street"</li>
Java - Registered: 2023-12-03 03:35 - Last Modified: 2023-10-17 17:55 - 10.5K bytes - Viewed (0) -
src/cmd/asm/internal/arch/loong64.go
} // IsLoong64CMP reports whether the op (as defined by an loong64.A* constant) is // one of the CMP instructions that require special handling. func IsLoong64CMP(op obj.As) bool { switch op { case loong64.ACMPEQF, loong64.ACMPEQD, loong64.ACMPGEF, loong64.ACMPGED, loong64.ACMPGTF, loong64.ACMPGTD: return true } return false } // IsLoong64MUL reports whether the op (as defined by an loong64.A* constant) is
Go - Registered: 2023-12-05 11:13 - Last Modified: 2023-02-06 13:49 - 2.1K bytes - Viewed (0)