Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 107 for subA (0.03 sec)

  1. src/cmd/compile/internal/typecheck/subr.go

    Cuong Manh Le <******@****.***> 1696348263 +0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  2. src/log/slog/handler_test.go

    			}
    			sub1 := h.WithAttrs([]Attr{Bool("sub1", true)})
    			sub2 := h.WithAttrs([]Attr{Bool("sub2", true)})
    			var wg sync.WaitGroup
    			for i := 0; i < count; i++ {
    				sub1Record := NewRecord(time.Time{}, LevelInfo, "hello from sub1", 0)
    				sub1Record.AddAttrs(Int("i", i))
    				sub2Record := NewRecord(time.Time{}, LevelInfo, "hello from sub2", 0)
    				sub2Record.AddAttrs(Int("i", i))
    				wg.Add(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

            settingsFile.createFile()
            def sub = file("sub").createDir()
    
            when:
            executer.inDirectory(sub)
            run "help"
    
            then:
            output.contains """
    > Task :help
    
    Welcome to Gradle ${version}.
    
    Directory '$sub' does not contain a Gradle build.
    """
    
            and:
            // Directory is still empty
            sub.assertIsEmptyDir()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. src/io/fs/sub.go

    )
    
    // A SubFS is a file system with a Sub method.
    type SubFS interface {
    	FS
    
    	// Sub returns an FS corresponding to the subtree rooted at dir.
    	Sub(dir string) (FS, error)
    }
    
    // Sub returns an [FS] corresponding to the subtree rooted at fsys's dir.
    //
    // If dir is ".", Sub returns fsys unchanged.
    // Otherwise, if fs implements [SubFS], Sub returns fsys.Sub(dir).
    // Otherwise, Sub returns a new [FS] implementation sub that,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/cmd/internal/test2json/testdata/issue29755.test

            --- PASS: TestOutputWithSubtest/sub_test/sub2 (0.00s)
                foo_test.go:14: output from sub2 test
        foo_test.go:22: output from root test
        foo_test.go:27: output from root test
        --- PASS: TestOutputWithSubtest/sub_test2 (0.00s)
            foo_test.go:21: output from sub test2
            foo_test.go:23: more output from sub test2
            foo_test.go:28: more output from sub test2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/internal/test2json/testdata/issue29755.json

    {"Action":"output","Test":"TestOutputWithSubtest/sub_test","Output":"        foo_test.go:11: more output from sub test\n"}
    {"Action":"output","Test":"TestOutputWithSubtest/sub_test","Output":"        foo_test.go:16: more output from sub test\n"}
    {"Action":"output","Test":"TestOutputWithSubtest/sub_test/sub2","Output":"        --- PASS: TestOutputWithSubtest/sub_test/sub2 (0.00s)\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. test/fixedbugs/issue33355.go

    			mh = append(mh, queues...)
    		}
    		sub.client = gwc
    	}
    	subPool.Put(sub)
    }
    
    func subjectStartsWithGatewayReplyPrefix(subj []byte) bool {
    	return len(subj) > 8 && string(subj[:4]) == "foob"
    }
    
    func (c *client) gatewayInterest(acc, subj string) *SublistResult {
    	ei, _ := c.gw.outsim.Load(acc)
    	var r *SublistResult
    	e := ei.(*outsie)
    	r = e.sl.Match(subj)
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 01 02:15:18 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  8. src/internal/bytealg/indexbyte_386.s

    	MOVL	SI, DI
    	CLD; REPN; SCASB
    	JZ 3(PC)
    	MOVL	$-1, ret+16(FP)
    	RET
    	SUBL	SI, DI
    	SUBL	$1, DI
    	MOVL	DI, ret+16(FP)
    	RET
    
    TEXT ·IndexByteString(SB),NOSPLIT,$0-16
    	MOVL	s_base+0(FP), SI
    	MOVL	s_len+4(FP), CX
    	MOVB	c+8(FP), AL
    	MOVL	SI, DI
    	CLD; REPN; SCASB
    	JZ 3(PC)
    	MOVL	$-1, ret+12(FP)
    	RET
    	SUBL	SI, DI
    	SUBL	$1, DI
    	MOVL	DI, ret+12(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 647 bytes
    - Viewed (0)
  9. test/peano.go

    	e := new(Number)
    	*e = x
    	return e
    }
    
    func sub1(x *Number) *Number {
    	return *x
    }
    
    func add(x, y *Number) *Number {
    	if is_zero(y) {
    		return x
    	}
    
    	return add(add1(x), sub1(y))
    }
    
    func mul(x, y *Number) *Number {
    	if is_zero(x) || is_zero(y) {
    		return zero()
    	}
    
    	return add(mul(x, sub1(y)), x)
    }
    
    func fact(n *Number) *Number {
    	if is_zero(n) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 30 19:39:18 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  10. src/net/netip/uint128_test.go

    		{uint128{0, 0}, sub1, uint128{^uint64(0), ^uint64(0)}},
    		{uint128{0, 1}, sub1, uint128{0, 0}},
    		{uint128{0, 2}, sub1, uint128{0, 1}},
    		{uint128{1, 0}, sub1, uint128{0, ^uint64(0)}},
    		{uint128{1, 1}, sub1, uint128{1, 0}},
    	}
    	for _, tt := range tests {
    		var got uint128
    		switch tt.op {
    		case add1:
    			got = tt.in.addOne()
    		case sub1:
    			got = tt.in.subOne()
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 02 01:28:01 UTC 2021
    - 2.1K bytes
    - Viewed (0)
Back to top