Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 773 for checkMod (0.12 sec)

  1. src/cmd/link/testdata/testHashedSyms/p.go

    // report a hash collision. The linker can (and actually does)
    // dedup the two symbols, by keeping the larger symbol. The dedup
    // is not a requirement for correctness and not checked in this test.
    // We do check the emitted symbol contents are correct, though.
    
    package main
    
    func main() {
    	F([10]int{1, 2, 3, 4, 5, 6}, [20]int{1, 2, 3, 4, 5, 6})
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 21 21:14:19 UTC 2020
    - 908 bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue47796.go

    	// mutually recursive constraints
    	T5 /* ERROR "invalid recursive type" */ [P T6[P]] interface{ int }
    	T6[P T5[P]] interface{ int }
    )
    
    // verify that constraints are checked as expected
    var (
    	_ T1[int]
    	_ T2[int, string]
    	_ T3[int, string]
    )
    
    // test case from issue
    
    type Eq /* ERROR "invalid recursive type" */ [a Eq[a]] interface {
    	Equal(that a) bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_verify_work.txt

    # Regression test for Issue #62663: we would filter out the toolchain and
    # main modules from the build list incorrectly, leading to the workspace
    # modules being checked for correct sums. Specifically this would happen when
    # the module name sorted after the virtual 'go' version module name because
    # it could not get chopped off when we removed the MainModules.Len() modules
    # at the beginning of the build list and we would remove the go module instead.
    
    go mod verify
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 724 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdmethods/doc.go

    //
    // This check ensures that each method whose name matches one of several
    // well-known interface methods from the standard library has the correct
    // signature for that interface.
    //
    // Checked method names include:
    //
    //	Format GobEncode GobDecode MarshalJSON MarshalXML
    //	Peek ReadByte ReadFrom ReadRune Scan Seek
    //	UnmarshalJSON UnreadByte UnreadRune WriteByte
    //	WriteTo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       * <ul>
       *   <li>All visible static methods are checked such that passing null for any parameter that's
       *       not annotated nullable (according to the rules of {@link NullPointerTester}) should throw
       *       {@link NullPointerException}.
       *   <li>If there is any visible constructor or visible static factory method declared by the
       *       class, all visible instance methods will be checked too using the instance created by
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. src/encoding/gob/type.go

    	checkId(16, tWireType)
    	checkId(17, mustGetTypeInfo(reflect.TypeFor[arrayType]()).id)
    	checkId(18, mustGetTypeInfo(reflect.TypeFor[CommonType]()).id)
    	checkId(19, mustGetTypeInfo(reflect.TypeFor[sliceType]()).id)
    	checkId(20, mustGetTypeInfo(reflect.TypeFor[structType]()).id)
    	checkId(21, mustGetTypeInfo(reflect.TypeFor[fieldType]()).id)
    	checkId(23, mustGetTypeInfo(reflect.TypeFor[mapType]()).id)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/MavenPluginPrerequisitesChecker.java

     */
    @FunctionalInterface
    public interface MavenPluginPrerequisitesChecker extends Consumer<PluginDescriptor> {
        /**
         *
         * @param pluginDescriptor
         * @throws IllegalStateException in case the checked prerequisites are not met
         */
        void accept(PluginDescriptor pluginDescriptor);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. src/log/slog/value_access_benchmark_test.go

    // Benchmark for accessing Value values.
    
    package slog
    
    import (
    	"testing"
    	"time"
    )
    
    // The "As" form is the slowest.
    // The switch-panic and visitor times are almost the same.
    // BenchmarkDispatch/switch-checked-8         	 8669427	       137.7 ns/op
    // BenchmarkDispatch/As-8                     	 8212087	       145.3 ns/op
    // BenchmarkDispatch/Visit-8                  	 8926146	       135.3 ns/op
    func BenchmarkDispatch(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 20:55:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/named.go

    	"sync/atomic"
    )
    
    // Type-checking Named types is subtle, because they may be recursively
    // defined, and because their full details may be spread across multiple
    // declarations (via methods). For this reason they are type-checked lazily,
    // to avoid information being accessed before it is complete.
    //
    // Conceptually, it is helpful to think of named types as having two distinct
    // sets of information:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/CIFSException.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs;
    
    
    import java.io.IOException;
    
    
    /**
     * Base for all checked exceptions used by this library
     * 
     * @author mbechler
     *
     */
    public class CIFSException extends IOException {
    
        /**
         * 
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
Back to top