Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,955 for unse (0.19 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/IncompatibilityCrossVersionSpec.groovy

        @TargetGradleVersion("=3.0")
        def "can use plugin built with Gradle 3.2.1 with old version"() {
            expect:
            buildPluginWith("3.2.1")
            assertWorks()
        }
    
        private void assertWorks() {
            // So we don't try to use a classpath distribution
            toolingApi.requireDaemons()
    
            withConnector {
                // TestKit builds that use debug will set this to true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/importdecl0/importdecl0a.go

    type Value /* ERROR "Value already declared through dot-import of package reflect" */ struct{}
    
    var _ = fmt.Println // use "fmt"
    
    func _() {
    	f1.Println() // use "fmt"
    }
    
    func _() {
    	_ = func() {
    		f2.Println() // use "fmt"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/ConfigurationDeprecationType.java

     */
    
    package org.gradle.internal.deprecation;
    
    import java.util.Locale;
    
    public enum ConfigurationDeprecationType {
        DEPENDENCY_DECLARATION("use", true),
        CONSUMPTION("use attributes to consume", false),
        RESOLUTION("resolve", true),
        ARTIFACT_DECLARATION("use", true);
    
        public final String usage;
        public final boolean inUserCode;
    
        ConfigurationDeprecationType(String usage, boolean inUserCode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. guava-testlib/README.md

    not use beta APIs, unless you [repackage] them. **If your
    code is a library, we strongly recommend using the [Guava Beta Checker] to
    ensure that you do not use any `@Beta` APIs!**
    
    [Guava Beta Checker]: https://github.com/google/guava-beta-checker
    
    <!-- References -->
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtCallableSignature.kt

        /**
         * The original symbol for this signature.
         */
        public abstract val symbol: S
    
        /**
         * The use-site-substituted return type.
         */
        public abstract val returnType: KaType
    
        /**
         * The use-site-substituted extension receiver type.
         */
        public abstract val receiverType: KaType?
    
        /**
         * A [CallableId] of a substituted symbol
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/godebug_default.txt

    stderr 'panic: panic called with nil argument'
    
    -- go.work.21 --
    go 1.21
    use .
    use ./q
    
    -- go.work.20 --
    go 1.20
    use .
    use ./q
    
    -- go.mod.21 --
    go 1.21
    module m
    require q v1.0.0
    replace q => ./q
    require rsc.io/panicnil v1.0.0
    
    -- go.mod.20 --
    go 1.20
    module m
    require q v1.0.0
    replace q => ./q
    require rsc.io/panicnil v1.0.0
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/sha3/hashes.go

    // NewLegacyKeccak256 creates a new Keccak-256 hash.
    //
    // Only use this function if you require compatibility with an existing cryptosystem
    // that uses non-standard padding. All other users should use New256 instead.
    func NewLegacyKeccak256() hash.Hash { return &state{rate: 136, outputLen: 32, dsbyte: 0x01} }
    
    // NewLegacyKeccak512 creates a new Keccak-512 hash.
    //
    // Only use this function if you require compatibility with an existing cryptosystem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/templates.md

    # Templates
    
    You can use any template engine you want with **FastAPI**.
    
    A common choice is Jinja2, the same one used by Flask and other tools.
    
    There are utilities to configure it easily that you can use directly in your **FastAPI** application (provided by Starlette).
    
    ## Install dependencies
    
    Install `jinja2`:
    
    <div class="termy">
    
    ```console
    $ pip install jinja2
    
    ---> 100%
    ```
    
    </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/net/dnsconfig.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package net
    
    import (
    	"os"
    	"sync/atomic"
    	"time"
    	_ "unsafe"
    )
    
    // defaultNS is the default name servers to use in the absence of DNS configuration.
    //
    // defaultNS should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/hash/crc32/crc32_generic.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains CRC32 algorithms that are not specific to any architecture
    // and don't use hardware acceleration.
    //
    // The simple (and slow) CRC32 implementation only uses a 256*4 bytes table.
    //
    // The slicing-by-8 algorithm is a faster implementation that uses a bigger
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top