Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 932 for _append (0.04 sec)

  1. cmd/batch-job-common-types_gen.go

    func (z BatchJobKV) EncodeMsg(en *msgp.Writer) (err error) {
    	// map header, size 2
    	// write "Key"
    	err = en.Append(0x82, 0xa3, 0x4b, 0x65, 0x79)
    	if err != nil {
    		return
    	}
    	err = en.WriteString(z.Key)
    	if err != nil {
    		err = msgp.WrapError(err, "Key")
    		return
    	}
    	// write "Value"
    	err = en.Append(0xa5, 0x56, 0x61, 0x6c, 0x75, 0x65)
    	if err != nil {
    		return
    	}
    	err = en.WriteString(z.Value)
    	if err != nil {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbException.java

            StringBuilder sb = new StringBuilder();
            sb.append(getClass().getSimpleName());
            sb.append("[code=").append(errorCode);
            sb.append(", severity=").append(severity);
            sb.append(", category=").append(category);
            sb.append(", message=").append(getMessage());
    
            if (recoveryHint != null) {
                sb.append(", hint=").append(recoveryHint);
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/CharStreamsTest.java

          @Override
          public Appendable append(CharSequence csq) throws IOException {
            a.append(csq);
            return this;
          }
    
          @Override
          public Appendable append(CharSequence csq, int start, int end) throws IOException {
            a.append(csq, start, end);
            return this;
          }
    
          @Override
          public Appendable append(char c) throws IOException {
            a.append(c);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/CharStreamsTest.java

          @Override
          public Appendable append(CharSequence csq) throws IOException {
            a.append(csq);
            return this;
          }
    
          @Override
          public Appendable append(CharSequence csq, int start, int end) throws IOException {
            a.append(csq, start, end);
            return this;
          }
    
          @Override
          public Appendable append(char c) throws IOException {
            a.append(c);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  5. callbacks/query.go

    									aliasName = join.Alias
    								}
    
    								fromClause.Joins = append(fromClause.Joins, genJoinClause(join.JoinType, aliasName, specifiedRelationsName[parentTableName], rel))
    								specifiedRelationsName[curAliasName] = aliasName
    							}
    
    							parentTableName = curAliasName
    						}
    					} else {
    						fromClause.Joins = append(fromClause.Joins, clause.Join{
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sun May 25 07:40:40 UTC 2025
    - 10.4K bytes
    - Viewed (1)
  6. src/main/java/jcifs/smb1/netbios/Name.java

                c[0] = '.';
                c[1] = '.';
                c[14] = '.';
                n = new String(c);
            }
    
            sb.append(n).append("<").append(Hexdump.toHexString(hexCode, 2)).append(">");
            if (scope != null) {
                sb.append(".").append(scope);
            }
            return sb.toString();
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/AbstractRepositoryMetadata.java

            StringBuilder buffer = new StringBuilder(256);
    
            buffer.append(LS).append("Repository Metadata").append(LS).append("--------------------------");
            buffer.append(LS).append("GroupId: ").append(getGroupId());
            buffer.append(LS).append("ArtifactId: ").append(getArtifactId());
            buffer.append(LS).append("Metadata Type: ").append(getClass().getName());
    
            return buffer.toString();
        }
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  8. cmd/mrf_gen.go

    	o = append(o, 0xa8, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73)
    	o = msgp.AppendBytes(o, z.Versions)
    	// string "SetIndex"
    	o = append(o, 0xa8, 0x53, 0x65, 0x74, 0x49, 0x6e, 0x64, 0x65, 0x78)
    	o = msgp.AppendInt(o, z.SetIndex)
    	// string "PoolIndex"
    	o = append(o, 0xa9, 0x50, 0x6f, 0x6f, 0x6c, 0x49, 0x6e, 0x64, 0x65, 0x78)
    	o = msgp.AppendInt(o, z.PoolIndex)
    	// string "Queued"
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 13 22:26:05 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/Name.java

                c[0] = '.';
                c[1] = '.';
                c[14] = '.';
                n = new String(c);
            }
    
            sb.append(n).append("<").append(Hexdump.toHexString(this.hexCode, 2)).append(">");
            if (this.scope != null) {
                sb.append(".").append(this.scope);
            }
            return sb.toString();
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/SmbConstants.java

        /**
         * Open for writing only.
         */
        int O_WRONLY = 0x02;
        /**
         * Open for reading and writing.
         */
        int O_RDWR = 0x03;
        /**
         * Open in append mode.
         */
        int O_APPEND = 0x04;
    
        // Open Function Encoding
        /**
         * Create file if it does not exist.
         */
        int O_CREAT = 0x0010;
        /**
         * Fail if the file exists.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 12.8K bytes
    - Viewed (0)
Back to top