Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 600 for IsSame (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/runtime/iface.go

    	return uintptr(inter.Type.Hash ^ typ.Hash)
    }
    
    // getitab 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 getitab
    func getitab(inter *interfacetype, typ *_type, canfail bool) *itab {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    func (d *namespacedResourcesDeleter) Delete(ctx context.Context, nsName string) error {
    	// Multiple controllers may edit a namespace during termination
    	// first get the latest state of the namespace before proceeding
    	// if the namespace was deleted already, don't do anything
    	namespace, err := d.nsClient.Get(ctx, nsName, metav1.GetOptions{})
    	if err != nil {
    		if errors.IsNotFound(err) {
    			return nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    > No two variants in a dependency graph can provide the same capability
    
    We can leverage this to ensure that Gradle fails whenever the user mis-configures dependencies.
    Consider a situation where your library supports MySQL, Postgres and MongoDB, but that it's only allowed to choose _one_ of those at the same time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loadpe/ldpe.go

    // "__imp_XYZ" but no XYZ can be found.
    func LookupBaseFromImport(s loader.Sym, ldr *loader.Loader, arch *sys.Arch) (loader.Sym, error) {
    	sname := ldr.SymName(s)
    	if !strings.HasPrefix(sname, "__imp_") {
    		return 0, nil
    	}
    	basename := sname[len("__imp_"):]
    	if arch.Family == sys.I386 && basename[0] == '_' {
    		basename = basename[1:] // _Name => Name
    	}
    	isym := ldr.Lookup(basename, 0)
    	if isym == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  10. src/runtime/runtime.go

    // Do not remove or change the type signature.
    // (See go.dev/issue/57336.)
    //
    // getAuxv should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/cilium/ebpf
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname getAuxv
    func getAuxv() []uintptr { return auxv }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top