Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,726 for createFn (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/collections/DomainObjectCollectionFactory.java

        /**
         * Creates a {@link NamedDomainObjectContainer} for managing named objects of the specified type. The given closure is used to create object instances. The name of the instance to be created is passed as a parameter to the closure.
         */
        <T> NamedDomainObjectContainer<T> newNamedDomainObjectContainer(Class<T> type, Closure factoryClosure);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/id/ConfigurationCacheableIdFactory.java

        private final AtomicLong sequence = new AtomicLong(0);
    
        /**
         * Creates a new unique id.
         * <p>
         * New ids can only be created if no ids have been loaded from the configuration cache.
         * When re-creating an object due to loading from the configuration cache,
         * {@link #idRecreated()} must be called before the object is re-created to make sure the consistency of the ids.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. cluster/gce/windows/testonly/user-profile.psm1

    <#
    .Synopsis
       Rough PS functions to create new user profiles
    .DESCRIPTION
       Call the Create-NewProfile function directly to create a new profile
    .EXAMPLE
       Create-NewProfile -Username 'testUser1' -Password 'testUser1'
    .NOTES
       Created by: Josh Rickard (@MS_dministrator) and Thom Schumacher (@driberif)
       Forked by: @crshnbrn66, then @pjh (2018-11-08). See
         https://gist.github.com/pjh/9753cd14400f4e3d4567f4553ba75f1d/revisions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/WatchTest.java

                setupWatch(w);
                try ( SmbResource cr = new SmbFile(this.base, "created") ) {
                    cr.createNewFile();
                    assertNotified(w, FileNotifyInformation.FILE_ACTION_ADDED, "created", null);
                }
    
                try ( SmbResource cr = new SmbFile(this.base, "created2") ) {
                    cr.createNewFile();
                }
    
                setupWatch(w);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/DuplicatesStrategy.java

         * <p>
         * If an attempt is made to create a duplicate file/entry during an operation, ignore the item.
         * This will leave the file/entry that was first copied/created in place.
         */
        EXCLUDE,
    
        /**
         * Do not attempt to prevent duplicates, but log a warning message when multiple items
         * are to be created at the same path.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 18 17:47:56 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/generators/go122-create-syscall-with-p.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests a G being created from within a syscall.
    //
    // Specifically, it tests a scenerio wherein a C
    // thread is calling into Go, creating a goroutine in
    // a syscall (in the tracer's model). Because the actual
    // m can be reused, it's possible for that m to have never
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. cluster/addons/README.md

    It would be hard to update `Pod` because many fields in `Pod` are immutable. For
    `ReplicationController` and `DaemonSet`, in-place update may not trigger the underlying
    pods to be re-created. You probably need to change their names during update to trigger
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  8. pkg/monitoring/monitoring.go

    	// RecordInt makes an observation of the provided value for the measure.
    	RecordInt(value int64)
    
    	// With creates a new Metric, with the LabelValues provided. This allows creating
    	// a set of pre-dimensioned data for recording purposes. This is primarily used
    	// for documentation and convenience. Metrics created with this method do not need
    	// to be registered (they share the registration of their parent Metric).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/ConnectCompletion.java

    /**
     * A builder that allows a {@link Connection} to be created once the underlying transport with the peer has been
     * established.
     */
    public interface ConnectCompletion {
        /**
         * Creates the connection. Uses the specified serializer for all messages.
         *
         * @return The serializer to use.
         */
        <T> RemoteConnection<T> create(StatefulSerializer<T> serializer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinCompositeProviderFactory.kt

    /**
     * [KotlinCompositeProviderFactory] is used by various [KotlinCompositeProvider]s to share code related to provider creation and flattening.
     */
    public class KotlinCompositeProviderFactory<P : KotlinComposableProvider>(
        private val emptyProvider: P,
        private val composeProviders: (List<P>) -> P,
    ) {
        public fun create(providers: List<P>): P = when (providers.size) {
            0 -> emptyProvider
            1 -> providers.single()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top