Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 272 for facility (0.31 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketExtensions.kt

     *
     * Note that [java.util.zip.Deflater] is hardcoded to use 15 bits (32 KiB) for
     * `client_max_window_bits` and [java.util.zip.Inflater] is hardcoded to use 15 bits (32 KiB) for
     * `server_max_window_bits`. This harms our ability to support these parameters:
     *
     *  * If `client_max_window_bits` is less than 15, OkHttp must close the web socket with code 1010.
     *    Otherwise it would compress values in a way that servers could not decompress.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. pkg/kube/krt/README.md

    * A `Name`, `Namespace`, `Labels`, and `LabelSelector` may optionally be included, for use with filters (see below).
    
    ## Derived Collections
    
    The core of the framework is in the ability to derive collections from others.
    
    In general, these are built by providing some `func(inputs...) outputs...` (called "transformation" functions).
    While more could be expressed, there are currently three forms implemented.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    storj.farm
    
    // Studenten Net Twente : http://www.snt.utwente.nl/
    // Submitted by Silke Hofstra <******@****.***>
    utwente.io
    
    // Student-Run Computing Facility : https://www.srcf.net/
    // Submitted by Edwin Balani <******@****.***>
    soc.srcf.net
    user.srcf.net
    
    // Sub 6 Limited: http://www.sub6.com
    // Submitted by Dan Miller <******@****.***>
    temp-dns.com
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/jacoco_report_aggregation_plugin.adoc

    // limitations under the License.
    
    [[jacoco_report_aggregation_plugin]]
    = The JaCoCo Report Aggregation Plugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/rich_versions.adoc

    🔒
    |===
    
    Lines annotated with a lock (🔒) indicate that leveraging <<dependency_locking.adoc#dependency-locking,dependency locking>> makes sense in this context.
    Another concept that relates with rich version declaration is the ability to publish <<publishing_maven.adoc#publishing_maven:resolved_dependencies,resolved versions>> instead of declared ones.
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectContainer.java

    import groovy.lang.Closure;
    import org.gradle.api.provider.Provider;
    import org.gradle.util.Configurable;
    
    /**
     * <p>A named domain object container is a specialization of {@link NamedDomainObjectSet} that adds the ability to create
     * instances of the element type.</p>
     *
     * <p>Implementations may use different strategies for creating new object instances.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    Local plugins can encapsulate common build logic, provide integrations with internal systems or tools, or abstract complex functionality into reusable components.
    
    Gradle provides users with the ability to develop custom plugins using APIs.
    To create your own plugin, you'll typically follow these steps:
    
    1. *Define the plugin class:* create a new class that implements the `Plugin<Project>` interface.
    +
    [source,kotlin]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

            this.executable = objectFactory.fileProperty();
            this.installedExecutable.set(getLibDirectory().map(directory -> directory.file(executable.getAsFile().get().getName())));
            // A further work around for missing ability to skip task when input file is missing (see #getInputFileIfExists below)
            getInputs().file(executable);
            this.targetPlatform = objectFactory.property(NativePlatform.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager.go

    	certlistersv1alpha1 "k8s.io/client-go/listers/certificates/v1alpha1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/klog/v2"
    )
    
    const (
    	maxLabelSelectorLength = 100 * 1024
    )
    
    // Manager abstracts over the ability to get trust anchors.
    type Manager interface {
    	GetTrustAnchorsByName(name string, allowMissing bool) ([]byte, error)
    	GetTrustAnchorsBySigner(signerName string, labelSelector *metav1.LabelSelector, allowMissing bool) ([]byte, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/plugins/MavenPublishPlugin.java

    import org.gradle.internal.typeconversion.NotationParser;
    
    import javax.inject.Inject;
    import java.util.Set;
    
    import static org.apache.commons.lang.StringUtils.capitalize;
    
    /**
     * Adds the ability to publish in the Maven format to Maven repositories.
     *
     * @since 1.4
     * @see <a href="https://docs.gradle.org/current/userguide/publishing_maven.html">Maven Publishing reference</a>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top