Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,331 for unsuccessful (0.2 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ComponentIdResolveResult.java

         *
         * @throws org.gradle.internal.resolve.ModuleVersionResolveException If resolution was unsuccessful and the id is unknown.
         */
        ComponentIdentifier getId();
    
        /**
         * Returns the module version id of the component.
         *
         * @throws org.gradle.internal.resolve.ModuleVersionResolveException If resolution was unsuccessful and the id is unknown.
         */
        ModuleVersionIdentifier getModuleVersionId();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. src/crypto/ecdsa/ecdsa_s390x.s

    	BGT  retry       // signing unsuccessful, but retry with new CSPRN
    	BLT  error       // condition code of 1 indicates a failure
    
    success:
    	MOVD $0, errn+16(FP) // return 0 - sign/verify was successful
    	RET
    
    error:
    	MOVD $1, errn+16(FP) // return 1 - sign/verify failed
    	RET
    
    retry:
    	MOVD $2, errn+16(FP) // return 2 - sign/verify was unsuccessful -- if sign, retry with new RN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 891 bytes
    - Viewed (0)
  3. pkg/controller/resourceclaim/metrics/metrics.go

    	// ResourceClaims().Create calls (both successful and unsuccessful)
    	ResourceClaimCreateAttempts = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      ResourceClaimSubsystem,
    			Name:           "create_attempts_total",
    			Help:           "Number of ResourceClaims creation requests",
    			StabilityLevel: metrics.ALPHA,
    		})
    	// ResourceClaimCreateFailures tracks the number of unsuccessful
    	// ResourceClaims().Create calls
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:23:50 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ComponentResolveResult.java

         * @throws org.gradle.internal.resolve.ModuleVersionResolveException If resolution was unsuccessful and the id is unknown.
         */
        ModuleVersionIdentifier getModuleVersionId() throws ModuleVersionResolveException;
    
        /**
         * Returns the graph resolution state for the component.
         *
         * @throws ModuleVersionResolveException If resolution was unsuccessful and the descriptor is not available.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableArtifactFileResolveResult.java

        boolean isSuccessful();
    
        /**
         * Returns the resolve failure, if any.
         */
        @Override
        @Nullable
        ArtifactResolveException getFailure();
    
        /**
         * @throws ArtifactResolveException If the resolution was unsuccessful.
         */
        @Override
        File getResult() throws ArtifactResolveException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableArtifactResolveResult.java

        boolean isSuccessful();
    
        /**
         * Returns the resolve failure, if any.
         */
        @Override
        @Nullable
        ArtifactResolveException getFailure();
    
        /**
         * @throws ArtifactResolveException If the resolution was unsuccessful.
         */
        @Override
        ResolvableArtifact getResult() throws ArtifactResolveException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization.cc

            serialized `SignatureDef` mapping for the `signature_def_map_serialized`
            argument.
    
            Raises `StatusNotOk` exception if when the run was unsuccessful.
            )pbdoc",
            py::arg("src_saved_model_path"), py::arg("dst_saved_model_path"),
            py::arg("quantization_config_serialized"), py::kw_only(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/AdditionalKDocResolutionProvider.kt

    import org.jetbrains.kotlin.psi.KtElement
    
    /**
     * An extension point to provide additional symbols for a KDoc reference. KDoc link resolution will use symbols returned by this EP
     * only if the real resolution was unsuccessful. You can use this EP by creating a class implementing this interface.
     * For example, let's assume that you want to return symbol `fun foo() = 3` for the following KDoc resolution:
     *
     * ```
     *   package com.example
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/FailedPlan.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.internal.connection
    
    /**
     * Used when we were unsuccessful in the planning phase of a connection:
     *
     *  * A DNS lookup failed
     *  * The configuration is incapable of carrying the request, such as when the client is configured
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authorization/authorizerfactory/delegating.go

    type DelegatingAuthorizerConfig struct {
    	SubjectAccessReviewClient authorizationclient.AuthorizationV1Interface
    
    	// AllowCacheTTL is the length of time that a successful authorization response will be cached
    	AllowCacheTTL time.Duration
    
    	// DenyCacheTTL is the length of time that an unsuccessful authorization response will be cached.
    	// You generally want more responsive, "deny, try again" flows.
    	DenyCacheTTL time.Duration
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top