Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 316 for deeper (0.1 sec)

  1. test/typeparam/issue44688.go

    	var b1 B1[T]
    	b1.A1 = &A1[T]{}
    	b1.A2 = &ImpA2[T]{}
    
    	b1.A1.m1(arg)
    	b1.m1(arg)
    
    	b1.A2.m2(arg)
    	b1.m2(arg)
    
    	var b2 B2[T]
    	b2 = &ImpA2[T]{}
    	b2.m2(arg)
    
    	// a deeper nesting
    	var d D[T]
    	d.C.B1.A1 = &A1[T]{}
    	d.C.B1.A2 = &ImpA2[T]{}
    	d.m1(arg)
    	d.m2(arg)
    
    	// calling method expressions
    	m1x := B1[T].m1
    	m1x(b1, arg)
    	// TODO(khr): reenable these.
    	//m2x := B2[T].m2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue44688.go

    	filler3 int
    	C[T]
    }
    
    func _() {
    	// calling embedded methods
    	var b1 B1[string]
    
    	b1.A1.m1("")
    	b1.m1("")
    
    	b1.A2.m2("")
    	b1.m2("")
    
    	var b2 B2[string]
    	b2.m2("")
    
    	// a deeper nesting
    	var d D[string]
    	d.m1("")
    	d.m2("")
    
    	// calling method expressions
    	m1x := B1[string].m1
    	m1x(b1, "")
    	m2x := B2[string].m2
    	m2x(b2, "")
    
    	// calling method values
    	m1v := b1.m1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. src/go/printer/testdata/slow.golden

    						bang: &Bar{foo: []*Foo{
    							&Foo{bar: &Bar{baz: &Baz{
    								entries: map[int]interface{}{
    									0:	&Foo{},
    									-2:	&Bar{},
    									-11:	&Baz{whatever: "we need to go deeper"}}}},
    								bang: &Bar{foo: []*Foo{
    									&Foo{bar: &Bar{baz: &Baz{
    										entries: map[int]interface{}{
    											-2:	&Foo{},
    											-5:	&Bar{},
    											-7:	&Baz{whatever: "are you serious?"}}}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultInstrumentedGroovyCallsTrackerTest.groovy

            instance.leaveCall(entryBar)
            instance.leaveCall(entryFoo)
    
            where:
            entryPointKind                 | index
            "has already been popped"      | 0
            "is still deeper in the stack" | 1
        }
    
        def 'throws an exception on instance.markCurrentCallAsIntercepted if its #part does not match'() {
            given:
            def entryFoo = instance.enterCall("FooCallerClass", "foo", INVOKE_METHOD)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/PluginContainerException.java

    import org.codehaus.plexus.configuration.PlexusConfigurationException;
    
    /**
     * Exception which occurs to indicate that the plugin cannot be initialized due
     * to some deeper problem with Plexus. Context information includes the groupId,
     * artifactId, and version for the plugin; at times, the goal name for which
     * execution failed; a message detailing the problem; the ClassRealm used to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/go/printer/testdata/slow.input

    61: &Foo{},
    71: &Bar{},
    11: &Baz{ whatever: "no, it's Go" }}}},
            bang: &Bar{foo: []*Foo{
    &Foo{bar: &Bar{ baz: &Baz{
    entries: map[int]interface{}{
    0: &Foo{},
    -2: &Bar{},
    -11: &Baz{ whatever: "we need to go deeper" }}}},
            bang: &Bar{foo: []*Foo{
    &Foo{bar: &Bar{ baz: &Baz{
    entries: map[int]interface{}{
    -2: &Foo{},
    -5: &Bar{},
    -7: &Baz{ whatever: "are you serious?" }}}},
            bang: &Bar{foo: []*Foo{}}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.9K bytes
    - Viewed (0)
  7. src/reflect/visiblefields.go

    				// to empty to signify that has happened, and
    				// there's no need to add this field.
    				old.Name = ""
    				add = false
    			} else if len(w.index) < len(old.Index) {
    				// The old field loses because it's deeper than the new one.
    				old.Name = ""
    			} else {
    				// The old field wins because it's shallower than the new one.
    				add = false
    			}
    		}
    		if add {
    			// Copy the index so that it's not overwritten
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 26 14:24:17 UTC 2021
    - 3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/NtlmAuthenticator.groovy

        // and that a proper implementation of an NTLM authenticator shouldn't do this
        // but those are test fixtures and I couldn't find a better way to do this
        // without deeper understanding of the Jetty APIs. Feel free to provide an
        // alternate solution
        private final Map<HttpConnection, NtlmConnectionAuthentication> connections = [:]
    
        @Override
        String getAuthMethod() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

            def cycle = new Tree(value: "cycle", left: new Tree(value: "left"))
            cycle.right = cycle
            task.nested = new Tree(value: "first", left: new Tree(value: "left"), right: new Tree(value: "deeper", left: cycle, right: new Tree(value: "no-cycle")))
    
            when:
            visitProperties(task)
    
            then:
            _ * visitor.visitNested() >> true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. src/sync/rwmutex.go

    	}
    }
    
    // TryRLock tries to lock rw for reading and reports whether it succeeded.
    //
    // Note that while correct uses of TryRLock do exist, they are rare,
    // and use of TryRLock is often a sign of a deeper problem
    // in a particular use of mutexes.
    func (rw *RWMutex) TryRLock() bool {
    	if race.Enabled {
    		_ = rw.w.state
    		race.Disable()
    	}
    	for {
    		c := rw.readerCount.Load()
    		if c < 0 {
    			if race.Enabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top