Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,540 for unsuccessful (0.18 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/volume/ephemeral/metrics/metrics.go

    	// PersistentVolumeClaims().Create calls (both successful and unsuccessful)
    	EphemeralVolumeCreateAttempts = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      EphemeralVolumeSubsystem,
    			Name:           "create_total",
    			Help:           "Number of PersistenVolumeClaims creation requests",
    			StabilityLevel: metrics.ALPHA,
    		})
    	// EphemeralVolumeCreateFailures tracks the number of unsuccessful
    	// PersistentVolumeClaims().Create calls
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 11:01:37 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/authorization/union/union.go

    func New(authorizationHandlers ...authorizer.Authorizer) authorizer.Authorizer {
    	return unionAuthzHandler(authorizationHandlers)
    }
    
    // Authorizes against a chain of authorizer.Authorizer objects and returns nil if successful and returns error if unsuccessful
    func (authzHandler unionAuthzHandler) Authorize(ctx context.Context, a authorizer.Attributes) (authorizer.Decision, string, error) {
    	var (
    		errlist    []error
    		reasonlist []string
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 28 20:27:28 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pilot/pkg/request/command.go

    		return err
    	}
    	defer resp.Body.Close()
    	respBody, err := io.ReadAll(resp.Body)
    	if err != nil {
    		return err
    	}
    	if resp.StatusCode > 399 && resp.StatusCode != 404 {
    		return fmt.Errorf("received unsuccessful status code %v: %v", resp.StatusCode, string(respBody))
    	}
    	fmt.Println(string(respBody))
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 02 03:58:02 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. 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)
Back to top