Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pixString (0.09 sec)

  1. src/image/jpeg/reader_test.go

    					if pix0[index0] != pix1[index1] {
    						return fmt.Errorf("blocks at (%d, %d) differ:\n%sand\n%s", x, y,
    							pixString(pix0, stride0, x, y),
    							pixString(pix1, stride1, x, y),
    						)
    					}
    				}
    			}
    		}
    	}
    	return nil
    }
    
    func pixString(pix []byte, stride, x, y int) string {
    	s := &strings.Builder{}
    	for j := 0; j < 8; j++ {
    		fmt.Fprintf(s, "\t")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonStartupCommunication.java

                Decoder decoder = new InputStreamBackedDecoder(inputStream);
                String pidString = decoder.readNullableString();
                String uid = decoder.readString();
                Long pid = pidString == null ? null : Long.parseLong(pidString);
                Address address = new MultiChoiceAddressSerializer().read(decoder);
                File daemonLog = new File(decoder.readString());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top