Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 7,359 for CREATE (0.1 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ModelSetIntegrationTest.groovy

                    names.names.each { n ->
                        people.create { name = n }
                    }
                  }
    
                  @Mutate void addPeople(ModelSet<Person> people) {
                    people.create { name = "p3" }
                    people.create { name = "p4" }
                  }
                }
    
                apply type: Rules
    
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java

        SettableFuture<String> future = SettableFuture.create();
        SettableFuture<String> nested = SettableFuture.create();
        assertTrue(future.setFuture(nested));
        // Later attempts to set the future should return false.
        assertFalse(future.set("x"));
        assertFalse(future.setException(new Exception("bar")));
        assertFalse(future.setFuture(SettableFuture.<String>create()));
        // Check that the future has been set properly.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/chain_test.go

    		accept    bool
    		calls     map[string]bool
    	}{
    		{
    			name:      "all accept",
    			ns:        sysns,
    			operation: Create,
    			options:   &metav1.CreateOptions{},
    			chain: []Interface{
    				makeHandler("a", true, Update, Delete, Create),
    				makeHandler("b", true, Delete, Create),
    				makeHandler("c", true, Create),
    			},
    			calls:  map[string]bool{"a": true, "b": true, "c": true},
    			accept: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinateFactory.java

         */
        @Nonnull
        default ArtifactCoordinate create(@Nonnull Session session, @Nonnull String coordinateString) {
            return create(ArtifactCoordinateFactoryRequest.build(session, coordinateString));
        }
    
        @Nonnull
        default ArtifactCoordinate create(
                @Nonnull Session session, String groupId, String artifactId, String version, String extension) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 10:30:20 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/type/DefaultArtifactTypeRegistryTest.groovy

        def "creates as required and reuses"() {
            expect:
            def container = registry.create()
            container != null
            registry.create().is(container)
        }
    
        def "can attach an artifact type"() {
            expect:
            def container = registry.create()
            container.create('jar') {
                attributes.attribute(Attribute.of('thing', String), '123')
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 14:43:17 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. api/discovery/apis__resource.k8s.io__v1alpha2.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto min_scaled =
            rewriter.create<DivOp>(op.getLoc(), float_min, quant_to_float);
        auto min_scaled_sub =
            rewriter.create<SubOp>(op.getLoc(), quant_min, min_scaled);
    
        auto mid_rounded =
            rewriter.create<RoundOp>(op.getLoc(), scalar_ty, min_scaled_sub);
    
        auto nudged_zero_point_val = rewriter.create<ClipByValueOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  8. tests/create_test.go

    )
    
    func TestCreate(t *testing.T) {
    	user := *GetUser("create", Config{})
    
    	if results := DB.Create(&user); results.Error != nil {
    		t.Fatalf("errors happened when create: %v", results.Error)
    	} else if results.RowsAffected != 1 {
    		t.Fatalf("rows affected expects: %v, got %v", 1, results.RowsAffected)
    	}
    
    	if user.ID == 0 {
    		t.Errorf("user's primary key should has value after create, got : %v", user.ID)
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

      - apiGroups:
        - ""
        resources:
        - pods
        verbs:
        - create
        - delete
        - list
        - patch
        - watch
      - apiGroups:
        - ""
        resources:
        - pods/binding
        verbs:
        - create
      - apiGroups:
        - apps
        resources:
        - controllerrevisions
        verbs:
        - create
        - delete
        - get
        - list
        - patch
        - update
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskCreationIntegrationTest.groovy

                tasks.create("task2", SomeTask) {
                    println "Configure ${path}"
                    dependsOn task1
                }
                tasks.create("other")
            '''
    
            when:
            run("other")
    
            then:
            outputContains("Create :task1")
            outputContains("Configure :task1")
            outputContains("Create :task2")
            outputContains("Configure :task2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 13 09:05:07 UTC 2021
    - 9.8K bytes
    - Viewed (0)
Back to top