Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for cnames9 (0.57 sec)

  1. cluster/kube-util.sh

        KUBERNETES_PROVIDER=""
    else
        KUBERNETES_PROVIDER="${KUBERNETES_PROVIDER:-gce}"
    fi
    
    # PROVIDER_VARS is a list of cloud provider specific variables. Note:
    # this is a list of the _names_ of the variables, not the value of the
    # variables. Providers can add variables to be appended to kube-env.
    # (see `build-kube-env`).
    
    PROVIDER_UTILS="${KUBE_ROOT}/cluster/${KUBERNETES_PROVIDER}/util.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 21 19:52:51 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/list7.go

    	name, _, _ := SysRegEnc(int16(r))
    	if name != "" {
    		return name
    	}
    	return fmt.Sprintf("badreg(%d)", r)
    }
    
    func DRconv(a int) string {
    	if a >= C_NONE && a <= C_NCLASS {
    		return cnames7[a]
    	}
    	return "C_??"
    }
    
    func SPCconv(a int64) string {
    	spc := SpecialOperand(a)
    	if spc >= SPOP_BEGIN && spc < SPOP_END {
    		return fmt.Sprintf("%s", spc)
    	}
    	return "SPC_??"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/list.go

    package riscv
    
    import (
    	"fmt"
    
    	"cmd/internal/obj"
    )
    
    func init() {
    	obj.RegisterRegister(obj.RBaseRISCV, REG_END, RegName)
    	obj.RegisterOpcode(obj.ABaseRISCV, Anames)
    	obj.RegisterOpSuffix("riscv64", opSuffixString)
    }
    
    func RegName(r int) string {
    	switch {
    	case r == 0:
    		return "NONE"
    	case r == REG_G:
    		return "g"
    	case r == REG_SP:
    		return "SP"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 959 bytes
    - Viewed (0)
  4. releasenotes/notes/envoyfilter-legacy-names.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issues:
    - 29909
    - 29858
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 12 14:18:11 UTC 2021
    - 216 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/preserve-entry-func-names.mlir

    A. Unique TensorFlower <******@****.***> 1679093418 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 22:54:55 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_util.h

     public:
      bool IsGpu(DeviceId device) const { return is_gpu_[device.id()]; }
      bool IsCpu(DeviceId device) const { return is_cpu_[device.id()]; }
    
      absl::string_view GetNameFor(DeviceId device) const {
        return names_[device.id()];
      }
    
      absl::StatusOr<DeviceId> GetIdFor(absl::string_view name);
    
      using DeviceRegistration = const XlaOpRegistry::DeviceRegistration;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. pkg/dns/client/dns_test.go

    		} else {
    			for _, a := range res.Answer {
    				if arec, ok := a.(*dns.A); !ok {
    					// check if this is a cname redirect. If so, repeat the resolution
    					// assuming the client does not see/respect the inlined A record in the response.
    					if crec, ok := a.(*dns.CNAME); !ok {
    						errs++
    					} else {
    						cnames++
    						toResolve = crec.Target
    						goto redirect
    					}
    				} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. test/chan/powser2.go

    	return u.num == c1.num && u.den == c1.den
    }
    
    type dch struct {
    	req chan int
    	dat chan item
    	nam int
    }
    
    type dch2 [2]*dch
    
    var chnames string
    var chnameserial int
    var seqno int
    
    func mkdch() *dch {
    	c := chnameserial % len(chnames)
    	chnameserial++
    	d := new(dch)
    	d.req = make(chan int)
    	d.dat = make(chan item)
    	d.nam = c
    	return d
    }
    
    func mkdch2() *dch2 {
    	d2 := new(dch2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  9. test/chan/powser1.go

    	return u.num == c.num && u.den == c.den
    }
    
    type dch struct {
    	req chan int
    	dat chan rat
    	nam int
    }
    
    type dch2 [2]*dch
    
    var chnames string
    var chnameserial int
    var seqno int
    
    func mkdch() *dch {
    	c := chnameserial % len(chnames)
    	chnameserial++
    	d := new(dch)
    	d.req = make(chan int)
    	d.dat = make(chan rat)
    	d.nam = c
    	return d
    }
    
    func mkdch2() *dch2 {
    	d2 := new(dch2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/wasm/a.out.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package wasm
    
    import "cmd/internal/obj"
    
    //go:generate go run ../stringer.go -i $GOFILE -o anames.go -p wasm
    
    const (
    	/* mark flags */
    	DONE          = 1 << iota
    	PRESERVEFLAGS // not allowed to clobber flags
    )
    
    /*
     *	wasm
     */
    const (
    	AGet = obj.ABaseWasm + obj.A_ARCHSPECIFIC + iota
    	ASet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top