Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 635 for earlib (0.12 sec)

  1. guava/src/com/google/common/base/FinalizableReferenceQueue.java

     * {@link FinalizableReference#finalizeReferent()} on them.
     *
     * <p>Keep a strong reference to this object until all of the associated referents have been
     * finalized. If this object is garbage collected earlier, the backing thread will not invoke {@code
     * finalizeReferent()} on the remaining references.
     *
     * <p>As an example of how this is used, imagine you have a class {@code MyServer} that creates a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. test/recover.go

    		}
    	}()
    	panic("6WithClosures")
    }
    
    func test7() {
    	ok := false
    	func() {
    		// should panic, then call mustRecover 7, which stops the panic.
    		// then should keep processing ordinary defers earlier than that one
    		// before returning.
    		// this test checks that the defer func on the next line actually runs.
    		defer func() { ok = true }()
    		defer mustRecover(7)
    		panic(7)
    	}()
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/vendor.go

    					vendorVersion[mod.Path] = mod.Version
    				}
    			}
    		}
    	})
    }
    
    // checkVendorConsistency verifies that the vendor/modules.txt file matches (if
    // go 1.14) or at least does not contradict (go 1.13 or earlier) the
    // requirements and replacements listed in the main module's go.mod file.
    func checkVendorConsistency(indexes []*modFileIndex, modFiles []*modfile.File, modRoots []string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. test/fixedbugs/issue54343.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "runtime"
    
    func main() {
    	if wait() {
    		panic("GC'd early")
    	}
    	m = nil
    	if !wait() {
    		panic("never GC'd")
    	}
    }
    
    var m = New[int]().M
    
    func New[X any]() *T[X] {
    	p := new(T[X])
    	runtime.SetFinalizer(p, func(*T[X]) { close(done) })
    	return p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 11 20:13:07 UTC 2022
    - 695 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    [[changes_6.9]]
    == Upgrading from 6.8 and earlier
    
    No upgrade notes from 6.8 to 6.9, as 6.9 only contains bug fixes.
    
    [[changes_6.8]]
    == Upgrading from 6.7 and earlier
    
    === Potential breaking changes
    
    ==== Toolchain API is now marked as @NonNull
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftAppWithCppLibrary.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    class SwiftAppWithCppLibrary extends SwiftAppWithLibraries {
        final logger = new CppGreeterFunction().asLib()
        final greeter = new SwiftGreeterUsingCppFunction(logger, 'log')
    
        @Override
        SourceElement getLogLibrary() {
            return logger
        }
    
        @Override
        SourceElement getLibrary() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1004 bytes
    - Viewed (0)
  7. src/runtime/testdata/testprogcgo/catchpanic.go

    		return;
    	registerAbortHandler();
    }
    */
    import "C"
    import "os"
    
    func init() {
    	register("CgoCatchPanic", CgoCatchPanic)
    }
    
    // Test that the SIGABRT raised by panic can be caught by an early signal handler.
    func CgoCatchPanic() {
    	if _, ok := os.LookupEnv("CGOCATCHPANIC_EARLY_HANDLER"); !ok {
    		C.registerAbortHandler()
    	}
    	panic("catch me")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 993 bytes
    - Viewed (0)
  8. test/gcstring.go

    }
    
    func setup() {
    	var Ts []interface{}
    	buf := make([]byte, 128)
    	
    	for i := 0; i < 10000; i++ {
    		s := string(buf)
    		t := &T{ptr: new(*int)}
    		runtime.SetFinalizer(t.ptr, func(**int) { panic("*int freed too early") })
    		Ts = append(Ts, t)
    		things = append(things, s[len(s):])
    	}
    	
    	things = append(things, Ts...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 872 bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyDetails.java

         * Interface precedence is breadth-first, declaration.
         *
         * The order of the methods follows the same precedence.
         * That is, the “nearer” declarations are earlier in the list.
         */
        Collection<Method> getGetters();
    
        /**
         * Similar to {@link #getGetters()}, but varies based on the param type instead of return type.
         *
         * Has identical ordering semantics.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. src/internal/poll/sock_cloexec_accept.go

    // This file implements accept for platforms that provide a fast path for
    // setting SetNonblock and CloseOnExec, but don't necessarily have accept4.
    // This is the code we used for accept in Go 1.17 and earlier.
    // On Linux the accept4 system call was introduced in 2.6.28 kernel,
    // and our minimum requirement is 2.6.32, so we simplified the function.
    // Unfortunately, on ARM accept4 wasn't added until 2.6.36, so for ARM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 16 03:40:42 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top