Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 72 of 72 for deflate (0.07 sec)

  1. src/cmd/compile/internal/types2/api_test.go

    	}
    
    	for _, test := range tests {
    		pkg := mustTypecheck("package p;"+test.src, nil, nil)
    		X := pkg.Scope().Lookup("X")
    		Y := pkg.Scope().Lookup("Y")
    		if X == nil || Y == nil {
    			t.Fatal("test must declare both X and Y")
    		}
    		if got := Identical(X.Type(), Y.Type()); got != test.want {
    			t.Errorf("Identical(%s, %s) = %t, want %t", X.Type(), Y.Type(), got, test.want)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	// property that it is sometimes (always?) a small integer instead of a real pointer.
    	// Note: although only the android JVMs are bad in this respect, we declare the JNI types
    	// bad regardless of platform, so the same Go code compiles on both android and non-android.
    	if parent, ok := jniTypes[dt.Name]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top