Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,363 for inter (0.05 sec)

  1. android/guava/src/com/google/common/collect/Interner.java

       * equal to each other. If two {@linkplain Object#equals equal} inputs are given to this method,
       * both calls will return the same instance. That is, {@code intern(a).equals(a)} always holds,
       * and {@code intern(a) == intern(b)} if and only if {@code a.equals(b)}. Note that {@code
       * intern(a)} is permitted to return one instance now and a different instance later if the
       * original interned instance was garbage-collected.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithInnerTypes.java

    public class JavaClassWithInnerTypes implements Sub2Interface {
        /**
         * This is an inner enum.
         */
        enum InnerEnum {
        }
    
        /**
         * This is an inner class.
         */
        static class InnerClass {
            InnerEnum getEnumProp() { return null; }
    
            /**
             * This is an inner inner class.
             */
            class AnotherInner {
                InnerClass getOuter() { return null; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 876 bytes
    - Viewed (0)
  3. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithInnerTypes.groovy

    class GroovyClassWithInnerTypes implements GroovyInterface {
        /**
         * This is an inner enum.
         */
        enum InnerEnum {}
    
        /**
         * This is an inner class.
         */
        static class InnerClass {
            InnerEnum enumProp
    
            /**
             * This is an inner inner class.
             */
            class AnotherInner {
                InnerClass outer
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 609 bytes
    - Viewed (0)
  4. test/method7.go

    type S struct {
    }
    
    func (S) m()          { got += " m()" }
    func (S) m1(s string) { got += " m1(" + s + ")" }
    
    type T int
    
    func (T) m2() { got += " m2()" }
    
    type Outer struct{ *Inner }
    type Inner struct{ s string }
    
    func (i Inner) M() string { return i.s }
    
    func main() {
    	// method expressions with named receiver types
    	I.m(S{})
    	want += " m()"
    
    	S.m1(S{}, "a")
    	want += " m1(a)"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 26 17:05:06 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. src/testing/panic_test.go

        --- FAIL: TestPanicHelper/1 (N.NNs)
            panic_test.go:NNN: TestPanicHelper/1
    `,
    	}, {
    		desc:  "subtest panics with inner cleanup panic",
    		flags: []string{"-test_panic_test=TestPanicHelper/1", "-test_panic_cleanup", "-test_panic_cleanup_panic=inner"},
    		want: `
    ran inner cleanup 1
    ran middle cleanup 1
    ran outer cleanup
    --- FAIL: TestPanicHelper (N.NNs)
        panic_test.go:NNN: TestPanicHelper
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 16:49:24 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/NestedModelRuleDslDetectionIntegrationTest.groovy

                    println "inner 1: " + it
                }
                conf($('param')) {
                    println "inner 2: " + it
                }
            }
        }
        tasks {
            show(Task) { doLast { println $.thing } }
        }
    }
    '''
    
            expect:
            succeeds "show"
            output.contains("outer 1: param")
            output.contains("inner 1: param")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. test/fixedbugs/issue22794.go

    type it struct {
    	Floats bool
    	inner  string
    }
    
    func main() {
    	i1 := it{Floats: true}
    	if i1.floats { // ERROR "(type it .* field or method floats, but does have field Floats)|undefined field or method"
    	}
    	i2 := &it{floats: false} // ERROR "cannot refer to unexported field floats in struct literal|unknown field|declared and not used"
    	_ = &it{InneR: "foo"}    // ERROR "(but does have field inner)|unknown field"
    	_ = i2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 615 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.txt

        public final inner class Operation$Subtract
    }
    
    public abstract class Operation {
        // source: 'classKinds.kt'
        private method <init>(): void
        public synthetic method <init>(p0: kotlin.jvm.internal.DefaultConstructorMarker): void
        public final inner class Operation$Add
        public final inner class Operation$Negate
        public final inner class Operation$Subtract
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. src/crypto/tls/tls.go

    }
    
    // NewListener creates a Listener which accepts connections from an inner
    // Listener and wraps each connection with [Server].
    // The configuration config must be non-nil and must include
    // at least one certificate or else set GetCertificate.
    func NewListener(inner net.Listener, config *Config) net.Listener {
    	l := new(listener)
    	l.Listener = inner
    	l.config = config
    	return l
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/MethodDescriptionTest.groovy

        }
    
        def "inner class name format"() {
            expect:
            MethodDescription.name('a').owner(Outer.Inner).toString() == 'org.gradle.internal.reflect.MethodDescriptionTest$Outer$Inner#a'
        }
    
        class Outer {
            static class Inner {
    
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top