Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Finalize (0.27 sec)

  1. cmd/net_test.go

    					found = true
    				}
    			}
    			if !found {
    				t.Fatalf("host: expected = %v, got = %v", testCase.expectedIPList, ipList)
    			}
    		}
    	}
    }
    
    // Tests finalize api endpoints.
    func TestGetAPIEndpoints(t *testing.T) {
    	host, port := globalMinioHost, globalMinioPort
    	defer func() {
    		globalMinioHost, globalMinioPort = host, port
    	}()
    	testCases := []struct {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 19 08:43:09 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    			p.recordTypedefs1(a, pos, visited)
    		}
    	case *dwarf.StructType:
    		for _, f := range dt.Field {
    			p.recordTypedefs1(f.Type, pos, visited)
    		}
    	}
    }
    
    // prepareNames finalizes the Kind field of not-type names and sets
    // the mangled name of all names.
    func (p *Package) prepareNames(f *File) {
    	for _, n := range f.Name {
    		if n.Kind == "not-type" {
    			if n.Define == "" {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top