Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 803 for destruction (0.23 sec)

  1. src/syscall/syscall_linux_test.go

    			// being executed. Via the once boolean we
    			// also encourage one in 5 waiters to return
    			// locked after participating in only one
    			// question response sequence. This allows the
    			// test to race thread destruction too.
    			once := routines%5 == 4
    			go waiter(question, response, once)
    
    			// Keep a count of how many goroutines are
    			// going to participate in the
    			// question/response test. This will count up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. doc/go_mem.html

    	go f()
    }
    </pre>
    
    <p>
    calling <code>hello</code> will print <code>"hello, world"</code>
    at some point in the future (perhaps after <code>hello</code> has returned).
    </p>
    
    <h3 id="goexit">Goroutine destruction</h3>
    
    <p>
    The exit of a goroutine is not guaranteed to be synchronized before
    any event in the program.
    For example, in this program:
    </p>
    
    <pre>
    var a string
    
    func hello() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/Restriction.java

                return true;
            }
    
            if (!(other instanceof Restriction)) {
                return false;
            }
    
            Restriction restriction = (Restriction) other;
            if (lowerBound != null) {
                if (!lowerBound.equals(restriction.lowerBound)) {
                    return false;
                }
            } else if (restriction.lowerBound != null) {
                return false;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprogcgo/destructor.c

    static void callDestructorCallback() {
    	GoDestructorCallback();
    }
    
    static void (*destructorFn)(void);
    
    void registerDestructor() {
    	destructorFn = callDestructorCallback;
    }
    
    __attribute__((destructor))
    static void destructor() {
    	if (destructorFn) {
    		destructorFn();
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:26:05 UTC 2023
    - 459 bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // destructor, as:
    //
    //   1. You cannot safely throw from a destructor.  This is a problem
    //      as in some cases Google Test is used where exceptions are enabled, and
    //      we may want to implement ASSERT_* using exceptions where they are
    //      available.
    //   2. You cannot use ASSERT_* directly in a constructor or
    //      destructor.
    class Environment {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // destructor, as:
    //
    //   1. You cannot safely throw from a destructor.  This is a problem
    //      as in some cases Google Test is used where exceptions are enabled, and
    //      we may want to implement ASSERT_* using exceptions where they are
    //      available.
    //   2. You cannot use ASSERT_* directly in a constructor or
    //      destructor.
    class Environment {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:how_does_it_work]]
    == How does it work?
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. src/runtime/testdata/testprogcgo/destructor.go

    Ian Lance Taylor <******@****.***> 1681938997 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:26:05 UTC 2023
    - 442 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64latelower.rules

    // See comments in ARM64latelower.rules...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 636 bytes
    - Viewed (0)
  10. src/cmd/internal/objabi/reloctype.go

    	R_ARM64_GOTPCREL
    
    	// R_ARM64_GOT resolves a GOT-relative instruction sequence, usually an adrp
    	// followed by another ld instruction.
    	R_ARM64_GOT
    
    	// R_ARM64_PCREL resolves a PC-relative addresses instruction sequence, usually an
    	// adrp followed by another add instruction.
    	R_ARM64_PCREL
    
    	// R_ARM64_PCREL_LDST8 resolves a PC-relative addresses instruction sequence, usually an
    	// adrp followed by a LD8 or ST8 instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top