Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 337 for Rm (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/go/testdata/script/version_buildvcs_fossil.txt

    stdout '^\tbuild\tvcs=fossil\n'
    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.
    cp ../../outside/empty.txt ../README
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs=fossil\n'
    stdout '^\tbuild\tvcs.modified=true$'
    exec fossil revert ../README
    rm $GOBIN/a$GOEXE
    
    -- $WORK/fakebin/fossil --
    #!/bin/sh
    exit 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    		}
    		return Mem{Base: Reg((x >> 16) & (1<<4 - 1)), Mode: mode}
    
    	case arg_R_rotate:
    		Rm := Reg(x & (1<<4 - 1))
    		typ, count := decodeShift(x)
    		// ROR #0 here means ROR #0, but decodeShift rewrites to RRX #1.
    		if typ == RotateRightExt {
    			return Rm
    		}
    		return RegShift{Rm, typ, count}
    
    	case arg_R_shift_R:
    		Rm := Reg(x & (1<<4 - 1))
    		Rs := Reg((x >> 8) & (1<<4 - 1))
    		typ := Shift((x >> 5) & (1<<2 - 1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  8. src/crypto/internal/boring/build.sh

    platform=""
    buildargs=""
    case "$GOARCH" in
    amd64)
    	;;
    arm64)
    	if ! docker run --rm -t arm64v8/ubuntu:focal uname -m >/dev/null 2>&1; then
    		echo "# Docker cannot run arm64 binaries. Try:"
    		echo "	sudo apt-get install qemu binfmt-support qemu-user-static"
    		echo "	docker run --rm --privileged multiarch/qemu-user-static --reset -p yes"
    		echo "	docker run --rm -t arm64v8/ubuntu:focal uname -m"
    		exit 1
    	fi
    	platform="--platform linux/arm64/v8"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/gotoolchain_issue66175.txt

    # When a toolchain download takes place, download 1.X.0
    env GOTOOLCHAIN=auto
    rm go.mod
    go mod init m
    go mod edit -go=1.300 -toolchain=none
    ! go version
    stderr 'go: downloading go1.300.0 '
    
    rm go.mod
    go mod init m
    go mod edit -go=1.21 -toolchain=none
    ! go version
    stderr 'go: downloading go1.21.0 '
    
    rm go.mod
    go mod init m
    go mod edit -go=1.22 -toolchain=none
    ! go version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 21:32:07 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_find.txt

    go mod init
    stderr 'unexpected.com/z'
    rm go.mod
    
    # Empty directory outside GOPATH fails.
    mkdir $WORK/empty
    cd $WORK/empty
    ! go mod init
    stderr 'cannot determine module path for source directory'
    rm go.mod
    
    # Empty directory inside GOPATH/src uses location inside GOPATH.
    mkdir $GOPATH/src/empty
    cd $GOPATH/src/empty
    go mod init
    stderr 'empty'
    rm go.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:14 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top