Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 673 for impacted (0.16 sec)

  1. test/fixedbugs/issue15646.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that method expressions are correctly encoded
    // in binary export data and can be imported again.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 19:23:04 UTC 2016
    - 291 bytes
    - Viewed (0)
  2. ci/official/wheel_test/test_import_api_packages.py

    # limitations under the License.
    # ==============================================================================
    
    """Import API packages test.
    
    This is a Python test that verifies whether API v2 packages can be imported
    from the current build or not.
    
    It uses the `_api/v2/api_packages.txt` file from the local wheel file.
    The `_api/v2/api_packages.txt` file is created during the process of generating
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 13 15:52:07 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/importdecl0/importdecl0b.go

    // license that can be found in the LICENSE file.
    
    package importdecl0
    
    import "math"
    import m "math"
    
    import . "testing" // declares T in file scope
    import . /* ERRORx `.unsafe. imported and not used` */ "unsafe"
    import . "fmt"     // declares Println in file scope
    
    import (
    	"" /* ERROR "invalid import path" */
    	"a!b" /* ERROR "invalid import path" */
    	"abc\xffdef" /* ERROR "invalid import path" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 742 bytes
    - Viewed (0)
  4. test/fixedbugs/issue42401.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 42401: linkname doesn't work correctly when a variable symbol
    // is both imported (possibly through inlining) and linkname'd.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 09 16:09:16 UTC 2020
    - 323 bytes
    - Viewed (0)
  5. test/fixedbugs/bug488.go

    // license that can be found in the LICENSE file.
    
    // The gccgo compiler had a bug: if one file in a package did a dot
    // import, then an earlier file in the package would incorrectly
    // resolve to the imported names rather than reporting undefined
    // errors.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 404 bytes
    - Viewed (0)
  6. src/cmd/internal/objabi/path_test.go

    		_, err := PrefixToPath(tc)
    		if err == nil {
    			t.Errorf("expected PrefixToPath(%s) err != nil, got nil", tc)
    		}
    	}
    }
    
    func TestRuntimePackageList(t *testing.T) {
    	// Test that all packages imported by the runtime are marked as runtime
    	// packages.
    	testenv.MustHaveGoBuild(t)
    	goCmd, err := testenv.GoTool()
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 13:56:25 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GrammarDelegate.java

         */
        public String getClassName() {
            return className;
        }
    
        /**
         * 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.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/gopath_vendor_dup_err.txt

    env GO111MODULE=off
    
    # Issue 17119: Test more duplicate load errors.
    ! go build dupload
    ! stderr 'duplicate load|internal error'
    stderr 'dupload/vendor/p must be imported as p'
    
    -- dupload/dupload.go --
    package main
    
    import (
    	_ "dupload/p2"
    	_ "p"
    )
    
    func main() {}
    -- dupload/p/p.go --
    package p
    -- dupload/p2/p2.go --
    package p2
    
    import _ "dupload/vendor/p"
    -- dupload/vendor/p/p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 399 bytes
    - Viewed (0)
  9. test/fixedbugs/bug462.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 main
    
    import "os"
    
    var _ = os.Open // avoid imported and not used error
    
    type T struct {
    	File int
    }
    
    func main() {
    	_ = T{
    		os.File: 1, // ERROR "invalid field name os.File|unknown field"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 378 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/compatibility.go

    		t.Fatal(err)
    	}
    	{
    		// compact before decoding since embedded RawExtension fields retain indenting
    		compacted := &bytes.Buffer{}
    		if err := gojson.Compact(compacted, actualJSON); err != nil {
    			t.Error(err)
    		}
    
    		jsonDecoded := emptyObj.DeepCopyObject()
    		jsonDecoded, _, err = c.JSON.Decode(compacted.Bytes(), &gvk, jsonDecoded)
    		if err != nil {
    			t.Error(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 16:38:32 UTC 2023
    - 17.8K bytes
    - Viewed (0)
Back to top