Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 989 for _append (0.48 sec)

  1. callbacks/create.go

    				if vs, ok := defaultValueFieldsHavingValue[field]; ok {
    					values.Columns = append(values.Columns, clause.Column{Name: field.DBName})
    					for idx := range values.Values {
    						if vs[idx] == nil {
    							values.Values[idx] = append(values.Values[idx], stmt.DefaultValueOf(field))
    						} else {
    							values.Values[idx] = append(values.Values[idx], vs[idx])
    						}
    					}
    				}
    			}
    		case reflect.Struct:
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Tue Jul 29 11:06:13 UTC 2025
    - 13K bytes
    - Viewed (0)
  2. cmd/bucket-replication-utils_gen.go

    	o = append(o, 0xa3, 0x72, 0x73, 0x74)
    	o = msgp.AppendInt(o, int(z.ResyncStatus))
    	// string "fs"
    	o = append(o, 0xa2, 0x66, 0x73)
    	o = msgp.AppendInt64(o, z.FailedSize)
    	// string "frc"
    	o = append(o, 0xa3, 0x66, 0x72, 0x63)
    	o = msgp.AppendInt64(o, z.FailedCount)
    	// string "rs"
    	o = append(o, 0xa2, 0x72, 0x73)
    	o = msgp.AppendInt64(o, z.ReplicatedSize)
    	// string "rrc"
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Apr 03 06:45:06 UTC 2025
    - 59.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsFavoriteLog.java

            StringBuilder sb = new StringBuilder();
            sb.append(dm).append(createdAt);
            sb.append(dm).append(docId);
            sb.append(dm).append(queryId);
            sb.append(dm).append(url);
            sb.append(dm).append(userInfoId);
            if (sb.length() > dm.length()) {
                sb.delete(0, dm.length());
            }
            sb.insert(0, "{").append("}");
            return sb.toString();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v1_gen.go

    	}
    	// variable map header, size zb0001Len
    	o = append(o, 0x80|uint8(zb0001Len))
    
    	// skip if no fields are to be emitted
    	if zb0001Len != 0 {
    		// string "e"
    		o = append(o, 0xa1, 0x65)
    		o = msgp.AppendString(o, z.ETag)
    		// string "n"
    		o = append(o, 0xa1, 0x6e)
    		o = msgp.AppendInt(o, z.Number)
    		// string "s"
    		o = append(o, 0xa1, 0x73)
    		o = msgp.AppendInt64(o, z.Size)
    		// string "as"
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Dec 15 22:50:12 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/nego/CompressionNegotiateContext.java

            sb.append("CompressionNegotiateContext{");
            sb.append("flags=0x").append(Integer.toHexString(flags));
            sb.append(", algorithms=[");
            if (compressionAlgorithms != null) {
                for (int i = 0; i < compressionAlgorithms.length; i++) {
                    if (i > 0)
                        sb.append(", ");
                    sb.append(getAlgorithmName(compressionAlgorithms[i]));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/java/org/apache/maven/artifact/versioning/ManagedVersionMap.java

            Iterator<String> iter = keySet().iterator();
            while (iter.hasNext()) {
                String key = iter.next();
                buffer.append(key).append('=').append(get(key));
                if (iter.hasNext()) {
                    buffer.append('\n');
                }
            }
            return buffer.toString();
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/Platform.java

            break;
          }
          builder.append(template.substring(templateStart, placeholderStart));
          builder.append(args[i++]);
          templateStart = placeholderStart + 2;
        }
        builder.append(template.substring(templateStart));
    
        // if we run out of placeholders, append the extra args in square braces
        if (i < args.length) {
          builder.append(" [");
          builder.append(args[i++]);
          while (i < args.length) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/Base64.java

                block = (bytes[i] & 0xff) << 4;
                buffer.append(ALPHABET.charAt(block >>> 6));
                buffer.append(ALPHABET.charAt(block & 0x3f));
                buffer.append("==");
                return buffer.toString();
            }
            block = ((bytes[i++] & 0xff) << 8 | bytes[i] & 0xff) << 2;
            buffer.append(ALPHABET.charAt(block >>> 12));
            buffer.append(ALPHABET.charAt(block >>> 6 & 0x3f));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Strings.java

          if (placeholderStart == -1) {
            break;
          }
          builder.append(template, templateStart, placeholderStart);
          builder.append(lenientToString(args[i++]));
          templateStart = placeholderStart + 2;
        }
        builder.append(template, templateStart, template.length());
    
        // if we run out of placeholders, append the extra args in square brackets
        if (i < args.length) {
          String prefix = " [";
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 27 17:53:41 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

            StringBuilder configInput = new StringBuilder();
            for (int i = 0; i < 100; i++) {
                configInput.append("config.key").append(i).append("=value").append(i).append("\n");
                configInput.append("client.key").append(i).append("=value").append(i).append("\n");
            }
    
            Map<ConfigName, Map<String, String>> configResult = ParameterUtil.createConfigParameterMap(configInput.toString());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 22.6K bytes
    - Viewed (0)
Back to top