Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,768 for thereby (0.32 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/TestThread.java

        start();
      }
    
      // Thread.stop() is okay because all threads started by a test are dying at the end of the test,
      // so there is no object state put at risk by stopping the threads abruptly. In some cases a test
      // may put a thread into an uninterruptible operation intentionally, so there is no other way to
      // clean up these threads.
      @SuppressWarnings("deprecation")
      @Override
      public void tearDown() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. docs/config/README.md

    default. The following configuration settings allow for more staggered delay in terms of usage calculation. The scanner adapts to the system speed and completely pauses when the system is under load. It is possible to adjust the speed of the scanner and thereby the latency of updates being reflected. The delays between each operation of the scanner can be adjusted by the `mc admin config set alias/ delay=15.0`. By default the value is `10.0`. This means the scanner will sleep *10x* the time each operation...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/TestThread.java

        start();
      }
    
      // Thread.stop() is okay because all threads started by a test are dying at the end of the test,
      // so there is no object state put at risk by stopping the threads abruptly. In some cases a test
      // may put a thread into an uninterruptible operation intentionally, so there is no other way to
      // clean up these threads.
      @SuppressWarnings("deprecation")
      @Override
      public void tearDown() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pkg/volume/util/fsquota/project.go

    	}
    	fProjects.Close()
    	return nil, nil, err
    }
    
    func closeProjectFiles(fProjects *os.File, fProjid *os.File) error {
    	// Nothing useful we can do if either of these fail,
    	// but we have to close (and thereby unlock) the files anyway.
    	var err error
    	var err1 error
    	if fProjid != nil {
    		err = fProjid.Close()
    	}
    	if fProjects != nil {
    		err1 = fProjects.Close()
    	}
    	if err == nil {
    		return err1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. src/runtime/slice.go

    		if overflow || tomem > maxAlloc || tolen < 0 {
    			panicmakeslicelen()
    		}
    		copymem = et.Size_ * uintptr(fromlen)
    	} else {
    		// fromlen is a known good length providing and equal or greater than tolen,
    		// thereby making tolen a good slice length too as from and to slices have the
    		// same element width.
    		tomem = et.Size_ * uintptr(tolen)
    		copymem = tomem
    	}
    
    	var to unsafe.Pointer
    	if !et.Pointers() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/net/udpsock.go

    func (c *UDPConn) ReadFromUDP(b []byte) (n int, addr *UDPAddr, err error) {
    	// This function is designed to allow the caller to control the lifetime
    	// of the returned *UDPAddr and thereby prevent an allocation.
    	// See https://blog.filippo.io/efficient-go-apis-with-the-inliner/.
    	// The real work is done by readFromUDP, below.
    	return c.readFromUDP(b, &UDPAddr{})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    
    [[sec:partial-rewrite]]
    ==== Partial rewrite of existing content
    
    A "complete rewrite" causes all existing content to be discarded, thereby losing any changes made directly in the IDE. The `beforeMerged` hook makes it possible to overwrite just certain parts of the existing content. The following example removes all existing dependencies from the `Module` domain object:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    
    [[sec:partial-overwrite]]
    ==== Partial overwrite of existing content
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  9. src/runtime/extern.go

    	extension is the lower case name for the instruction set extension such as sse41 or avx
    	as listed in internal/cpu package. As an example cpu.avx=off disables runtime detection
    	and thereby use of AVX instructions.
    
    	cgocheck: setting cgocheck=0 disables all checks for packages
    	using cgo to incorrectly pass Go pointers to non-Go code.
    	Setting cgocheck=1 (the default) enables relatively cheap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. tensorflow/c/kernels.h

    //
    // If non-null, TensorFlow will call create_func when it needs to instantiate
    // the kernel. The pointer returned by create_func will be passed to
    // compute_func and delete_func, thereby functioning as a "this" pointer for
    // referring to kernel instances.
    //
    // The TF_OpKernelConstruction pointer passed to create_func is owned by
    // TensorFlow and will be deleted once create_func returns. It must not be used
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
Back to top