Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 800 for bug5 (0.2 sec)

  1. test/fixedbugs/bug007.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type (
    	Point struct {
    		x, y float64
    	}
    	Polar Point
    )
    
    func main() {
    }
    
    /*
    bug7.go:5: addtyp: renaming Point to Polar
    main.go.c:14: error: redefinition of typedef ‘_T_2’
    main.go.c:13: error: previous declaration of ‘_T_2’ was here
    main.go.c:16: error: redefinition of ‘struct _T_2’
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 481 bytes
    - Viewed (0)
  2. src/go/doc/testdata/a1.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.
    
    // comment 1
    package a
    
    //BUG(uid): bug1
    
    //TODO(uid): todo1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 240 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-versionsWithConstraints/groovy/build.gradle

        constraints {
            implementation('org.apache.httpcomponents:httpclient:4.5.3') {
                because 'previous versions have a bug impacting this application'
            }
            implementation('commons-codec:commons-codec:1.11') {
                because 'version 1.9 pulled from httpclient has bugs affecting this application'
            }
        }
    }
    // end::dependency-constraints[]
    
    tasks.register('copyLibs', Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 682 bytes
    - Viewed (0)
  4. src/encoding/gob/encoder_test.go

    }
    
    // Mutually recursive slices of structs caused problems.
    type Bug3 struct {
    	Num      int
    	Children []*Bug3
    }
    
    func TestGobPtrSlices(t *testing.T) {
    	in := []*Bug3{
    		{1, nil},
    		{2, nil},
    	}
    	b := new(bytes.Buffer)
    	err := NewEncoder(b).Encode(&in)
    	if err != nil {
    		t.Fatal("encode:", err)
    	}
    
    	var out []*Bug3
    	err = NewDecoder(b).Decode(&out)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. test/fixedbugs/bug057.go

    package main
    
    type T struct {
    	s string;
    }
    
    
    func main() {
    	s := "";
    	l1 := len(s);
    	var t T;
    	l2 := len(t.s);	// BUG: cannot take len() of a string field
    	_, _ = l1, l2;
    }
    
    /*
    uetli:/home/gri/go/test/bugs gri$ 6g bug057.go
    bug057.go:14: syntax error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 426 bytes
    - Viewed (0)
  6. releasenotes/notes/bug-report-speedup.yaml

    # This should be filled in for all user facing changes.
    
    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. BUGS-AND-FEATURE-REQUESTS.md

    # Bugs and Feature Requests
    
    You can report bugs and feature requests to the Istio team in one of three places:
    
    - [Product Bugs and Feature Requests](https://github.com/istio/istio/issues)
    - [Documentation Bugs and Feature Requests](https://github.com/istio/istio.io/issues)
    - [Community and Governance Issues](https://github.com/istio/community/issues)
    
    For security vulnerabilities, please don't report a bug (which is public) and instead follow
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 17 16:57:25 UTC 2019
    - 519 bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/tensorflow_issue_template.yaml

      - type: dropdown
        id: tf-nightly
        attributes:
          label: Have you reproduced the bug with TensorFlow Nightly?
          description: It is strongly suggested that you reproduce the bug with [TensorFlow Nightly](https://www.tensorflow.org/install/pip#nightly)
          options:
            - "Yes"
            - "No"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 28 18:25:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. test/fixedbugs/bug262.go

    	m := make(map[string]int)
    	m[f()], *g() = strconv.Atoi(h())
    	if m["abc"] != 123 || trace != "fgh" {
    		println("BUG", m["abc"], trace)
    		panic("fail")
    	}
    	mm := make(map[string]error)
    	trace = ""
    	mm["abc"] = errors.New("invalid")
    	*i(), mm[f()] = strconv.Atoi(h())
    	if mm["abc"] != nil || trace != "ifh" {
    		println("BUG1", mm["abc"], trace)
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:59 UTC 2012
    - 823 bytes
    - Viewed (0)
  10. src/go/doc/testdata/bugpara.1.golden

    // 
    PACKAGE bugpara
    
    IMPORTPATH
    	testdata/bugpara
    
    FILENAMES
    	testdata/bugpara.go
    
    BUGS .Bugs is now deprecated, please use .Notes instead
    	Sometimes bugs have multiple paragraphs.
    	
    	Like this one.
    
    
    BUGS
    BUG(rsc)	Sometimes bugs have multiple paragraphs.
    	
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 275 bytes
    - Viewed (0)
Back to top