Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for Dd (0.03 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    		if fname != "" {
    			u.logger.Printf("Ready to upload: %s", filepath.Base(fname))
    			todo.readyfiles = append(todo.readyfiles, fname)
    		}
    	}
    	return todo.readyfiles, nil
    }
    
    // latestReport returns the YYYY-MM-DD of the last report uploaded
    // or the empty string if there are no reports.
    func latestReport(uploaded map[string]bool) string {
    	var latest string
    	for name := range uploaded {
    		if strings.HasSuffix(name, ".json") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. JavadocStyleGuide.md

    ### 1.1.2 HTML
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/archive/tar/writer_test.go

    			}, nil},
    			testWrite{"", 0, nil},
    
    			testClose{nil},
    		},
    	}, {
    		// The truncated test file was produced using these commands:
    		//   dd if=/dev/zero bs=1048576 count=16384 > /tmp/16gig.txt
    		//   tar -b 1 -c -f- /tmp/16gig.txt | dd bs=512 count=8 > writer-big.tar
    		file: "testdata/writer-big.tar",
    		tests: []testFnc{
    			testHeader{Header{
    				Typeflag: TypeReg,
    				Name:     "tmp/16gig.txt",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  4. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientConfigurer.java

            final CookieSpecProvider defaultProvider = new DefaultCookieSpecProvider(DefaultCookieSpecProvider.CompatibilityLevel.DEFAULT, publicSuffixMatcher, new String[]{
                "EEE, dd-MMM-yy HH:mm:ss z", // Netscape expires pattern
                DateUtils.PATTERN_RFC1036,
                DateUtils.PATTERN_ASCTIME,
                DateUtils.PATTERN_RFC1123
            }, false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  5. cmd/endpoint-ellipses_test.go

    	for i := start; i <= number; i++ {
    		if paddinglen == 0 {
    			seq = append(seq, fmt.Sprintf("%d", i))
    		} else {
    			seq = append(seq, fmt.Sprintf(fmt.Sprintf("%%0%dd", paddinglen), i))
    		}
    	}
    	return seq
    }
    
    // Test tests parses endpoint ellipses input pattern.
    func TestParseEndpointSet(t *testing.T) {
    	testCases := []struct {
    		arg     string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. src/path/filepath/path_test.go

    	c := strings.Count(evalTmpDir[len(vol):], string(os.PathSeparator))
    	var dd []string
    	for i := 0; i < c+2; i++ {
    		dd = append(dd, "..")
    	}
    
    	wantSuffix := strings.Join([]string{"a", "file"}, string(os.PathSeparator))
    
    	// Try different numbers of "..".
    	for _, i := range []int{c, c + 1, c + 2} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPKCS1v15

    000000f0  c5 7b 85 38 4f 2e 09 73  32 a7 bd 3e 9b ad ca 84  |.{.8O..s2..>....|
    00000100  07 e6 0f 3a ff 77 c5 9d  41 85 00 8a b6 9b ee b0  |...:.w..A.......|
    00000110  a4 3f 2d 4c 4c e6 42 3e  bb 51 c8 dd 48 54 f4 0c  |.?-LL.B>.Q..HT..|
    00000120  8e 47 02 03 01 00 01 a3  46 30 44 30 0e 06 03 55  |.G......F0D0...U|
    00000130  1d 0f 01 01 ff 04 04 03  02 05 a0 30 13 06 03 55  |...........0...U|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java

     * </pre>
     * <p>
     * {@literal CopyOptionsUtil}の戻り値は{@link CopyOptions}
     * なので、メソッドチェーンでオプションを複数指定することもできます。
     * </p>
     *
     * <pre>
     * copyBeanToBean(srcBean, destBean, excludeNull().dateConverter("date", "MM/dd"));
     * </pre>
     *
     * @author koichik
     */
    public abstract class CopyOptionsUtil {
    
        /**
         * 操作の対象に含めるプロパティ名を指定した{@link CopyOptions}を返します。
         *
         * @param propertyNames
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3Server.groovy

        private static final DateTimeZone GMT = new FixedDateTimeZone("GMT", "GMT", 0, 0)
        protected static final DateTimeFormatter RCF_822_DATE_FORMAT = DateTimeFormat.forPattern("EEE, dd MMM yyyy HH:mm:ss z")
            .withLocale(Locale.US)
            .withZone(GMT);
    
        public static final String ETAG = 'd41d8cd98f00b204e9800998ecf8427e'
        public static final String X_AMZ_REQUEST_ID = '0A398F9A1BAD4027'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  10. src/go/constant/value.go

    			ad := mul(a, d)
    			re = sub(ac, bd)
    			im = add(bc, ad)
    		case token.QUO:
    			// (ac+bd)/s + i(bc-ad)/s, with s = cc + dd
    			ac := mul(a, c)
    			bd := mul(b, d)
    			bc := mul(b, c)
    			ad := mul(a, d)
    			cc := mul(c, c)
    			dd := mul(d, d)
    			s := add(cc, dd)
    			re = add(ac, bd)
    			re = quo(re, s)
    			im = sub(bc, ad)
    			im = quo(im, s)
    		default:
    			goto Error
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
Back to top