Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 355 for remSign (0.15 sec)

  1. src/cmd/cgo/internal/test/issue9026/issue9026.go

    	// Test that the generated type names are deterministic.
    	// (Previously this would fail about 10% of the time.)
    	//
    	// Brittle: the assertion may fail spuriously when the algorithm
    	// changes, but should remain stable otherwise.
    	got := fmt.Sprintf("%T %T", in, opts)
    	want := "issue9026._Ctype_struct___0 *issue9026._Ctype_struct___1"
    	if got != want {
    		t.Errorf("Non-deterministic type names: got %s, want %s", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. hack/update-golangci-lint-config.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks that golangci-strict.yaml and golangci.yaml remain in
    # sync. Lines that are intentionally different must have a comment which
    # mentions golangci.yaml or golangci-lint.yaml.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/net/tcpconn_keepalive_solaris_test.go

    			// and TCP_KEEPCNT are set, otherwise it will remain the default value.
    			tcpKeepAliveAbortThreshold = cfg.Interval * time.Duration(cfg.Count)
    		}
    	} else {
    		cfg.Interval = cfg.Interval * time.Duration(cfg.Count)
    		// Either Interval or Count is set to a negative value, TCP_KEEPALIVE_ABORT_THRESHOLD
    		// will remain the default value, so use the old Interval for the subsequent test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/main/java/org/gradle/language/jvm/tasks/ProcessResources.java

    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    
    /**
     * Copies resources from their source to their target directory, potentially processing them.
     * Makes sure no stale resources remain in the target directory.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class ProcessResources extends Copy {
    
        @Override
        protected void copy() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. doc/next/5-toolchain.md

    Similarly, the linker disallows references to such symbols from assembly
    code.
    For backward compatibility, existing usages of `//go:linkname` found in
    a large open-source code corpus remain supported.
    Any new references to standard library internal symbols will be disallowed.
    
    A linker command line flag `-checklinkname=0` can be used to disable
    this check, for debugging and experimenting purposes.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionHost.java

     *
     * <p>The purpose of this type is to be a configuration-cache compatible representation of the thing
     * being resolved. This type should remain as minimal as possible.</p>
     */
    public interface ResolutionHost {
    
        DisplayName displayName();
    
        default String getDisplayName() {
            return displayName().getDisplayName();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/1-time.md

    These new behaviors are only enabled when the main Go program
    is in a module with a `go.mod` `go` line using Go 1.23.0 or later.
    When Go 1.23 builds older programs, the old behaviors remain in effect.
    The new [GODEBUG setting](/doc/godebug) [`asynctimerchan=1`](/pkg/time/#NewTimer)
    can be used to revert back to asynchronous channel behaviors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. README.md

        the [Guava Beta Checker] to ensure that you do not use any `@Beta` APIs!**
    
    2.  APIs without `@Beta` will remain binary-compatible for the indefinite
        future. (Previously, we sometimes removed such APIs after a deprecation
        period. The last release to remove non-`@Beta` APIs was Guava 21.0.) Even
        `@Deprecated` APIs will remain (again, unless they are `@Beta`). We have no
        plans to start removing things again, but officially, we're leaving our
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    This has also forced plugins written in languages other than Groovy to use Groovy types for some APIs.
    
    When the Kotlin DSL was introduced, we made an effort to add non-Groovy equivalents for all APIs.
    This has been mostly done, but there remain a few holdouts (fixing these is out of scope).
    
    To keep the Groovy DSL ergonomic, we generate methods as necessary from the non-Groovy equivalents.
    
    Doing this provides the following specific benefits:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 10 20:38:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbolBase.kt

    /**
     * [KaFirNamedClassOrObjectSymbolBase] provides shared equality and hash code implementations for FIR-based named class or object symbols so
     * that symbols of different kinds can be compared and remain interchangeable.
     */
    internal sealed class KaFirNamedClassOrObjectSymbolBase : KaNamedClassOrObjectSymbol(), KaFirSymbol<FirRegularClassSymbol> {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top