Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for crack (0.04 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/provider/HasMultipleValues.java

         */
        void set(@Nullable Iterable<? extends T> elements);
    
        /**
         * Sets the property to have the same value of the given provider, and replaces any existing value. This property will track the value of the provider and query its value each time the value of this property is queried. When the provider has no value, this property will also have no value.
         *
         * @param provider Provider of the elements.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/SelfResolvingDependencyIntegrationTest.groovy

            run "verify"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

     * and the list of the operations can be retrieved as the CachedEnvironmentState object. This mode is intended for the
     * builds with the configuration phase. The second mode applies the restored state to the environment and doesn't
     * track anything. This mode is used when the configuration is restored from the configuration cache.
     * Mode selection happens upon the first use of the class. Calling an operation that isn't supported in the current
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. pkg/kubelet/pod/testing/fake_mirror_client.go

    )
    
    type FakeMirrorClient struct {
    	mirrorPodLock sync.RWMutex
    	// Note that a real mirror manager does not store the mirror pods in
    	// itself. This fake manager does this to track calls.
    	mirrorPods   sets.Set[string]
    	createCounts map[string]int
    	deleteCounts map[string]int
    }
    
    func NewFakeMirrorClient() *FakeMirrorClient {
    	m := FakeMirrorClient{}
    	m.mirrorPods = sets.New[string]()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/Environment.kt

    import org.gradle.internal.service.scopes.EventScope
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.util.internal.GUtil
    import java.io.File
    
    
    /**
     * Augments the [DefaultEnvironment] to track access to properties files, environment variables and system properties.
     **/
    class ConfigurationCacheEnvironment(
        private val listenerManager: ListenerManager
    ) : DefaultEnvironment() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultFileCollectionDependency.java

            DeprecationLogger.deprecate("Accessing the build dependencies of a file collection dependency")
                .withAdvice("Add the dependency to a resolvable configuration use the configuration to track task dependencies.")
                .willBecomeAnErrorInGradle9()
                .withUpgradeGuideSection(8, "deprecate_self_resolving_dependency")
                .nagUser();
    
            return source.getBuildDependencies();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. pkg/revisions/tag_watcher.go

    	"istio.io/api/label"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/kube/kubetypes"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // TagWatcher keeps track of the current tags and can notify watchers
    // when the tags change.
    type TagWatcher interface {
    	Run(stopCh <-chan struct{})
    	HasSynced() bool
    	AddHandler(handler TagHandler)
    	GetMyTags() sets.String
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemLocationProperty.java

    /**
     * Represents some element of the file system. A file system element has two parts: its location and its content. A file system element's content, may be the output of a task
     * or tasks. This property object keeps track of both the location and the task or tasks that produce the content of the element.
     *
     * <p><b>Note:</b> This interface is not intended for implementation by build script or plugin authors.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 12:28:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         */
        void set(@Nullable T value);
    
        /**
         * Sets the property to have the same value as the given provider, replacing whatever value the property already had.
         * This property will track the value of the provider and query its value each time the value of the property is queried.
         * When the provider has no value, this property will also have no value.
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	// ReadycheckTimeout specifies the timeout used when checking readiness
    	ReadycheckTimeout time.Duration
    
    	LeaseManagerConfig etcd3.LeaseManagerConfig
    
    	// StorageObjectCountTracker is used to keep track of the total
    	// number of objects in the storage per resource.
    	StorageObjectCountTracker flowcontrolrequest.StorageObjectCountTracker
    }
    
    // ConfigForResource is a Config specialized to a particular `schema.GroupResource`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top