Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 609 for unreadable (0.24 sec)

  1. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

        public void setField(final Field field) {
            this.field = field;
            if (field != null && ModifierUtil.isPublic(field)) {
                readable = true;
                writable = true;
            }
        }
    
        @Override
        public boolean isReadable() {
            return readable;
        }
    
        @Override
        public boolean isWritable() {
            return writable;
        }
    
        @Override
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go121.go

    // It will never be created by go/types.
    type Alias struct{}
    
    func (*Alias) String() string         { panic("unreachable") }
    func (*Alias) Underlying() types.Type { panic("unreachable") }
    func (*Alias) Obj() *types.TypeName   { panic("unreachable") }
    func Rhs(alias *Alias) types.Type     { panic("unreachable") }
    
    // Unalias returns the type t for go <=1.21.
    func Unalias(t types.Type) types.Type { return t }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 962 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            }
    
            public boolean isReadOnly() {
                return isReadable() && !isWritable();
            }
    
            public boolean isReadableWithoutSetterOfPropertyType() {
                return isReadable() && setters.stream().noneMatch(method -> method.getParameterTypes()[0].equals(getType()));
            }
    
            public boolean isReadable() {
                return mainGetter != null;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/scope.go

    func (*lazyObject) Parent() *Scope                     { panic("unreachable") }
    func (*lazyObject) Pos() syntax.Pos                    { panic("unreachable") }
    func (*lazyObject) Pkg() *Package                      { panic("unreachable") }
    func (*lazyObject) Name() string                       { panic("unreachable") }
    func (*lazyObject) Type() Type                         { panic("unreachable") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/go/types/scope.go

    func (*lazyObject) Parent() *Scope                     { panic("unreachable") }
    func (*lazyObject) Pos() token.Pos                     { panic("unreachable") }
    func (*lazyObject) Pkg() *Package                      { panic("unreachable") }
    func (*lazyObject) Name() string                       { panic("unreachable") }
    func (*lazyObject) Type() Type                         { panic("unreachable") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/notboring.go

    )
    
    const available = false
    
    // Unreachable marks code that should be unreachable
    // when BoringCrypto is in use. It is a no-op without BoringCrypto.
    func Unreachable() {
    	// Code that's unreachable when using BoringCrypto
    	// is exactly the code we want to detect for reporting
    	// standard Go crypto.
    	sig.StandardCrypto()
    }
    
    // UnreachableExceptTests marks code that should be unreachable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

     * actions taken by the java garbage collection system:
     *
     * <ul>
     *   <li>invoking the {@code finalize} methods of unreachable objects
     *   <li>clearing weak references to unreachable referents
     *   <li>enqueuing weak references to unreachable referents in their reference queue
     * </ul>
     *
     * <p>This class uses (possibly repeated) invocations of {@link java.lang.System#gc()} to cause
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/GcFinalization.java

     * actions taken by the java garbage collection system:
     *
     * <ul>
     *   <li>invoking the {@code finalize} methods of unreachable objects
     *   <li>clearing weak references to unreachable referents
     *   <li>enqueuing weak references to unreachable referents in their reference queue
     * </ul>
     *
     * <p>This class uses (possibly repeated) invocations of {@link java.lang.System#gc()} to cause
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    //
    //  The branch that has an always false condition is used to ensure that
    //  statement and regex are compiled (and thus syntactically correct) but
    //  never executed. The unreachable code macro protects the terminator
    //  statement from generating an 'unreachable code' warning in case
    //  statement unconditionally returns or throws. The Message constructor at
    //  the end allows the syntax of streaming additional messages into the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/boring.go

    	}
    	sig.BoringCrypto()
    }
    
    // Unreachable marks code that should be unreachable
    // when BoringCrypto is in use. It panics.
    func Unreachable() {
    	panic("boringcrypto: invalid code execution")
    }
    
    // provided by runtime to avoid os import.
    func runtime_arg0() string
    
    // UnreachableExceptTests marks code that should be unreachable
    // when BoringCrypto is in use. It panics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top