Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,170 for createFn (0.26 sec)

  1. 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)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_weight.cc

          // Create new ConstantOp-ConvertOp-Operation sequences. At this moment,
          // old ConstantOp is guaranteed to have one F32->F16 convert op regardless
          // of its number of users.
          rewriter.setInsertionPointAfter(op);
          // create new F16 constant op in that location
          ConstantOp new_const = rewriter.create<ConstantOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

         *       artifact 'my-file-name.jar' // Publish a file created outside of the build
         *       artifact source: sourceJar, classifier: 'src', extension: 'zip'
         *     }
         *   }
         * }
         * </pre>
         *
         * @param source The source of the artifact content.
         */
        MavenArtifact artifact(Object source);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

         */
        IvyArtifact artifact(Object source);
    
        /**
         * Creates an {@link IvyArtifact} to be included in the publication, which is configured by the associated action.
         *
         * The first parameter is used to create a custom artifact and add it to the publication, as per {@link #artifact(Object)}.
         * The created {@link IvyArtifact} is then configured using the supplied action.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    	"username":          "username contains the name of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
    	"uid":               "uid contains the uid of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"suspend":                 "suspend specifies whether the Job controller should create Pods or not. If a Job is created with suspend set to true, no Pods are created by the Job controller. If a Job is suspended after creation (i.e. the flag goes from false to true), the Job controller will delete all active Pods associated with this Job. Users must design their workload to gracefully handle this. Suspending...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. helm-releases/minio-3.5.7.tgz

    uptions/ ## podDisruptionBudget: enabled: false maxUnavailable: 1 ## Specify the service account to use for the MinIO pods. If 'create' is set to 'false' ## and 'name' is left unspecified, the account 'default' will be used. serviceAccount: create: true ## The name of the service account to use. If 'create' is 'true', a service account with that name ## will be created. name: "minio-sa" metrics: serviceMonitor: enabled: false public: true additionalLabels: {} relabelConfigs: {} # namespace: monitoring...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Feb 20 08:55:08 UTC 2022
    - 17.6K bytes
    - Viewed (0)
  8. helm-releases/minio-3.5.8.tgz

    uptions/ ## podDisruptionBudget: enabled: false maxUnavailable: 1 ## Specify the service account to use for the MinIO pods. If 'create' is set to 'false' ## and 'name' is left unspecified, the account 'default' will be used. serviceAccount: create: true ## The name of the service account to use. If 'create' is 'true', a service account with that name ## will be created. name: "minio-sa" metrics: serviceMonitor: enabled: false public: true additionalLabels: {} relabelConfigs: {} # namespace: monitoring...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Feb 27 06:44:38 UTC 2022
    - 17.7K bytes
    - Viewed (0)
  9. helm-releases/minio-3.6.1.tgz

    uptions/ ## podDisruptionBudget: enabled: false maxUnavailable: 1 ## Specify the service account to use for the MinIO pods. If 'create' is set to 'false' ## and 'name' is left unspecified, the account 'default' will be used. serviceAccount: create: true ## The name of the service account to use. If 'create' is 'true', a service account with that name ## will be created. name: "minio-sa" metrics: serviceMonitor: enabled: false public: true additionalLabels: {} relabelConfigs: {} # namespace: monitoring...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 15 00:13:17 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  10. 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)
Back to top