Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 636 for Calling (0.44 sec)

  1. src/runtime/mbarrier.go

    // barrier—which shades the object whose reference is being
    // overwritten—with Dijkstra insertion barrier—which shades the object
    // whose reference is being written. The insertion part of the barrier
    // is necessary while the calling goroutine's stack is grey. In
    // pseudocode, the barrier is:
    //
    //     writePointer(slot, ptr):
    //         shade(*slot)
    //         if current stack is grey:
    //             shade(ptr)
    //         *slot = ptr
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. cmd/bucket-handlers_test.go

    package cmd
    
    import (
    	"bytes"
    	"encoding/xml"
    	"fmt"
    	"io"
    	"net/http"
    	"net/http/httptest"
    	"strconv"
    	"testing"
    
    	"github.com/minio/minio/internal/auth"
    )
    
    // Wrapper for calling RemoveBucket HTTP handler tests for both Erasure multiple disks and single node setup.
    func TestRemoveBucketHandler(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  3. src/runtime/map_fast64.go

    	}
    	if h.flags&hashWriting != 0 {
    		fatal("concurrent map writes")
    	}
    	hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
    
    	// Set hashWriting after calling t.hasher for consistency with mapassign.
    	h.flags ^= hashWriting
    
    	if h.buckets == nil {
    		h.buckets = newobject(t.Bucket) // newarray(t.bucket, 1)
    	}
    
    again:
    	bucket := hash & bucketMask(h.B)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/runtime/asm_amd64.s

     */
    
    // Called during function prolog when more stack is needed.
    //
    // The traceback routines see morestack on a g0 as being
    // the top of a stack (for example, morestack calling newstack
    // calling the scheduler calling newm calling gc), so we must
    // record an argument size. For that purpose, it has no arguments.
    TEXT runtime·morestack(SB),NOSPLIT|NOFRAME,$0-0
    	// Cannot grow scheduler stack (m->g0).
    	get_tls(CX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. platforms/extensibility/unit-test-fixtures/src/test/groovy/org/gradle/testfixtures/ProjectBuilderTest.groovy

            project.evaluate()
    
            then:
            noExceptionThrown()
            latch.get()
        }
    
        @Ignore
        @Issue("GRADLE-3136")
        def "Can trigger afterEvaluate programmatically after calling getTasksByName"() {
            setup:
            def latch = new AtomicBoolean()
    
            when:
            def project = buildProject()
    
            project.getTasksByName('myTask', true)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFileCollection.java

    import java.util.Set;
    
    /**
     * <p>A {@code ConfigurableFileCollection} is a mutable {@code FileCollection}.</p>
     *
     * <p>You can obtain an instance of {@code ConfigurableFileCollection} by calling {@link org.gradle.api.Project#files(Object...)} or {@link ObjectFactory#fileCollection()}.</p>
     *
     * <p><b>Note:</b> This interface is not intended for implementation by build script or plugin authors.</p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/flag/flag.go

    	f.output = output
    }
    
    // VisitAll visits the flags in lexicographical order, calling fn for each.
    // It visits all flags, even those not set.
    func (f *FlagSet) VisitAll(fn func(*Flag)) {
    	for _, flag := range sortFlags(f.formal) {
    		fn(flag)
    	}
    }
    
    // VisitAll visits the command-line flags in lexicographical order, calling
    // fn for each. It visits all flags, even those not set.
    func VisitAll(fn func(*Flag)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  8. src/runtime/string.go

    type tmpBuf [tmpStringBufSize]byte
    
    // concatstrings implements a Go string concatenation x+y+z+...
    // The operands are passed in the slice a.
    // If buf != nil, the compiler has determined that the result does not
    // escape the calling function, so the string data can be stored in buf
    // if small enough.
    func concatstrings(buf *tmpBuf, a []string) string {
    	idx := 0
    	l := 0
    	count := 0
    	for i, x := range a {
    		n := len(x)
    		if n == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/runtime/os_windows.go

    	// preemptExtLock synchronizes preemptM with entry/exit from
    	// external C code.
    	//
    	// This protects against races between preemptM calling
    	// SuspendThread and external code on this thread calling
    	// ExitProcess. If these happen concurrently, it's possible to
    	// exit the suspending thread and suspend the exiting thread,
    	// leading to deadlock.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. src/runtime/map_fast32.go

    	}
    	if h.flags&hashWriting != 0 {
    		fatal("concurrent map writes")
    	}
    	hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
    
    	// Set hashWriting after calling t.hasher for consistency with mapassign.
    	h.flags ^= hashWriting
    
    	if h.buckets == nil {
    		h.buckets = newobject(t.Bucket) // newarray(t.bucket, 1)
    	}
    
    again:
    	bucket := hash & bucketMask(h.B)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top