Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 5,796 for creat (0.15 sec)

  1. 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)
  2. 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)
  3. architecture/networking/controllers.md

    * Typed clients (via generics) and more ergonomic APIs
    * Ability to make a _delayed_ client. This is used when making clients based on CRDs that may not exist.
      In general, Istio does not fail on missing CRDs and prefers to treat these as if there were just zero resources for that client.
      The `NewDelayedInformer` abstracts that entirely, offering the same API as normal `kclient.Client`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 17:41:25 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

                @Mutate
                void addTasks(ModelMap<Task> tasks) {
                    tasks.create("actionMan", EchoTask) {
                        text = 'This is your commander speaking'
                    }
                    tasks.create("climbTask", ClimbTask) {}
                    tasks.create("jumpTask", JumpTask) {}
                    tasks.create("overruleTask", OverruleTask) {}
                }
            }
            apply type: Rules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/TableCollectionTest.java

                            HashBasedTable.<String, Integer, Character>create());
                      }
    
                      @Override
                      public Set<Cell<String, Integer, Character>> create(Object... elements) {
                        Table<String, Integer, Character> table = HashBasedTable.create();
                        for (Object element : elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/TasksFromDependentProjectsTest.groovy

            [child1, child2, child3].each {
                it.configurations.create "testRuntime"
                it.configurations.create "conf"
                it.tasks.create "buildDependents"
                it.tasks.create "someTask"
            }
    
            when: dep.visitDependencies(context)
    
            then:
            4 * context.getTask() >> child1.tasks["buildDependents"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top