Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,782 for better (0.15 sec)

  1. docs/security/tls_configuration_history.md

    <a name="http2_naughty"></a>
    #### ² HTTP/2 Cipher Suite Denylist
    
    Cipher suites that are [discouraged for use][http2_denylist] with HTTP/2. OkHttp includes them because better suites are not commonly available. For example, none of the better cipher suites listed above shipped with Android 4.4 or Java 7.
    
    [OkHttp30]: https://square.github.io/okhttp/changelog_3x/#version-300
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ScopeArtifactFilter.java

     * under the License.
     */
    package org.apache.maven.artifact.resolver.filter;
    
    import java.util.Objects;
    
    /**
     * Filter to only retain objects in the given artifactScope or better.
     *
     */
    public class ScopeArtifactFilter extends AbstractScopeArtifactFilter {
    
        private final String scope;
    
        public ScopeArtifactFilter(String scope) {
            this.scope = scope;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/time/sys_unix.go

    func interrupt() {
    	// There is no mechanism in wasi to interrupt the call to poll_oneoff
    	// used to implement runtime.usleep so this function does nothing, which
    	// somewhat defeats the purpose of TestSleep but we are still better off
    	// validating that time elapses when the process calls time.Sleep than
    	// skipping the test altogether.
    	if runtime.GOOS != "wasip1" {
    		syscall.Kill(syscall.Getpid(), syscall.SIGCHLD)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:10 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/main/java/org/gradle/api/attributes/java/TargetJvmEnvironment.java

    import org.gradle.api.attributes.Attribute;
    
    /**
     * Represents the target JVM environment. Typically, a standard JVM or Android.
     * This attribute can be used by libraries to indicate that a certain variant is better suited for
     * a certain JVM environment. It does however NOT strictly require environments to match, as the
     * general assumption is that Java libraries can also run on environments they are not optimized for.
     *
     * @since 7.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 19:44:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

      overflow: hidden; /* Want scrollbar not here, but in #stack-holder */
    }
    /* Scrollable container for flame graph */
    #stack-holder {
      width: 100%;
      flex-grow: 1;
      overflow-y: auto;
      background: #eee; /* Light grey gives better contrast with boxes */
      position: relative; /* Allows absolute positioning of child boxes */
    }
    /* Flame graph */
    #stack-chart {
      width: 100%;
      position: relative; /* Allows absolute positioning of child boxes */
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

         *
         * <p>This method is intended to be replaced by {@link #addProgressListener(org.gradle.tooling.events.ProgressListener)}. The new progress listener type
         * provides much richer information and much better handling of parallel operations that run during the build, such as tasks that run in parallel.
         * You should prefer using the new listener interface where possible. Note, however, that the new interface is supported only for Gradle 2.5.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-egress/NOTES.txt

    Changes:
    - separate namespace allows:
    -- easier reconfig of just the gateway
    -- TLS secrets and domain name management is isolated, for better security
    -- simplified configuration
    -- multiple versions of the ingress can be used, to minize upgrade risks
    
    - the new chart uses the default namespace service account, and doesn't require
    additional RBAC permissions.
    
    - simplified label structure. Label change is not supported on upgrade.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 15 21:29:06 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/util/internal/ToBeImplemented.java

     * The problem with {@code NotYetImplemented} is that it succeeds no matter what causes the marked test
     * to fail. Tests like that can pass because the expected failure is still present, or even if the
     * expected failure is replaced by some other failure. It's better to write a test that explicitly
     * tests for the expected failure, so when it fails for some other reason, it becomes noticeable.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/validation/PublicationWithProject.java

     */
    
    package org.gradle.api.publish.internal.validation;
    
    import org.gradle.api.artifacts.ModuleVersionIdentifier;
    
    import java.util.Objects;
    
    /**
     * A publication associated with a project's display text, for better error feedback.
     */
    final class PublicationWithProject {
        private final String projectDisplayText;
        private final String publicationName;
        private final ModuleVersionIdentifier coordinates;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_replace.txt

    # (For example, it could be a long-running fork with its own import path.)
    cp go.mod.orig go.mod
    go mod edit -replace=rsc.io/quote/v3=./local/not-rsc.io/quote/v3
    go build -o a3.exe .
    exec ./a3.exe
    stdout 'Clear is better than clever.'
    
    # However, the same module can't be used as two different paths.
    cp go.mod.orig go.mod
    go mod edit -replace=not-rsc.io/quote/v3@v3.0.0=rsc.io/quote/v3@v3.0.0 -require=not-rsc.io/quote/v3@v3.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
Back to top