Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 460 for Rm (0.06 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	{0x0fef0070, 0x01a00020, 4, LSR_EQ, 0x14011c04, instArgs{arg_R_12, arg_R_0, arg_imm5_32}},                     // LSR{S}<c> <Rd>,<Rm>,#<imm5_32> cond:4|0|0|0|1|1|0|1|S|0|0|0|0|Rd:4|imm5:5|0|1|0|Rm:4
    	{0x0fef00f0, 0x01a00030, 4, LSR_EQ, 0x14011c04, instArgs{arg_R_12, arg_R_0, arg_R_8}},                         // LSR{S}<c> <Rd>,<Rn>,<Rm> cond:4|0|0|0|1|1|0|1|S|0|0|0|0|Rd:4|Rm:4|0|0|1|1|Rn:4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    [{"Name":"ADC","Bits":"0|0|0|1|1|0|1|0|0|0|0|Rm:5|0|0|0|0|0|0|Rn:5|Rd:5","Arch":"32-bit variant","Syntax":"ADC <Wd>, <Wn>, <Wm>","Code":"","Alias":""},
    {"Name":"ADC","Bits":"1|0|0|1|1|0|1|0|0|0|0|Rm:5|0|0|0|0|0|0|Rn:5|Rd:5","Arch":"64-bit variant","Syntax":"ADC <Xd>, <Xn>, <Xm>","Code":"","Alias":""},
    {"Name":"ADCS","Bits":"0|0|1|1|1|0|1|0|0|0|0|Rm:5|0|0|0|0|0|0|Rn:5|Rd:5","Arch":"32-bit variant","Syntax":"ADCS <Wd>, <Wn>, <Wm>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/certs/renewal/manager.go

    			readwriter: kubeConfigReadWriter,
    		}
    	}
    
    	return rm, nil
    }
    
    // Certificates returns the list of certificates controlled by this Manager
    func (rm *Manager) Certificates() []*CertificateRenewHandler {
    	certificates := []*CertificateRenewHandler{}
    	for _, h := range rm.certificates {
    		certificates = append(certificates, h)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_output.txt

    go install m/isarchive &
    
    go build x.go
    exists -exec x$GOEXE
    rm x$GOEXE
    ! exists x$NONEXE
    
    go build -o myprog x.go
    ! exists x
    ! exists x.exe
    exists -exec myprog
    ! exists myprogr.exe
    
    ! exists bin
    go build -o bin/x x.go
    exists -exec bin/x
    rm bin
    
    ! exists bin
    go build -o bin/ x.go
    exists -exec bin/x$GOEXE
    rm bin
    
    [GOOS:windows] ! exists bin
    [GOOS:windows] go build -o bin\x x.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/version_buildvcs_bzr.txt

    go install -buildvcs=false
    go version -m $GOBIN/a$GOEXE
    ! stdout vcs.revision
    rm $GOBIN/a$GOEXE
    
    # An untracked file is shown as modified, even if it isn't part of the build.
    cp ../../outside/empty.txt .
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs.modified=true$'
    rm empty.txt
    rm $GOBIN/a$GOEXE
    
    # An edited file is shown as modified, even if it isn't part of the build.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 07 03:44:02 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/version_buildvcs_git.txt

    stdout '^\tbuild\tvcs.modified=true$'
    rm empty.txt
    rm $GOBIN/a$GOEXE
    
    # An edited file is shown as uncommitted, even if it isn't part of the build.
    cp ../../outside/empty.txt ../README
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs.modified=true$'
    exec git checkout ../README
    rm $GOBIN/a$GOEXE
    
    # If the build doesn't include any packages from the repository,
    # there should be no VCS info.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			rm, err := NewManager(test.cfg, "")
    			if err != nil {
    				t.Fatalf("Failed to create the certificate renewal manager: %v", err)
    			}
    
    			if len(rm.Certificates()) != test.expectedCertificates {
    				t.Errorf("Expected %d certificates, saw %d", test.expectedCertificates, len(rm.Certificates()))
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_sumdb_cache.txt

    cp go.mod.orig go.mod
    rm go.sum
    env GOPROXY=$proxy/sumdb-503
    ! go get rsc.io/quote
    stderr 503
    
    # fetch through working proxy is OK
    cp go.mod.orig go.mod
    rm go.sum
    env GOPROXY=$proxy
    go get rsc.io/quote
    
    # repeated fetch works entirely from cache, does not consult sumdb
    cp go.mod.orig go.mod
    rm go.sum
    env GOPROXY=$proxy/sumdb-503
    go get rsc.io/quote
    rm go.sum
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. src/main/assemblies/files/generate-thumbnail

      pdftoppm -png -singlefile ${tmp_pdf_file} ${tmp_png_prefix}
      tmp_png_file="${tmp_png_prefix}.png"
      rm -f ${tmp_pdf_file}
      if [[ ! -f ${tmp_png_file} ]] ; then
        echo "pdftoppm does not work."
        exit 1
      fi
      convert -thumbnail ${image_size} ${tmp_png_file} "${output_file}"
      rm -f ${tmp_png_prefix}*png
    elif [[ x"${cmd_type}" = "xpdf" ]] ; then
      check_command convert
      check_command pdftoppm
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jun 12 13:13:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_sumdb_proxy.txt

    go get rsc.io/fortune@v1.0.0 # note: must use test proxy, does not exist in real world
    rm $GOPATH/pkg/mod/cache/download/sumdb # rm sumdb cache but NOT package download cache
    rm go.sum
    
    # can fetch by explicit URL
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb' '$proxy/sumdb-direct
    go get rsc.io/fortune@v1.0.0
    rm $GOPATH/pkg/mod/cache/download/sumdb
    rm go.sum
    
    # direct access fails (because localhost.localdev does not exist)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top