Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,170 for createFn (0.15 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. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	EncryptionAlgorithm kubeadmapi.EncryptionAlgorithmType
    }
    
    // CreateJoinControlPlaneKubeConfigFiles will create and write to disk the kubeconfig files required by kubeadm
    // join --control-plane workflow, plus the admin kubeconfig file used by the administrator and kubeadm itself; the
    // kubelet.conf file must not be created because it will be created and signed by the kubelet TLS bootstrap process.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/img/ci-systems/github-actions-create-repository.png

    github-actions-create-repository.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 19:03:12 UTC 2024
    - 311.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top