Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 97 for fname2 (0.04 sec)

  1. schema/constraint_test.go

    1. }
    2.  
    3. for _, name := range []string{"Name", "Constraint"} {
    4. if reflect.ValueOf(result).FieldByName(name).Interface() != reflect.ValueOf(v).FieldByName(name).Interface() {
    5. t.Errorf(
    6. "check %v %v should equal, expects %v, got %v",
    7. k, name, reflect.ValueOf(result).FieldByName(name).Interface(), reflect.ValueOf(v).FieldByName(name).Interface(),
    8. )
    9. }
    10. }
    11. }
    12. }
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. tests/distinct_test.go

    1. var names2 []string
    2. DB.Scopes(func(db *gorm.DB) *gorm.DB {
    3. return db.Table("users")
    4. }).Where("name like ?", "distinct%").Order("name").Pluck("name", &names2)
    5. AssertEqual(t, names2, []string{"distinct", "distinct", "distinct", "distinct-2", "distinct-3"})
    6.  
    7. var results []User
    8. if err := DB.Distinct("name", "age").Where("name like ?", "distinct%").Order("name, age desc").Find(&results).Error; err != nil {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

    1. for (final Field field : clazz.getDeclaredFields()) {
    2. final String fname = field.getName();
    3. if (fieldDescCache.containsKey(fname)) {
    4. continue;
    5. }
    6. setFieldAccessible(field);
    7. final FieldDescImpl fieldDesc = new FieldDescImpl(this, field);
    8. fieldDescCache.put(fname, fieldDesc);
    9. if (!FieldUtil.isInstanceField(field)) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt

    1. val hasGetGetterName = method.name.matches(propertyGetterNameRegex)
    2. val hasIsGetterName = method.name.matches(propertyIsGetterNameRegex)
    3. val hasGetterName = hasGetGetterName || hasIsGetterName
    4. val hasSetterName = method.name.matches(propertySetterNameRegex)
    5. val paramCount = method.parameterTypes.size
    6. val returnsVoid = method.returnType.name == "void"
    7.  
    8. val couldBeProperty =
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Jul 04 08:05:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. schema/index_test.go

    1. },
    2. "idx_oid": {
    3. Name: "idx_oid",
    4. Class: "UNIQUE",
    5. Fields: []schema.IndexOption{{Field: &schema.Field{Name: "OID", UniqueIndex: "idx_oid"}}},
    6. },
    7. "type": {
    8. Name: "type",
    9. Type: "",
    10. Fields: []schema.IndexOption{{Field: &schema.Field{Name: "Name7"}}},
    11. },
    12. "idx_user_indices_name8": {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. statement_test.go

    1. for k, v := range map[string][]string{
    2. "table.name": {"table", "name"},
    3. "`table`.`name`": {"table", "name"},
    4. "'table'.'name'": {"table", "name"},
    5. "'table'.name": {"table", "name"},
    6. "table1.name_23": {"table1", "name_23"},
    7. "`table_1`.`name23`": {"table_1", "name23"},
    8. "'table23'.'name_1'": {"table23", "name_1"},
    9. "'table23'.name1": {"table23", "name1"},
    10. "'name1'": {"", "name1"},
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Sat Dec 23 13:19:41 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Reader.kt

    1. import okio.ByteString
    2. import okio.Source
    3. import okio.Timeout
    4.  
    5. /**
    6. * Reads HTTP/2 transport frames.
    7. *
    8. * This implementation assumes we do not send an increased [frame][Settings.getMaxFrameSize] to the
    9. * peer. Hence, we expect all frames to have a max length of [Http2.INITIAL_MAX_FRAME_SIZE].
    10. */
    11. class Http2Reader(
    12. /** Creates a frame reader with max header table size of 4096. */
    13. private val source: BufferedSource,
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt

    1. reason: String,
    2. )
    3. }
    4.  
    5. /**
    6. * Process the next protocol frame.
    7. *
    8. * * If it is a control frame this will result in a single call to [FrameCallback].
    9. * * If it is a message frame this will result in a single call to [FrameCallback.onReadMessage].
    10. * If the message spans multiple frames, each interleaved control frame will result in a
    11. * corresponding call to [FrameCallback].
    12. */
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/arch/arch.go

    1. }
    2. for i := riscv.REG_F0; i <= riscv.REG_F31; i++ {
    3. name := fmt.Sprintf("F%d", i-riscv.REG_F0)
    4. register[name] = int16(i)
    5. }
    6. for i := riscv.REG_V0; i <= riscv.REG_V31; i++ {
    7. name := fmt.Sprintf("V%d", i-riscv.REG_V0)
    8. register[name] = int16(i)
    9. }
    10.  
    11. // General registers with ABI names.
    12. register["ZERO"] = riscv.REG_ZERO
    13. register["RA"] = riscv.REG_RA
    14. register["SP"] = riscv.REG_SP
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 24 12:32:56 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/Protocol.kt

    1. *
    2. * ## Protocol vs Scheme
    3. *
    4. * Despite its name, [java.net.URL.getProtocol] returns the [scheme][java.net.URI.getScheme] (http,
    5. * https, etc.) of the URL, not the protocol (http/1.1, spdy/3.1, etc.). OkHttp uses the word
    6. * *protocol* to identify how HTTP messages are framed.
    7. *
    8. * [ietf_alpn]: http://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg
    9. */
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top