Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 339 for Fname (0.05 sec)

  1. src/reflect/type.go

    func (t *interfaceType) Method(i int) (m Method) {
    	if i < 0 || i >= len(t.Methods) {
    		return
    	}
    	p := &t.Methods[i]
    	pname := t.nameOff(p.Name)
    	m.Name = pname.Name()
    	if !pname.IsExported() {
    		m.PkgPath = pkgPath(pname)
    		if m.PkgPath == "" {
    			m.PkgPath = t.PkgPath.Name()
    		}
    	}
    	m.Type = toType(t.typeOff(p.Typ))
    	m.Index = i
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. releasenotes/notes/external-name.yaml

          that points to `example.com`. This is implemented by a DNS `CNAME` redirect.
          
          In Istio, the implementation of `ExternalName`, historically, was substantially different. Each `ExternalName` represented its own
          service, and traffic matching the service was sent to the configured DNS name.
          
          This caused a few issues:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. CNAME

    Harshavardhana <******@****.***> 1624037668 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 18 17:34:28 UTC 2021
    - 14 bytes
    - Viewed (0)
  4. src/syscall/syscall_windows.go

    	Family uint16
    	Path   [UNIX_PATH_MAX]int8
    }
    
    type SockaddrUnix struct {
    	Name string
    	raw  RawSockaddrUnix
    }
    
    func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, int32, error) {
    	name := sa.Name
    	n := len(name)
    	if n > len(sa.raw.Path) {
    		return nil, 0, EINVAL
    	}
    	if n == len(sa.raw.Path) && name[0] != '@' {
    		return nil, 0, EINVAL
    	}
    	sa.raw.Family = AF_UNIX
    	for i := 0; i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  5. releasenotes/notes/external-name-on.yaml

          that points to `example.com`. This is implemented by a DNS `CNAME` redirect.
    
          In Istio, the implementation of `ExternalName`, historically, was substantially different. Each `ExternalName` represented its own
          service, and traffic matching the service was sent to the configured DNS name.
    
          This caused a few issues:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 02 18:58:52 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/cluster.go

    		iDirection, iSubset, iName, iPort := safelyParseSubsetKey(clusters[i].Name)
    		jDirection, jSubset, jName, jPort := safelyParseSubsetKey(clusters[j].Name)
    		if iName == jName {
    			if iSubset == jSubset {
    				if iPort == jPort {
    					return iDirection < jDirection
    				}
    				return iPort < jPort
    			}
    			return iSubset < jSubset
    		}
    		return iName < jName
    	})
    	return clusters, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 05:38:17 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. src/cmd/fix/main_test.go

    					out, out2)
    				tdiff(t, "first", out, "second", out2)
    			}
    		})
    	}
    }
    
    func tdiff(t *testing.T, aname, a, bname, b string) {
    	t.Errorf("%s", diff.Diff(aname, []byte(a), bname, []byte(b)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    	testFuncName := runtime.FuncForPC(pc).Name()
    
    	timeoutMsg := "timed out here!"
    
    	tests := []struct {
    		name        string
    		mustTimeout bool
    		wantResp    string
    	}{
    		{
    			name:     "return before timeout",
    			wantResp: "HTTP/1.1 404 Not Found\r\nContent-Length: 0\r\n\r\n",
    		},
    		{
    			name:        "return after timeout",
    			mustTimeout: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    	}
    
    	// Wrapper calls into gcc, passing a pointer to the argument frame.
    	fmt.Fprintf(fgo2, "//go:cgo_import_static %s\n", cname)
    	fmt.Fprintf(fgo2, "//go:linkname __cgofn_%s %s\n", cname, cname)
    	fmt.Fprintf(fgo2, "var __cgofn_%s byte\n", cname)
    	fmt.Fprintf(fgo2, "var %s = unsafe.Pointer(&__cgofn_%s)\n", cname, cname)
    
    	nret := 0
    	if !void {
    		d.Type.Results.List[0].Names = []*ast.Ident{ast.NewIdent("r1")}
    		nret = 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	return
    }
    
    func connect(s Handle, name unsafe.Pointer, namelen int32) (err error) {
    	r1, _, e1 := syscall.Syscall(procconnect.Addr(), 3, uintptr(s), uintptr(name), uintptr(namelen))
    	if r1 == socket_error {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func GetHostByName(name string) (h *Hostent, err error) {
    	var _p0 *byte
    	_p0, err = syscall.BytePtrFromString(name)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top