Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 272 for facility (0.16 sec)

  1. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CheckstyleExtension.java

         *
         * Example: showViolations = false
         */
        public void setShowViolations(boolean showViolations) {
            this.showViolations = showViolations;
        }
    
        /**
         * Enable the ability to use custom DTD files in config and load them from some location on all checkstyle tasks in this project.
         * <strong>Disabled by default due to security concerns.</strong>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    	{as: AFTSQRT, a1: C_FREG, a6: C_U15CON, type_: 93, size: 4},                     /* floating test for sw square root, x-form */
    	{as: ACOPY, a1: C_REG, a6: C_REG, type_: 92, size: 4},                           /* copy/paste facility, x-form */
    	{as: ADARN, a1: C_U15CON, a6: C_REG, type_: 92, size: 4},                        /* deliver random number, x-form */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/DynamicObjectAware.java

     *
     * The exposed dynamic object <i>may</i> provide functionality over and above what the type implementing
     * this interface can do. For example, the {@link DynamicObject} may provide the ability to register new
     * properties or implement methods that this object does not provide in a concrete way.
     */
    @NonNullApi
    public interface DynamicObjectAware {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. docs/changelogs/upgrading_to_okhttp_4.md

    There are three kinds of compatibility we’re tracking:
    
     * **Binary compatibility** is the ability to compile a program against OkHttp 3.x, and then to run
       it against OkHttp 4.x. We’re using the excellent [japicmp][japicmp] library via its
       [Gradle plugin][japicmp_gradle] to enforce binary compatibility.
    
     * **Java source compatibility** is the ability to upgrade Java uses of OkHttp 3.x to 4.x without
       changing `.java` files.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VariantSelectionDetails.java

    import org.gradle.api.Action;
    import org.gradle.api.attributes.AttributeContainer;
    
    /**
     * Allows configuring the variant-aware selection aspects of a specific
     * dependency. This includes the ability to substitute a dependency on
     * a platform with another platform, or substitute a dependency without
     * attributes with a dependency with attributes.
     *
     * @since 6.6
     */
    public interface VariantSelectionDetails {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper.go

    	// Handlers should always test for this ability at runtime.
    	//
    	// The Hijacker interface is implemented by ResponseWriters that allow an HTTP handler
    	// to take over the connection.
    	// The default ResponseWriter for HTTP/1.x connections supports Hijacker, but HTTP/2 connections
    	// intentionally do not. ResponseWriter wrappers may also not support Hijacker.
    	// Handlers should always test for this ability at runtime
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  7. architecture/networking/controllers.md

    Typically, the whole `kclient.Client` is used,though.
    
    Functionality offered by `kclient` includes:
    * Typed clients (via generics) and more ergonomic APIs
    * Ability to make a _delayed_ client. This is used when making clients based on CRDs that may not exist.
      In general, Istio does not fail on missing CRDs and prefers to treat these as if there were just zero resources for that client.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 17:41:25 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. samples/ratelimit/local-rate-limit-service.yaml

                  token_bucket:
                    max_tokens: 100
                    tokens_per_fill: 100
                    fill_interval: 60s
                  enable_x_ratelimit_headers: DRAFT_VERSION_03 # This adds the ability to see headers for how many tokens are left in the bucket, how often the bucket refills, and what is the token bucket max.
                  filter_enabled:
                    runtime_key: test_enabled
                    default_value:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 08:22:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/compress/bzip2/bit_reader.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package bzip2
    
    import (
    	"bufio"
    	"io"
    )
    
    // bitReader wraps an io.Reader and provides the ability to read values,
    // bit-by-bit, from it. Its Read* methods don't return the usual error
    // because the error handling was verbose. Instead, any error is kept and can
    // be checked afterwards.
    type bitReader struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/reconciler/reconciler.go

    	if len(rc.volumesNeedUpdateFromNodeStatus) != 0 {
    		rc.updateReconstructedFromNodeStatus()
    	}
    	if len(rc.volumesNeedUpdateFromNodeStatus) == 0 {
    		// ASW is fully populated only after both devicePaths and uncertain volume attach-ability
    		// were reconstructed from the API server.
    		// This will start reconciliation of node.status.volumesInUse.
    		rc.updateLastSyncTime()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top