Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 897 for Imported (0.27 sec)

  1. src/cmd/cgo/internal/testshared/testdata/depBaseInternal/dep.go

    // Copyright 2023 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.
    
    // depBaseInternal is only imported by depBase.
    
    package depBaseInternal
    
    var Initialized bool
    
    func init() {
    	Initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:46:11 UTC 2023
    - 292 bytes
    - Viewed (0)
  2. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GrammarDelegate.java

        }
    
        /**
         * Retrieves the name of this vocabulary imported by this grammar.
         *
         * @return The grammar's imported vocabulary name.
         */
        public String getImportVocab() {
            return importVocab;
        }
    
        /**
         * Retrieves the name of this vocabulary exported by this grammar.
         *
         * @return The grammar's exported vocabulary name.
         */
        public String getExportVocab() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/vendor_resolve.txt

    env GO111MODULE=off
    ! go build p
    stderr 'must be imported as x'
    
    -- p/p.go --
    package p
    
    import (
    	_ "q/y"
    	_ "q/z"
    )
    -- q/vendor/x/x.go --
    package x
    -- q/y/y.go --
    package y
    
    import _ "x"
    -- q/z/z.go --
    package z
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 237 bytes
    - Viewed (0)
  4. test/fixedbugs/bug504.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Gccgo mishandled a reference to a type alias in a package that was
    // not directly imported.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 19:02:09 UTC 2017
    - 288 bytes
    - Viewed (0)
  5. test/fixedbugs/issue6428.go

    // errorcheck
    
    // Copyright 2020 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 p
    
    import . "testing" // ERROR "imported and not used"
    
    type S struct {
    	T int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 07:53:10 UTC 2020
    - 281 bytes
    - Viewed (0)
  6. testing/integ-test/src/integTest/groovy/org/gradle/integtests/AntProjectIntegrationTest.groovy

        void handlesAntImportsOk() {
            testFile('imported.xml') << """
    <project>
        <target name='target1'>
            <mkdir dir='build'/>
            <touch file='build/target1.txt'/>
        </target>
    </project>
    """
            testFile('build.xml') << """
    <project>
        <import file="imported.xml"/>
        <target name='target2'>
            <mkdir dir='build'/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. test/fixedbugs/bug358.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // issue 1979
    // used to get internal compiler error too
    
    package main
    
    import (
    	// avoid imported and not used errors
    	// "io/ioutil"
    	"net/http"
    	// "os"
    )
    
    func makeHandler(fn func(http.ResponseWriter, *http.Request, string)) http.HandlerFunc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 04 06:36:33 UTC 2021
    - 601 bytes
    - Viewed (0)
  8. test/fixedbugs/bug478.go

    // Copyright 2013 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.
    
    // Using the same unexported name for a method as a method on an
    // imported embedded type caused a gccgo compilation failure.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 319 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_missing_ziphash.txt

    # 'go build' reports an error. 'go get' adds the sum.
    cp go.sum.bug go.sum
    ! go build -n use
    stderr '^use.go:3:8: missing go.sum entry for module providing package rsc.io/quote \(imported by use\); to add:\n\tgo get use$'
    go get use
    cmp go.sum go.sum.tidy
    go build -n use
    
    # If we delete the hash *and* the ziphash file, we should see the same behavior.
    cp go.sum.bug go.sum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  10. test/fixedbugs/issue4510.dir/f1.go

    // Copyright 2012 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 p
    
    import "fmt" // GCCGO_ERROR "fmt redeclared|imported"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 245 bytes
    - Viewed (0)
Back to top