Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for custom_table (0.36 sec)

  1. tests/scopes_test.go

    		t.Errorf("Should found two users's name in 1, 3, but got %v", len(users3))
    	}
    
    	db := DB.Scopes(func(tx *gorm.DB) *gorm.DB {
    		return tx.Table("custom_table")
    	}).Session(&gorm.Session{})
    
    	db.AutoMigrate(&User{})
    	if db.Find(&User{}).Statement.Table != "custom_table" {
    		t.Errorf("failed to call Scopes")
    	}
    
    	result := DB.Scopes(NameIn1And2, func(tx *gorm.DB) *gorm.DB {
    		return tx.Session(&gorm.Session{})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Workspace.java

    import groovy.util.Node;
    import org.gradle.internal.xml.XmlTransformer;
    import org.gradle.plugins.ide.internal.generator.XmlPersistableConfigurationObject;
    
    /**
     * Represents the customizable elements of an ipr (via XML hooks everything of the ipr is customizable).
     */
    public class Workspace extends XmlPersistableConfigurationObject {
        public Workspace(XmlTransformer withXmlActions) {
            super(withXmlActions);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractProjectBasedReportTask.java

                );
            }
            return new ProjectBasedReportModel<>(map);
        }
    
        protected abstract T calculateReportModelFor(Project project);
    
        /**
         * Provides a means of printing a customizable header section above the per-project details body
         * of the report.
         * <p>
         * By default, there is no header information printed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/common/help.jsp

    		documents which has "Fess" as the document title, you can enter:
    		<pre>title:Fess</pre>
    		The available fields are "url", "host", "site", "title", "content",
    		"content_length", "last_modified" and "mimetype", and they are
    		customizable.
    	</dd>
    	<dt>Sort</dt>
    	<dd>
    		sort field sorts documents by a specified field name. The format is
    		"sort:&lt;field&gt;.&lt;order&gt;", where &lt;order&gt; is asc or
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  5. docs/orchestration/kubernetes/README.md

    - Helm Chart: MinIO Helm Chart offers customizable and easy MinIO deployment with a single command. Refer [MinIO Helm Chart documentation](https://github.com/minio/minio/tree/master/helm/minio) for more details.
    
    ## Monitoring MinIO in Kubernetes
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/mutation/common/interface.go

    	CELType() *types.Type
    
    	// Field finds the field by the field name, or false if the field is not known.
    	// This function directly return a FieldType that is known to CEL to be more customizable.
    	Field(name string) (*types.FieldType, bool)
    
    	// Val creates an instance for the TypeRef, given its fields and their values.
    	Val(fields map[string]ref.Val) ref.Val
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. docs/en/docs/project-generation.md

    # Full Stack FastAPI Template
    
    Templates, while typically come with a specific setup, are designed to be flexible and customizable. This allows you to modify and adapt them to your project's requirements, making them an excellent starting point. 🏁
    
    You can use this template to get started, as it includes a lot of the initial set up, security, database and some API endpoints already done for you.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 21 21:12:21 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. cluster/skeleton/util.sh

    function verify-prereqs {
    	echo "Skeleton Provider: verify-prereqs not implemented" 1>&2
    }
    
    # Validate a kubernetes cluster
    function validate-cluster {
    	# by default call the generic validate-cluster.sh script, customizable by
    	# any cluster provider if this does not fit.
    	"${KUBE_ROOT}/cluster/validate-cluster.sh"
    }
    
    # Instantiate a kubernetes cluster
    function kube-up {
    	echo "Skeleton Provider: kube-up not implemented" 1>&2
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 13 00:54:20 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/sha3/shake.go

    }
    
    func newShake256Generic() *state {
    	return &state{rate: rate256, outputLen: 64, dsbyte: dsbyteShake}
    }
    
    // NewCShake128 creates a new instance of cSHAKE128 variable-output-length ShakeHash,
    // a customizable variant of SHAKE128.
    // N is used to define functions based on cSHAKE, it can be empty when plain cSHAKE is
    // desired. S is a customization byte string used for domain separation - two cSHAKE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Classpath.java

    import java.util.List;
    import java.util.Set;
    
    import static java.util.stream.Collectors.toCollection;
    import static java.util.stream.Collectors.toList;
    
    /**
     * Represents the customizable elements of an eclipse classpath file. (via XML hooks everything is customizable).
     */
    public class Classpath extends XmlPersistableConfigurationObject {
        private final FileReferenceFactory fileReferenceFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top