Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 244 for Configurable (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/caching/internal/BuildCacheServices.java

            registration.addProvider(new ServiceRegistrationProvider() {
                @Provides
                BufferProvider createBufferProvider() {
                    // TODO Make buffer size configurable
                    return new ThreadLocalBufferProvider(64 * 1024);
                }
            });
        }
    
        @Override
        public void registerBuildTreeServices(ServiceRegistration registration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. pkg/kubelet/cadvisor/cadvisor_linux.go

    )
    
    type cadvisorClient struct {
    	imageFsInfoProvider ImageFsInfoProvider
    	rootPath            string
    	manager.Manager
    }
    
    var _ Interface = new(cadvisorClient)
    
    // TODO(vmarmol): Make configurable.
    // The amount of time for which to keep stats in memory.
    const statsCacheDuration = 2 * time.Minute
    const maxHousekeepingInterval = 15 * time.Second
    const defaultHousekeepingInterval = 10 * time.Second
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 22:07:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r56/ToolingApiEclipseModelTestSourcesCrossVersionSpec.groovy

            depD.classpathAttributes.find { it.name == 'without_test_code' && it.value == 'false' }
        }
    
        @TargetGradleVersion(">=7.5")
        def "Test source sets and dependency configurations are configurable"() {
            setup:
            buildFile << """
                plugins {
                    id 'java-library'
                    id 'eclipse'
                }
    
                ${mavenCentralRepository()}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_tasks.adoc

    A task is optionally *configured* in a build script using the link:{javadocPath}/org/gradle/api/tasks/TaskCollection.html[`TaskCollection.named()`] method.
    
    The `CreateFileTask` class is updated so that the text in the file is configurable:
    
    .build.gradle.kts
    [source,kotlin]
    ----
    abstract class CreateFileTask : DefaultTask() {
        @get:Input
        abstract val fileText: Property<String>
    
        @Input
        val fileName = "myfile.txt"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/cpp/plugins/CppLibraryPlugin.java

            library.getBinaries().whenElementKnown(binary -> {
                library.getMainPublication().addVariant(binary);
            });
    
            project.afterEvaluate(p -> {
                // TODO: make build type configurable for components
                Dimensions.libraryVariants(library.getBaseName(), library.getLinkage(), library.getTargetMachines(), objectFactory, attributesFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 15:38:28 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. architecture/networking/controllers.md

    * Correctness at startup; with the sequencing above, items are only processed once all informers are synced. This means queries will not return stale data at startup.
    * Deduping of identical events
    * Automatic retrying of failed events (configurable)
    
    The above logic is critical to handle correctly to ensure correctness of a controller.
    The [Example Controller](../../pkg/kube/controllers/example_test.go) is a key reference point for any controller development;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 17:41:25 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. pkg/test/util/retry/retry.go

    		cfg.delay = delay
    		cfg.delayMax = delay
    	}
    }
    
    func BackoffDelay(delay time.Duration) Option {
    	return func(cfg *config) {
    		cfg.delay = delay
    		// Currently, hardcode to 16 backoffs. We can make it configurable if needed
    		cfg.delayMax = delay * 16
    	}
    }
    
    // Converge sets the number of successes in a row needed to count a success.
    // This is useful to avoid the case where tests like `coin.Flip() == HEADS` will always
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services;
    
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Message builder that supports configurable styling.
     *
     * @since 4.0.0
     * @see MessageBuilderFactory
     */
    public interface MessageBuilder extends Appendable {
    
        /**
         * Append message content in trace style.
         * By default, bold magenta
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. docs/erasure/storage-class/README.md

    # MinIO Storage Class Quickstart Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    MinIO server supports storage class in erasure coding mode. This allows configurable data and parity drives per object.
    
    This page is intended as a summary of MinIO Erasure Coding. For a more complete explanation, see <https://min.io/docs/minio/linux/operations/concepts/erasure-coding.html>.
    
    ## Overview
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/plugins/gcs/expiring_lru_cache.h

    #include "absl/synchronization/mutex.h"
    #include "tensorflow/c/env.h"
    #include "tensorflow/c/tf_status.h"
    
    namespace tf_gcs_filesystem {
    
    /// \brief An LRU cache of string keys and arbitrary values, with configurable
    /// max item age (in seconds) and max entries.
    ///
    /// This class is thread safe.
    template <typename T>
    class ExpiringLRUCache {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 09 19:31:22 UTC 2020
    - 6.3K bytes
    - Viewed (0)
Back to top