Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,230 for unreadable (0.24 sec)

  1. 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)
  2. 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)
  3. src/crypto/internal/boring/boring_test.go

    func TestInit(t *testing.T) {}
    
    // Test that Unreachable panics.
    func TestUnreachable(t *testing.T) {
    	defer func() {
    		if Enabled {
    			if err := recover(); err == nil {
    				t.Fatal("expected Unreachable to panic")
    			}
    		} else {
    			if err := recover(); err != nil {
    				t.Fatalf("expected Unreachable to be a no-op")
    			}
    		}
    	}()
    	Unreachable()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 15:22:22 UTC 2017
    - 842 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. test/retjmp.dir/a.s

    // license that can be found in the LICENSE file.
    
    TEXT	·f(SB), 4, $8-0
    	CALL	·f1(SB)
    	RET	·f2(SB)
    	CALL	·unreachable(SB)
    
    TEXT	·leaf(SB), 4, $0-0
    	RET	·f3(SB)
    	JMP	·unreachable(SB)
    
    TEXT	·leaf2(SB), 4, $32-0 // nonzero frame size
    	RET	·f4(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 22:42:08 UTC 2021
    - 385 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fuzz_non_crash_signal.txt

    ! exists testdata
    ! stdout unreachable
    ! stderr unreachable
    stdout 'fuzzing process terminated by unexpected signal; no crash will be recorded: signal: terminated'
    
    # FuzzKill sends itself a signal that cannot be caught by the worker process
    # and does not appear to be a crash.
    # We should not save a crasher.
    ! go test -fuzz=FuzzKill
    ! exists testdata
    ! stdout unreachable
    ! stderr unreachable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/LineReader.java

              lines.add(line);
            }
          };
    
      /** Creates a new instance that will read lines from the given {@code Readable} object. */
      public LineReader(Readable readable) {
        this.readable = checkNotNull(readable);
        this.reader = (readable instanceof Reader) ? (Reader) readable : null;
      }
    
      /**
       * Reads a line of text. A line is considered to be terminated by any one of a line feed ({@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/LineReader.java

              lines.add(line);
            }
          };
    
      /** Creates a new instance that will read lines from the given {@code Readable} object. */
      public LineReader(Readable readable) {
        this.readable = checkNotNull(readable);
        this.reader = (readable instanceof Reader) ? (Reader) readable : null;
      }
    
      /**
       * Reads a line of text. A line is considered to be terminated by any one of a line feed ({@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. schema/field_test.go

    		{Name: "Name", DBName: "", BindNames: []string{"Name"}, DataType: "", Tag: `gorm:"-"`, Creatable: false, Updatable: false, Readable: false},
    		{Name: "Name2", DBName: "name2", BindNames: []string{"Name2"}, DataType: schema.String, Tag: `gorm:"->"`, Creatable: false, Updatable: false, Readable: true},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 19 09:02:53 UTC 2022
    - 12.7K bytes
    - Viewed (0)
Back to top