Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 97 for pawn (0.07 sec)

  1. test/fixedbugs/issue19555.go

    type LinkRole int64
    
    const (
    	LinkServer LinkRole = iota // link created as server
    	LinkClient                 // link created as client
    
    	// for testing:
    	linkNoRecvSend LinkRole = 1 << 16 // do not spawn serveRecv & serveSend
    	linkFlagsMask  LinkRole = (1<<32 - 1) << 16
    )
    
    func NewNodeLink(role LinkRole) *NodeLink {
    	var nextConnId uint32
    	switch role &^ linkFlagsMask {
    	case LinkServer:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 21:44:08 UTC 2017
    - 836 bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

        }
    
        private static List<Boolean> parametersNullabilityOf(CtBehavior behavior) {
            def annotations = behavior.parameterAnnotations as List<Object[]>
            annotations.collect { Object[] pAnn ->
                pAnn.flatten().any { isNullableCtAnnotation(it) }
            }
        }
    
        private static boolean hasNullableAnnotation(CtField field) {
            return NULLABLE_ANNOTATIONS.any { field.hasAnnotation(it) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 10:04:28 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandleBuilder.java

        /**
         * Merge the process' error stream into its output stream
         */
        ExecHandleBuilder redirectErrorStream();
    
        ExecHandleBuilder setDisplayName(String displayName);
    
        /**
         * When true, spawn the process. That is, start the process and leave it running once successfully started. When false, fork the process (the default). That is, start the process and wait for it to complete.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/runtime/callers_test.go

    	"strings"
    	"testing"
    )
    
    func f1(pan bool) []uintptr {
    	return f2(pan) // line 15
    }
    
    func f2(pan bool) []uintptr {
    	return f3(pan) // line 19
    }
    
    func f3(pan bool) []uintptr {
    	if pan {
    		panic("f3") // line 24
    	}
    	ret := make([]uintptr, 20)
    	return ret[:runtime.Callers(0, ret)] // line 27
    }
    
    func testCallers(t *testing.T, pcs []uintptr, pan bool) {
    	m := make(map[string]int, len(pcs))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 21:36:31 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. src/runtime/internal/wasitest/testdata/nonblock.go

    			defer wg.Done()
    
    			close(spawnWait)
    
    			<-ready
    
    			var buf [256]byte
    			n, err := f.Read(buf[:])
    			if err != nil {
    				panic(err)
    			}
    			os.Stderr.Write(buf[:n])
    		}(f)
    
    		// Spawn one goroutine at a time.
    		<-spawnWait
    	}
    
    	println("waiting")
    	close(ready)
    	wg.Wait()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 26 17:59:52 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.go

    // SVG pan and zoom library.
    // See copyright notice in string constant below.
    
    package svgpan
    
    import _ "embed"
    
    // https://github.com/aleofreddi/svgpan
    
    //go:embed svgpan.js
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 196 bytes
    - Viewed (0)
  7. .github/CONTRIBUTING.md

    `checkstyle-result.xml` file.
    
    Some general advice
    
    - Don’t change public API lightly, avoid if possible, and include your reasoning in the PR if essential.  It causes pain for developers who use OkHttp and sometimes runtime errors.
    - Favour a working external library if appropriate.  There are many examples of OkHttp libraries that can sit on top or hook in via existing APIs.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 17 04:16:26 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  8. testing/soak/src/integTest/groovy/org/gradle/workers/internal/WorkerPruningSoakTest.groovy

     */
    
    package org.gradle.workers.internal
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.workers.fixtures.WorkerExecutorFixture
    
    /**
     * Verifies that we can spawn large amounts of workers without running out of memory, because the old ones will be killed
     * if necessary.
     *
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/testprog/annotations-stress.go

    }
    
    func do(ctx context.Context, k int) {
    	trace.Log(ctx, "log", "before do")
    
    	var t *trace.Task
    	ctx, t = trace.NewTask(ctx, "do")
    	defer t.End()
    
    	trace.Log(ctx, "log2", "do")
    
    	// Create a region and spawn more tasks and more workers.
    	trace.WithRegion(ctx, "fanout", func() {
    		for i := 0; i < k; i++ {
    			go func(i int) {
    				trace.WithRegion(ctx, fmt.Sprintf("region%d", i), func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. internal/s3select/sql/jsonpath_test.go

    		participle.Lexer(sqlLexer),
    		participle.CaseInsensitive("Keyword"),
    	)
    	cases := []struct {
    		str string
    		res []interface{}
    	}{
    		{"s.title", []interface{}{"Murder on the Orient Express", "The Robots of Dawn", "Pigs Have Wings"}},
    		{"s.authorInfo.yearRange", []interface{}{[]interface{}{1890.0, 1976.0}, []interface{}{1920.0, 1992.0}, []interface{}{1881.0, 1975.0}}},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top