Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 968 for fails (0.03 sec)

  1. docs/metrics/healthcheck/README.md

    ## Liveness probe
    
    This probe always responds with '200 OK'. Only fails if 'etcd' is configured and unreachable. When liveness probe fails, Kubernetes like platforms restart the container.
    
    ```
    livenessProbe:
      httpGet:
        path: /minio/health/live
        port: 9000
        scheme: HTTP
      initialDelaySeconds: 120
    Registered: 2025-05-25 19:28
    - Last Modified: 2023-07-06 16:18
    - 2.5K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/Transport.java

         *
         * @throws RuntimeException If PUT fails for any reason.
         */
        void put(@Nonnull Path source, @Nonnull URI relativeTarget);
    
        /**
         * PUTs the source byte array to target URI. The target MUST BE relative from the
         * {@link RemoteRepository#getUrl()} root.
         *
         * @throws RuntimeException If PUT fails for any reason.
         */
    Registered: 2025-05-24 08:56
    - Last Modified: 2023-03-23 05:29
    - 4.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainManager.java

         * @param requirements Key-value pairs specifying toolchain requirements (e.g., "version": "11")
         * @return List of matching toolchains, never null
         * @throws ToolchainManagerException if toolchain retrieval fails
         */
        @Nonnull
        List<Toolchain> getToolchains(@Nonnull Session session, String type, Map<String, String> requirements);
    
        /**
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-02-11 12:33
    - 3.5K bytes
    - Viewed (0)
  4. operator/cmd/mesh/test-util_test.go

    }
    
    // mustGetService returns the service with the given name or fails if it's not found in objs.
    func mustGetService(g *WithT, objs *ObjectSet, name string) manifest.Manifest {
    	obj := objs.kind(gvk.Service.Kind).nameEquals(name)
    	g.Expect(obj).Should(Not(BeNil()))
    	return *obj
    }
    
    // mustGetDeployment returns the deployment with the given name or fails if it's not found in objs.
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-09-18 14:00
    - 15.8K bytes
    - Viewed (0)
  5. .github/workflows/codeql-analysis.yml

        # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
        # If this step fails, then you should remove it and run the build manually (see below)
        - name: Autobuild
          uses: github/codeql-action/autobuild@v1
    
        # â„šī¸ Command-line programs to run using the OS shell.
        # 📚 https://git.io/JvXDl
    
        # âœī¸ If the Autobuild fails above, remove it and uncomment the following three lines
    Registered: 2025-05-25 00:10
    - Last Modified: 2020-10-02 13:22
    - 2.5K bytes
    - Viewed (0)
  6. istioctl/pkg/proxyconfig/proxyconfig_test.go

    		},
    		{ // supplying valid pod name retrieves Envoy config (fails because we don't check in Envoy config unit tests)
    			execClientConfig: loggingConfig,
    			args:             strings.Split("bootstrap httpbin-794b576b6c-qx6pf", " "),
    			expectedString:   `config dump has no configuration type`,
    			wantException:    true,
    		},
    		{ // supplying valid pod name retrieves Envoy config (fails because we don't check in Envoy config unit tests)
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-01-15 15:19
    - 11.2K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

            is SSLHandshakeException -> {
              // On Android, the handshake fails before the certificate pinner runs.
              assertThat(expected.message!!).contains("Could not validate certificate")
            }
            is SSLPeerUnverifiedException -> {
              // On OpenJDK, the handshake succeeds but the certificate pinner fails.
              assertThat(expected.message!!).startsWith("Certificate pinning failure!")
            }
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 24.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Futures.java

      }
    
      /**
       * Returns a new {@code Future} whose result is asynchronously derived from the result of the
       * given {@code Future}. If the given {@code Future} fails, the returned {@code Future} fails with
       * the same exception (and the function is not invoked).
       *
       * <p>More precisely, the returned {@code Future} takes its result from a {@code Future} produced
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-04-14 16:07
    - 64.4K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/ConcurrentHashMultisetTest.java

      /**
       * Simulate some of the races that can happen on add. We can't easily simulate the race that
       * happens when an {@link AtomicInteger#compareAndSet} fails, but we can simulate the case where
       * the putIfAbsent returns a non-null value, and the case where the replace() of an observed zero
       * fails.
       */
      public void testAdd_withFailures() {
        AtomicInteger existing = new AtomicInteger(12);
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 18:46
    - 14.3K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainFactory.java

         */
        @Nonnull
        Toolchain createToolchain(@Nonnull ToolchainModel model) throws ToolchainFactoryException;
    
        /**
         * Creates a default toolchain instance using system defaults.
         *
         * @return Optional containing the default toolchain if available
         * @throws ToolchainFactoryException if default toolchain creation fails
         */
        @Nonnull
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-02-11 12:33
    - 2.1K bytes
    - Viewed (0)
Back to top