Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,437 for IsSame (0.12 sec)

  1. src/crypto/x509/root.go

    package x509
    
    import (
    	"internal/godebug"
    	"sync"
    	_ "unsafe" // for linkname
    )
    
    // systemRoots should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/breml/rootcerts
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname systemRoots
    var (
    	once           sync.Once
    	systemRootsMu  sync.RWMutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/runtime/slice.go

    		asanread(from, copymem)
    	}
    
    	memmove(to, from, copymem)
    
    	return to
    }
    
    // makeslice should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname makeslice
    func makeslice(et *_type, len, cap int) unsafe.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/obj6.go

    			q.From.Reg = REG_CX
    			q.To = p.To
    			p.As = AMOVL
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = REG_CX
    			p.To.Sym = nil
    			p.To.Name = obj.NAME_NONE
    		}
    	}
    
    	if !isName(&p.From) && !isName(&p.To) && (p.GetFrom3() == nil || !isName(p.GetFrom3())) {
    		return
    	}
    	var dst int16 = REG_CX
    	if (p.As == ALEAL || p.As == AMOVL) && p.To.Reg != p.From.Reg && p.To.Reg != p.From.Index {
    		dst = p.To.Reg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/virtualservice.go

    			k = kind.GRPCRoute
    		case kind.UDPRoute.String():
    			k = kind.UDPRoute
    		default:
    			// shouldn't happen
    			continue
    		}
    		name, ns, ok := strings.Cut(nsname, ".")
    		if !ok {
    			log.Errorf("invalid InternalParentName name: %s", nsname)
    			continue
    		}
    		out = append(out, ConfigKey{
    			Kind:      k,
    			Name:      name,
    			Namespace: ns,
    		})
    	}
    	return out
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. internal/config/notify/legacy.go

    	return nil
    }
    
    // SetNotifyES - helper for config migration from older config.
    func SetNotifyES(s config.Config, esName string, cfg target.ElasticsearchArgs) error {
    	if !cfg.Enable {
    		return nil
    	}
    
    	if err := cfg.Validate(); err != nil {
    		return err
    	}
    
    	s[config.NotifyESSubSys][esName] = config.KVS{
    		config.KV{
    			Key:   config.Enable,
    			Value: config.EnableOn,
    		},
    		config.KV{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. src/runtime/runtime1.go

    		gp.stackguard0 = stackPreempt
    	}
    }
    
    // reflect_typelinks is meant for package reflect,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gitee.com/quant1x/gox
    //   - github.com/goccy/json
    //   - github.com/modern-go/reflect2
    //   - github.com/vmware/govmomi
    //   - github.com/pinpoint-apm/pinpoint-go-agent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/runtime/atomic_pointer.go

    // The caller should guard the call with "if writeBarrier.enabled".
    //
    // atomicwb should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/gopkg
    //   - github.com/songzhibin97/gkit
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname atomicwb
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/runtime/map_fast32.go

    			}
    		}
    	}
    	return unsafe.Pointer(&zeroVal[0])
    }
    
    // mapaccess2_fast32 should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/ugorji/go/codec
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname mapaccess2_fast32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. src/net/ipsock_posix.go

    //     listen.
    //
    //   - A listen for a wildcard communication domain, "tcp" or
    //     "udp", with an IPv4 wildcard address: same as above.
    //
    //   - A listen for a wildcard communication domain, "tcp" or
    //     "udp", with an IPv6 wildcard address: same as above.
    //
    //   - A listen for an IPv4 communication domain, "tcp4" or "udp4",
    //     with an IPv4 wildcard address: We use an IPv4-only, AF_INET,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. src/runtime/cpuprof.go

    	panic("CPUProfile no longer available")
    }
    
    // runtime/pprof.runtime_cyclesPerSecond should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/grafana/pyroscope-go/godeltaprof
    //   - github.com/pyroscope-io/godeltaprof
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top