Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for Ra (0.02 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/AbstractLineChoppingStyledTextOutputTest.groovy

            System.setProperty("line.separator", "\r\n")
            def output = output()
    
            when:
            output.text('\r')
            output.text('a')
    
            then:
            result.toString() == "[\ra]"
        }
    
        def "can append new line after multiple carriage return followed by data on Windows"() {
            System.setProperty("line.separator", "\r\n")
            def output = output()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. build/common.sh

      kube::util::ensure-docker-buildx
    
      local -r image=$1
      local -r context_dir=$2
      local -r pull="${3:-true}"
      local build_args
      IFS=" " read -r -a build_args <<< "$4"
      readonly build_args
      local -ra build_cmd=("${DOCKER[@]}" buildx build --load -t "${image}" "--pull=${pull}" "${build_args[@]}" "${context_dir}")
    
      kube::log::status "Building Docker image ${image}"
      local docker_output
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/container_manager_windows.go

    	deviceManager devicemanager.Manager
    	// Interface for Topology resource co-ordination
    	topologyManager topologymanager.Manager
    }
    
    type noopWindowsResourceAllocator struct{}
    
    func (ra *noopWindowsResourceAllocator) Admit(attrs *lifecycle.PodAdmitAttributes) lifecycle.PodAdmitResult {
    	return admission.GetPodAdmitResult(nil)
    }
    
    func (cm *containerManagerImpl) Start(node *v1.Node,
    	activePods ActivePodsFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 11:25:36 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    ru.eu.org ru.net rugby ruhr run run.app ruovat.no russia.museum rv.ua rw rwe rybnik.pl ryd.wafaicloud.com rygge.no ryokami.saitama.jp ryugasaki.ibaraki.jp ryukyu ryuoh.shiga.jp rzeszow.pl rzgw.gov.pl ¡hkkerávju.no ¡isa.no ¥de.no ¥holt.no ¦lingen.no ¸døy.no ¸mskog.no ¸ros.no ¸st.no ¸yken.no ¸yrvik.no s.bg s.se s3-ap-northeast-1.amazonaws.com s3-ap-northeast-2.amazonaws.com s3-ap-south-1.amazonaws.com s3-ap-southeast-1.amazonaws.com s3-ap-southeast-2.amazonaws.com s3-ca-central-1.amazonaws.com...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java

            map.put("モ", new String[] { "mo" });
    
            map.put("ヤ", new String[] { "ya" });
            map.put("ユ", new String[] { "yu" });
            map.put("ヨ", new String[] { "yo" });
    
            map.put("ラ", new String[] { "ra" });
            map.put("リ", new String[] { "ri" });
            map.put("ル", new String[] { "ru" });
            map.put("レ", new String[] { "re" });
            map.put("ロ", new String[] { "ro" });
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go

    	Code   int32
    	Pid    int32
    	Uid    uint32
    	Status int32
    	Addr   uintptr
    	Value  [8]byte
    	_      [40]byte
    }
    
    type Sigset_t struct {
    	Val [4]uint32
    }
    
    type Reg struct {
    	Ra      uint64
    	Sp      uint64
    	Gp      uint64
    	Tp      uint64
    	T       [7]uint64
    	S       [12]uint64
    	A       [8]uint64
    	Sepc    uint64
    	Sstatus uint64
    }
    
    type FpReg struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse.go

    // a *[]rune.
    type ranges struct {
    	p *[]rune
    }
    
    func (ra ranges) Less(i, j int) bool {
    	p := *ra.p
    	i *= 2
    	j *= 2
    	return p[i] < p[j] || p[i] == p[j] && p[i+1] > p[j+1]
    }
    
    func (ra ranges) Len() int {
    	return len(*ra.p) / 2
    }
    
    func (ra ranges) Swap(i, j int) {
    	p := *ra.p
    	i *= 2
    	j *= 2
    	p[i], p[i+1], p[j], p[j+1] = p[j], p[j+1], p[i], p[i+1]
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go

    	SizeofIovec           = 0x10
    	SizeofMsghdr          = 0x38
    	SizeofCmsghdr         = 0x10
    )
    
    const (
    	SizeofSockFprog = 0x10
    )
    
    type PtraceRegs struct {
    	Pc  uint64
    	Ra  uint64
    	Sp  uint64
    	Gp  uint64
    	Tp  uint64
    	T0  uint64
    	T1  uint64
    	T2  uint64
    	S0  uint64
    	S1  uint64
    	A0  uint64
    	A1  uint64
    	A2  uint64
    	A3  uint64
    	A4  uint64
    	A5  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. hack/make-rules/test-e2e-node.sh

        exit 1
      fi
    
      # Check if any of the images specified already have running instances.  If so reuse those instances
      # by moving the IMAGE to a HOST
      if [[ ${images} != "" ]]; then
      IFS=',' read -ra IM <<< "${images}"
           images=""
           for i in "${IM[@]}"; do
             if gcloud compute instances list --project="${project}" --filter="name:'${instance_prefix}-${i}' AND zone:'${zone}'" | grep "${i}"; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. src/syscall/ztypes_linux_riscv64.go

    }
    
    type InotifyEvent struct {
    	Wd     int32
    	Mask   uint32
    	Cookie uint32
    	Len    uint32
    }
    
    const SizeofInotifyEvent = 0x10
    
    type PtraceRegs struct {
    	Pc  uint64
    	Ra  uint64
    	Sp  uint64
    	Gp  uint64
    	Tp  uint64
    	T0  uint64
    	T1  uint64
    	T2  uint64
    	S0  uint64
    	S1  uint64
    	A0  uint64
    	A1  uint64
    	A2  uint64
    	A3  uint64
    	A4  uint64
    	A5  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top