Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for Rm (0.03 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. 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)
  3. 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)
  4. buildscripts/verify-build.sh

    	if [ "$rv" -ne 0 ]; then
    		cat "$WORK_DIR/fs-minio.log"
    	fi
    	rm -f "$WORK_DIR/fs-minio.log"
    
    	return "$rv"
    }
    
    function run_test_erasure_sets() {
    	start_minio_erasure_sets
    
    	(cd "$WORK_DIR" && "$FUNCTIONAL_TESTS")
    	rv=$?
    
    	pkill minio
    	sleep 3
    
    	if [ "$rv" -ne 0 ]; then
    		cat "$WORK_DIR/erasure-minio-sets.log"
    	fi
    	rm -f "$WORK_DIR/erasure-minio-sets.log"
    
    	return "$rv"
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:28:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. Makefile

    	@echo "Cleaning up all the generated files"
    	@find . -name '*.test' | xargs rm -fv
    	@find . -name '*~' | xargs rm -fv
    	@find . -name '.#*#' | xargs rm -fv
    	@find . -name '#*#' | xargs rm -fv
    	@rm -rvf minio
    	@rm -rvf build
    	@rm -rvf release
    	@rm -rvf .verify*
    	@rm -rvf minio-release
    	@rm -rvf minio.RELEASE*.hotfix.*
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/godebug_default.txt

    ! stdout panicnil
    stdout randautoseed=0
    rm go.work
    
    # Go 1.20 workspace with Go 1.21 module cannot happen.
    cp go.work.20 go.work
    cp go.mod.21 go.mod
    ! go list -f '{{.Module.GoVersion}} {{.DefaultGODEBUG}}'
    stderr 'go: module . listed in go.work file requires go >= 1.21'
    rm go.work
    
    # Go 1.21 go.mod with godebug default=go1.20
    rm go.work
    cp go.mod.21 go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. docs/bucket/replication/test_del_marker_proxying.sh

    		echo "==========================="
    		cat "/tmp/${site}_2.log"
    	done
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/sitea
    	rm -rf /tmp/siteb
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    
    # Start MinIO instances
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 11:38:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. .github/workflows/mint.yml

              done
    
              docker-compose -f ${GITHUB_WORKSPACE}/.github/workflows/multipart/docker-compose-site1.yaml rm -s -f || true
              docker-compose -f ${GITHUB_WORKSPACE}/.github/workflows/multipart/docker-compose-site2.yaml rm -s -f || true
              for volume in $(docker volume ls -q | grep minio); do
                docker volume rm ${volume} || true
              done
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. build/lib/release.sh

    function kube::release::clean_cruft() {
      # Clean out cruft
      find "${RELEASE_STAGE}" -name '*~' -exec rm {} \;
      find "${RELEASE_STAGE}" -name '#*#' -exec rm {} \;
      find "${RELEASE_STAGE}" -name '.DS*' -exec rm {} \;
    }
    
    function kube::release::package_tarballs() {
      # Clean out any old releases
      rm -rf "${RELEASE_STAGE}" "${RELEASE_TARS}" "${RELEASE_IMAGES}"
      mkdir -p "${RELEASE_TARS}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. .github/workflows/run-mint.sh

    export MINT_MODE="full"
    
    docker system prune -f || true
    docker volume prune -f || true
    docker volume rm $(docker volume ls -f dangling=true) || true
    
    ## change working directory
    cd .github/workflows/mint
    
    docker-compose -f minio-${MODE}.yaml up -d
    sleep 1m
    
    docker system prune -f || true
    docker volume prune -f || true
    docker volume rm $(docker volume ls -q -f dangling=true) || true
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top