Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,948 for createFn (0.12 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            e.cause instanceof DuplicateModelException
            e.cause.message == /Cannot create 'foo.bar' using creation rule 'create foo.bar as Integer' as the rule 'create foo.bar as String' is already registered to create this model element./
        }
    
        def "inputs for creation are bound when inputs already closed"() {
            def action = Mock(Transformer)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         */
        fun copy(configuration: Action<CopySpec>): WorkResult
    
        /**
         * Creates a {@link CopySpec} which can later be used to copy files or create an archive.
         *
         * @return The created [CopySpec]
         */
        fun copySpec(): CopySpec
    
        /**
         * Creates a {@link CopySpec} which can later be used to copy files or create an archive.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/FileSystem.java

        boolean isCaseSensitive();
    
        /**
         * Tells if the file system can create symbolic links. If the answer cannot be determined accurately,
         * <code>false</code> is returned.
         *
         * @return <code>true</code> if the file system can create symbolic links, <code>false</code> otherwise
         */
        boolean canCreateSymbolicLink();
    
        /**
         * Creates a symbolic link to a target file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. pkg/controller/replicaset/replica_set.go

    	if diff < 0 {
    		diff *= -1
    		if diff > rsc.burstReplicas {
    			diff = rsc.burstReplicas
    		}
    		// TODO: Track UIDs of creates just like deletes. The problem currently
    		// is we'd need to wait on the result of a create to record the pod's
    		// UID, which would require locking *across* the create, which will turn
    		// into a performance bottleneck. We should generate a UID for the pod
    		// beforehand and store it via ExpectCreations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectCollection.java

        /**
         * Locates a object by name, without triggering its creation or configuration, failing if there is no such object.
         *
         * @param name The object's name
         * @return A {@link Provider} that will return the object when queried. The object may be created and configured at this point, if not already.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 12:50:52 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go

    	}
    
    	// ensure that we're not trying to create objects in terminating namespaces
    	if a.GetOperation() == admission.Create {
    		if namespace.Status.Phase != v1.NamespaceTerminating {
    			return nil
    		}
    
    		err := admission.NewForbidden(a, fmt.Errorf("unable to create new content in namespace %s because it is being terminated", a.GetNamespace()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/provision_test.go

    				// Inject error to five kubeclient.PersistentVolumes.Create()
    				// calls
    				{Verb: "create", Resource: "persistentvolumes", Error: errors.New("Mock creation error1")},
    				{Verb: "create", Resource: "persistentvolumes", Error: errors.New("Mock creation error2")},
    				{Verb: "create", Resource: "persistentvolumes", Error: errors.New("Mock creation error3")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. tests/fuzz/kube_crd_fuzzer.go

    	"istio.io/istio/pkg/config/schema/collections"
    )
    
    // FuzzKubeCRD implements a fuzzer that targets
    // the kube CRD in two steps.
    // It first creates an object with a config
    // that has had pseudo-random values inserted.
    // When a valid object has been created, it
    // tries and convert that object. If this
    // conversion fails, it panics.
    func FuzzKubeCRD(data []byte) int {
    	f := fuzz.NewConsumer(data)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

        /**
         * Creates a {@link CopySpec} which can later be used to copy files or create an archive.
         *
         * @return The created [CopySpec]
         */
        @Suppress("unused")
        fun copySpec(): CopySpec =
            fileOperations.copySpec()
    
        /**
         * Creates a {@link CopySpec} which can later be used to copy files or create an archive.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/types.go

    	ResourceParameters *ResourceConfig
    }
    
    // CgroupManager allows for cgroup management.
    // Supports Cgroup Creation ,Deletion and Updates.
    type CgroupManager interface {
    	// Create creates and applies the cgroup configurations on the cgroup.
    	// It just creates the leaf cgroups.
    	// It expects the parent cgroup to already exist.
    	Create(*CgroupConfig) error
    	// Destroy the cgroup.
    	Destroy(*CgroupConfig) error
    	// Update cgroup configuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top