Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for 2s (0.03 sec)

  1. docs/bucket/replication/setup_2site_existing_replication.sh

    fi
    
    ## check if we don't create delete markers on the directory objects, its always permanent delete.
    ./mc mb sitea/bucket-version/directory/
    
    sleep 2s
    
    ./mc rm -r --force sitea/bucket-version/
    
    sleep 2s
    
    ./mc ls -r --versions sitea/bucket-version/ >/tmp/sitea_dirs.txt
    ./mc ls -r --versions siteb/bucket-version/ >/tmp/siteb_dirs.txt
    
    out=$(diff -qpruN /tmp/sitea_dirs.txt /tmp/siteb_dirs.txt)
    ret=$?
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/math/log.go

    //			x = 2**k * (1+f),
    //	   where  sqrt(2)/2 < 1+f < sqrt(2) .
    //
    //   2. Approximation of log(1+f).
    //	Let s = f/(2+f) ; based on log(1+f) = log(1+s) - log(1-s)
    //		 = 2s + 2/3 s**3 + 2/5 s**5 + .....,
    //	     	 = 2s + s*R
    //      We use a special Reme algorithm on [0,0.1716] to generate
    //	a polynomial of degree 14 to approximate R.  The maximum error
    //	of this polynomial approximation is bounded by 2**-58.45. In
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. istioctl/pkg/wait/wait_test.go

    		},
    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--timeout 2s virtualservice foo.default", " "),
    			wantException:    false,
    		},
    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--timeout 2s --revision canary virtualservice foo.default", " "),
    			wantException:    false,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/issue53586.txt

    [short] skip  # sleeps to make mtime cacheable
    
    go mod init example
    
    cd subdir
    go mod init example/subdir
    sleep 2s  # allow go.mod mtime to be cached
    
    go list -f '{{.Dir}}: {{.ImportPath}}' ./pkg
    stdout $PWD${/}pkg': example/subdir/pkg$'
    
    rm go.mod  # expose ../go.mod
    
    go list -f '{{.Dir}}: {{.ImportPath}}' ./pkg
    stdout $PWD${/}pkg': example/subdir/pkg$'
    
    -- subdir/pkg/pkg.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 18:20:39 UTC 2022
    - 394 bytes
    - Viewed (0)
  5. src/math/log1p.go

    //      (Note: when x > 2**53, one can simply return log(x))
    //
    //   2. Approximation of log1p(f).
    //      Let s = f/(2+f) ; based on log(1+f) = log(1+s) - log(1-s)
    //               = 2s + 2/3 s**3 + 2/5 s**5 + .....,
    //               = 2s + s*R
    //      We use a special Reme algorithm on [0,0.1716] to generate
    //      a polynomial of degree 14 to approximate R The maximum error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      # The pseudo service name used for Envoy.
      serviceCluster: istio-proxy
      # These settings that determine how long an old Envoy
      # process should be kept alive after an occasional reload.
      drainDuration: 2s
      #
      # The mode used to redirect inbound connections to Envoy. This setting
      # has no effect on outbound traffic: iptables REDIRECT is always used for
      # outbound connections.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_test_cached.txt

    go test -run=WriteTmp ./foo_test.go
    ! stdout '(cached)'
    go test -run=WriteTmp ./foo_test.go
    ! stdout '(cached)'
    
    [!exec:sleep] stop
    # The go command refuses to cache access to files younger than 2s, so sleep that long.
    exec sleep 2
    
    # Touching a file that the test reads from within its testdata should invalidate the cache.
    go test -run=ReadTestdata .
    ! stdout '(cached)'
    go test -run=ReadTestdata .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/doc.go

    Examples:
    
    	VADD V5.H8, V18.H8, V9.H8         <=>      add v9.8h, v18.8h, v5.8h
    	VLD1.P (R6)(R11), [V31.D1]        <=>      ld1 {v31.1d}, [x6], x11
    	VFMLA V29.S2, V20.S2, V14.S2      <=>      fmla v14.2s, v20.2s, v29.2s
    	AESD V22.B16, V19.B16             <=>      aesd v19.16b, v22.16b
    	SCVTFWS R3, F16                   <=>      scvtf s17, w6
    
    6. Align directive
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. pkg/kubelet/util/cache/object_cache_test.go

    		return expectedVal, nil
    	}, 1*time.Second, fakeClock)
    
    	err := objectCache.Add(testObj.key, testObj.val)
    	if err != nil {
    		t.Errorf("Unable to add obj %#v by key: %s", testObj, testObj.key)
    	}
    
    	// sleep 2s so cache should be expired.
    	fakeClock.Sleep(2 * time.Second)
    
    	value, err := objectCache.Get(testObj.key)
    	if err != nil {
    		t.Errorf("Unable to get obj %#v by key: %s", testObj, testObj.key)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 17 13:19:08 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  10. buildscripts/disable-root.sh

    export MC_HOST_sitea=http://foobar:foo12345@127.0.0.1:9001
    export MC_HOST_siteb=http://foobar:foo12345@127.0.0.1:9004
    
    ./mc ready sitea
    ./mc ready siteb
    
    ./mc admin user add sitea foobar-admin foo12345
    
    sleep 2s
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top