Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,979 for PACKAGE (1 sec)

  1. src/cmd/go/testdata/script/build_cache_pgo.txt

    mkdir $GOCACHE
    
    # Building trivial non-main package should run preprofile the first time.
    go build -x -pgo=default.pgo lib.go
    stderr 'preprofile.*default\.pgo'
    
    # ... but not again ...
    go build -x -pgo=default.pgo lib.go
    ! stderr 'preprofile.*default\.pgo'
    
    # ... unless we use -a.
    go build -a -x -pgo=default.pgo lib.go
    stderr 'preprofile.*default\.pgo'
    
    # ... building a different package should not run preprofile again, instead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 18:28:25 UTC 2024
    - 927 bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/test.go

    //   - pmain, the package main corresponding to the test binary (running tests in ptest and pxtest).
    //   - ptest, the package p compiled with added "package p" test files.
    //   - pxtest, the result of compiling any "package p_test" (external) test files.
    //
    // If the package has no "package p_test" test files, pxtest will be nil.
    // If the non-test compilation of package p can be reused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_compat_deleted.txt

    )
    
    require example.com/m v0.1.0
    -- m.go --
    package m
    
    import (
    	_ "example.net/deleted"
    	_ "example.net/lazy"
    )
    
    -- d1/go.mod --
    module example.net/deleted
    
    go 1.17
    -- d1/deleted.go --
    package deleted
    -- d2/go.mod --
    module example.net/deleted
    
    go 1.17
    -- d2/README --
    There is no longer a Go package here.
    
    -- lazy/go.mod --
    module example.net/lazy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    void <clinit>(); } org/codehaus/plexus/util/introspection/ClassMap$1.class package org.codehaus.plexus.util.introspection; synchronized class ClassMap$1 { } org/codehaus/plexus/util/introspection/ClassMap$CacheMiss.class package org.codehaus.plexus.util.introspection; final synchronized class ClassMap$CacheMiss { private void ClassMap$CacheMiss(); } org/codehaus/plexus/util/introspection/ClassMap$MethodInfo.class package org.codehaus.plexus.util.introspection; final synchronized class ClassMap$MethodInfo...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionFile.kt

         */
        public abstract fun getFileName(): String
    
        /**
         * [FqName] of the package specified in the file
         *
         * The operation might be called regularly, so the [getFilePackageName] should work fast and avoid building the whole file text.
         *
         * It should be equal to the package name specified in the [buildFileText].
         *
         * @see KaResolveExtensionFile
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/scan.go

    }
    
    // indexPackage indexes the package at the given directory and returns its
    // encoded representation. It returns ErrNotIndexed if the package can't
    // be indexed.
    func indexPackage(modroot, pkgdir string) []byte {
    	fsys.Trace("indexPackage", pkgdir)
    	p := importRaw(modroot, relPath(pkgdir, modroot))
    	return encodePackageBytes(p)
    }
    
    // rawPackage holds the information from each package that's needed to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtSymbolBasedReference.kt

     */
    
    package org.jetbrains.kotlin.analysis.api
    
    import org.jetbrains.kotlin.analysis.api.resolution.KaSymbolBasedReference
    
    @OptIn(KaAnalysisApiInternals::class)
    @Deprecated(
        "The API has been moved into `org.jetbrains.kotlin.analysis.api.resolution` package",
        level = DeprecationLevel.HIDDEN,
    )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 677 bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/integTest/groovy/org/gradle/internal/declarativedsl/ErrorHandlingOnReflectiveCallsSpec.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl
    
    import org.gradle.api.internal.plugins.software.RegistersSoftwareTypes
    import org.gradle.api.internal.plugins.software.SoftwareType
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. .github/dependabot.yml

    # easily import the generated PRs into our internal repo.
    #  - package-ecosystem: "maven"
    #    directory: "/"
    #    schedule:
    #      interval: "weekly"
    #    groups:
    #      dependencies:
    #        applies-to: version-updates
    #        patterns:
    #          - "*"
    #  - package-ecosystem: "maven"
    #    directory: "/android"
    #    schedule:
    #      interval: "weekly"
    #    groups:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 04 17:08:24 UTC 2024
    - 761 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_vendor_collision.txt

    module example.com/foo
    -- foo/foo.go --
    package foo
    
    -- foo_alt/go.mod --
    module example.com/Foo
    -- foo_alt/foo.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:04:57 UTC 2024
    - 528 bytes
    - Viewed (0)
Back to top