Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 7,778 for creat (0.06 sec)

  1. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/AbstractEclipseIntegrationSpec.groovy

            EclipseClasspathFixture.create(testDirectory, executer.gradleUserHomeDir)
        }
    
        protected EclipseClasspathFixture classpath(String project) {
            EclipseClasspathFixture.create(testDirectory.file(project), executer.gradleUserHomeDir)
        }
    
        protected EclipseWtpComponentFixture getWtpComponent() {
            EclipseWtpComponentFixture.create(testDirectory)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/TaskFactoryTest.groovy

            when:
            taskFactory.create(new TaskIdentity(NotATask, 'task', null, Path.path(':task'), null, 12))
    
            then:
            InvalidUserDataException e = thrown()
            e.message == "Cannot create task ':task' of type 'NotATask' as it does not implement the Task interface."
        }
    
        void testCreateTaskForUnsupportedType() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 25 21:08:17 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. test/ken/string.go

    		}
    	}
    
    	/* slice strings */
    	print(c[0:3], c[3:])
    
    	print("\n")
    
    	/* create string with integer constant */
    	c = string('x')
    	if c != "x" {
    		panic("create int " + c)
    	}
    
    	/* create string with integer variable */
    	v := 'x'
    	c = string(v)
    	if c != "x" {
    		panic("create int " + c)
    	}
    
    	/* create string with byte array */
    	var z1 [3]byte
    	z1[0] = 'a'
    	z1[1] = 'b'
    	z1[2] = 'c'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 31 17:36:45 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/python/mlir_wrapper/mlir_wrapper.pyi

        def __init__(self, *args, **kwargs) -> None: ...
        def create(self, arg0: Location, arg1: list[Value]) -> Operation: ...
    
    class Tf_AddV2Op:
        def __init__(self, *args, **kwargs) -> None: ...
        def create(self, arg0: Location, arg1: Value, arg2: Value) -> Operation: ...
    
    class Tf_AnyOp:
        def __init__(self, *args, **kwargs) -> None: ...
        def create(self, arg0: Location, arg1: Value, arg2: Value, arg3: bool) -> Operation: ...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 09 17:10:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultPolymorphicDomainObjectContainerTest.groovy

            when:
            container.create("fred")
    
            then:
            InvalidUserDataException e = thrown()
            e.message == "Cannot create a Person named 'fred' because this container does not support creating " +
                "elements by name alone. Please specify which subtype of Person to create. Known subtypes are: (None)"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 16K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

            def finalReadOnlyBean = create(HasReadOnlyFinalProperty, Describables.of("<display name>"))
            def readOnlyBean = create(HasReadOnlyProperty, Describables.of("<display name>"))
            def readOnlyBeanWithMapping = create(HasReadOnlyProperty, Describables.of("<display name>"))
            readOnlyBeanWithMapping.conventionMapping.map("other") { "ignore" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskCreationIntegrationTest.groovy

            failure.assertHasCause("Cannot create 'tasks.a' using creation rule 'MyPlugin#addTasks2(ModelMap<Task>, MyModel) > create(a)' as the rule 'MyPlugin#addTasks1(ModelMap<Task>, MyModel) > create(a)' is already registered to create this model element.")
        }
    
        def "cannot create tasks during config of task"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:50:47 UTC 2020
    - 16.9K bytes
    - Viewed (0)
  8. tests/upsert_test.go

    		t.Errorf("user should be created with search value")
    	}
    
    	DB.FirstOrCreate(&user3, map[string]interface{}{"name": "find or create 2"})
    	if user3.Name != "find or create 2" || user3.ID == 0 {
    		t.Errorf("user should be created with inline search value")
    	}
    
    	DB.Where(&User{Name: "find or create 3"}).Attrs("age", 44).FirstOrCreate(&user4)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Sep 05 07:39:19 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  9. plugin/pkg/admission/noderestriction/admission_test.go

    		expectError    string
    	}{
    		"create allowed, enabled": {
    			operation:      admission.Create,
    			obj:            sliceNode,
    			featureEnabled: true,
    			expectError:    "",
    		},
    		"create disallowed, enabled": {
    			operation:      admission.Create,
    			obj:            sliceOtherNode,
    			featureEnabled: true,
    			expectError:    err,
    		},
    		"create allowed, disabled": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  10. docs/bucket/replication/setup_replication.sh

    #!/bin/sh
    
    # Create buckets with versioning and object locking enabled.
    mc mb -l source/bucket
    mc mb -l dest/bucket
    
    #### Create a replication admin on source alias
    # create a replication admin user : repladmin
    mc admin user add source repladmin repladmin123
    
    # create a replication policy for repladmin
    cat >repladmin-policy-source.json <<EOF
    {
        "Version": "2012-10-17",
        "Statement": [
        {
            "Action": [
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 26 05:07:25 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top