Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 742 for failures (0.23 sec)

  1. okhttp/src/main/kotlin/okhttp3/EventListener.kt

        call: Call,
        inetSocketAddress: InetSocketAddress,
        proxy: Proxy,
        protocol: Protocol?,
      ) {
      }
    
      /**
       * Invoked when a connection attempt fails. This failure is not terminal if further routes are
       * available and failure recovery is enabled.
       *
       * If the `call` uses HTTPS, this will be invoked after [secureConnectStart], otherwise it will
       * invoked after [connectStart].
       */
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    	proxiedHeadRequestsFailures         MetricName = "proxied_head_requests_failures"
    	proxiedPutTaggingRequestFailures    MetricName = "proxied_put_tagging_requests_failures"
    	proxiedGetTaggingRequestFailures    MetricName = "proxied_get_tagging_requests_failures"
    	proxiedDeleteTaggingRequestFailures MetricName = "proxied_delete_tagging_requests_failures"
    
    	freeBytes       MetricName = "free_bytes"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                        final String urlValue = Pattern.quote(u);
                        crawler.addExcludeFilter(urlValue);
                        if (logger.isInfoEnabled()) {
                            logger.info("Excluded URL from failures: {}", urlValue);
                        }
                    });
                }
    
                if (logger.isDebugEnabled()) {
                    logger.debug("Crawling {}", urlsStr);
                }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

                 * global profile manager which is required to build a POM like a CLI invocation does. Failure to consider
                 * the activated profiles can cause repo declarations to be lost which in turn will result in artifact
                 * resolution failures, in particular when using the enhanced local repo which guards access to local files
                 * based on the configured remote repos.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/offline-mode.apt

      in which there is no network connection, and providing a robust m2 service
      offering in such circumstances. Introduction of offline mode allows m2 to
      anticipate the inevitable network failures that accompany being physically
      disconnected from the network, and adjust it's behavior accordingly.
    
      It is more than simply understanding that m2 cannot go and check for the
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                  type: integer
                                consecutiveLocalOriginFailures:
                                  description: The number of consecutive locally originated
                                    failures before ejection occurs.
                                  nullable: true
                                  type: integer
                                interval:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 18:46:49 GMT 2024
    - 570.3K bytes
    - Viewed (0)
  7. cmd/data-usage-utils.go

    	// Total Size for objects that have not yet been replicated
    	ReplicationPendingSizeV1 uint64 `json:"objectsPendingReplicationTotalSize"`
    	// Total size for objects that have witness one or more failures and will be retried
    	ReplicationFailedSizeV1 uint64 `json:"objectsFailedReplicationTotalSize"`
    	// Total size for objects that have been replicated to destination
    	ReplicatedSizeV1 uint64 `json:"objectsReplicatedTotalSize"`
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Mar 10 09:15:15 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/alerts.md

          },
          "annotations": {
            "description": "MinIO instance 127.0.0.1:9000 of job minio-job has tolerance <=0 for more than 5 minutes.",
            "summary": "Instance 127.0.0.1:9000 unable to tolerate node failures"
          },
          "startsAt": "2023-11-18T06:20:09.456Z",
          "endsAt": "0001-01-01T00:00:00Z",
          "generatorURL": "http://fedora-minio:9090/graph?g0.expr=minio_cluster_health_erasure_set_tolerance+%3C%3D+0&g0.tab=1",
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Jan 28 20:53:59 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

            // notify listeners about "soft" project build failures only
            if (t instanceof Exception && !(t instanceof RuntimeException)) {
                eventCatapult.fire(ExecutionEvent.Type.ProjectFailed, currentSession, null, (Exception) t);
            }
    
            // reactor failure modes
            if (t instanceof RuntimeException || !(t instanceof Exception)) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.2K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    It looks like the following:
    
    ```
    Execution failed for task ':architecture-test:checkBinaryCompatibility'.
    > A failure occurred while executing me.champeau.gradle.japicmp.JApiCmpWorkAction
       > Detected binary changes.
             - current: ...
             - baseline: ...
         
         See failure report at file:///<path to Gradle checkout>/subprojects/architecture-test/build/reports/binary-compatibility/report.html
    ```
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 09 15:30:53 GMT 2024
    - 15.6K bytes
    - Viewed (0)
Back to top