Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for pkt2 (0.05 sec)

  1. src/net/interface_plan9.go

    	mtu, _, ok := dtoi(mtustr)
    	if !ok {
    		return nil, errors.New("invalid status file of interface: " + ifcstat)
    	}
    	ifc.MTU = mtu
    
    	// Not a loopback device ("/dev/null") or packet interface (e.g. "pkt2")
    	if stringslite.HasPrefix(device, netdir+"/") {
    		deviceaddrf, err := open(device + "/addr")
    		if err != nil {
    			return nil, err
    		}
    		defer deviceaddrf.close()
    
    		line, ok = deviceaddrf.readLine()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. test/fixedbugs/bug448.dir/pkg2.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 3843: inlining bug due to wrong receive operator precedence.
    
    package pkg2
    
    import "./pkg1"
    
    func F() {
    	pkg1.Do()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 287 bytes
    - Viewed (0)
  3. test/fixedbugs/issue4590.dir/pkg2.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 pkg2
    
    import "./pkg1"
    
    var T = struct{ pkg1.A }{nil}
    var U = struct{ pkg1.B }{nil}
    var V pkg1.A = struct{ *pkg1.C }{nil}
    var W = interface {
    	Write() error
    	Hello()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 340 bytes
    - Viewed (0)
  4. test/fixedbugs/bug392.dir/pkg2.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Use the functions in one.go so that the inlined
    // forms get type-checked.
    
    package pkg2
    
    import "./one"
    
    func use() {
    	one.F1(nil)
    	one.F2(nil)
    	one.F3()
    	one.F4(1)
    
    	var t *one.T
    	t.M()
    	t.MM()
    }
    
    var V = []one.PB{{}, {}}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 405 bytes
    - Viewed (0)
  5. src/net/http/pattern_test.go

    	} {
    		pat1 := mustParsePattern(t, test.p1)
    		pat2 := mustParsePattern(t, test.p2)
    		if g := pat1.comparePaths(pat1); g != equivalent {
    			t.Errorf("%s does not match itself; got %s", pat1, g)
    		}
    		if g := pat2.comparePaths(pat2); g != equivalent {
    			t.Errorf("%s does not match itself; got %s", pat2, g)
    		}
    		got := pat1.comparePaths(pat2)
    		if got != test.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. test/fixedbugs/issue4590.dir/prog.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"./pkg1"
    	"./pkg2"
    )
    
    func main() {
    	if pkg1.T != pkg2.T {
    		panic("pkg1.T != pkg2.T")
    	}
    	if pkg1.U != pkg2.U {
    		panic("pkg1.U != pkg2.U")
    	}
    	if pkg1.V != pkg2.V {
    		panic("pkg1.V != pkg2.V")
    	}
    	if pkg1.W != pkg2.W {
    		panic("pkg1.W != pkg2.W")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 438 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_compile_multi_pkg.txt

    go test -c -o $devnull ./...
    
    rm pkg1.test$GOEXE
    rm pkg2.test$GOEXE
    go test -o . ./pkg/...
    exists -exec pkg1.test$GOEXE
    exists -exec pkg2.test$GOEXE
    
    -- go.mod --
    module example
    
    -- pkg/pkg1/pkg1_test.go --
    package pkg1
    
    -- pkg/pkg2/pkg2_test.go --
    package pkg2
    
    -- anotherpkg/pkg1/pkg1_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:09:34 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cover_statements.txt

    -- go.mod --
    module m
    
    go 1.16
    -- pkg1/a.go --
    package pkg1
    
    import "fmt"
    
    func F() {
    	fmt.Println("pkg1")
    }
    -- pkg2/a.go --
    package pkg2
    
    import "fmt"
    
    func F() {
    	fmt.Println("pkg2")
    }
    -- pkg2/a_test.go --
    package pkg2
    -- pkg3/a.go --
    package pkg3
    
    import "fmt"
    
    func F() {
    	fmt.Println("pkg3")
    }
    -- pkg3/a_test.go --
    package pkg3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:36:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. tests/associations_has_one_test.go

    	}
    
    	CheckPet(t, pet, pet)
    
    	// Find
    	var pet2 Pet
    	DB.Find(&pet2, "id = ?", pet.ID)
    	DB.Model(&pet2).Association("Toy").Find(&pet2.Toy)
    	CheckPet(t, pet2, pet)
    
    	// Count
    	AssertAssociationCount(t, pet, "Toy", 1, "")
    
    	// Append
    	toy := Toy{Name: "toy-has-one-append"}
    
    	if err := DB.Model(&pet2).Association("Toy").Append(&toy); err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. tests/update_has_one_test.go

    			t.Fatalf("errors happened when create: %v", err)
    		}
    
    		var pet2 Pet
    		DB.Preload("Toy").Find(&pet2, "id = ?", pet.ID)
    		CheckPet(t, pet2, pet)
    
    		pet.Toy.Name += "new"
    		if err := DB.Save(&pet).Error; err != nil {
    			t.Fatalf("errors happened when update: %v", err)
    		}
    
    		var pet3 Pet
    		DB.Preload("Toy").Find(&pet3, "id = ?", pet.ID)
    		CheckPet(t, pet2, pet3)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jul 14 06:55:54 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top