Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 424 for Rm (0.06 sec)

  1. samples/certs/generate-workload.sh

    function cleanup() {
      if [ -f "$FINAL_DIR"/.srl ]; then
        rm "$FINAL_DIR"/.srl
      fi
      if [ -f "$FINAL_DIR"/ca-cert.srl ]; then
        rm "$FINAL_DIR"/ca-cert.srl
      fi
      if [ -f "$FINAL_DIR"/ca-cert-alt.srl ]; then
        rm "$FINAL_DIR"/ca-cert-alt.srl
      fi
      if [ -f "$FINAL_DIR"/workload.cfg ]; then
        rm "$FINAL_DIR"/workload.cfg
      fi
      if [ -f "$FINAL_DIR"/workload.csr ]; then
        rm "$FINAL_DIR"/workload.csr
      fi
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 23:57:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. .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)
  3. samples/httpbin/README.md

    image from Docker hub:
    
    ```bash
    kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent httpbin:8000/html
    kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent --head httpbin:8000/status/500
    time kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent httpbin:8000/delay/5
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    	rm.resourceDiscoveryManager.RemoveGroup(rm.source, groupName)
    }
    func (rm resourceManager) RemoveGroupVersion(gv metav1.GroupVersion) {
    	rm.resourceDiscoveryManager.RemoveGroupVersion(rm.source, gv)
    }
    func (rm resourceManager) SetGroups(groups []apidiscoveryv2.APIGroupDiscovery) {
    	rm.resourceDiscoveryManager.SetGroups(rm.source, groups)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_go_file.txt

    [symlink] stderr 'go: test_sym.go: arguments must be package or module paths'
    [symlink] rm test_sym.go
    
    # argument has .go suffix, is a symlink and exists in sub-directory
    [symlink] symlink test/test_sym.go -> test.go
    [symlink] ! go get test/test_sym.go
    [symlink] stderr 'go: test/test_sym.go exists as a file, but ''go get'' requires package arguments'
    [symlink] rm test_sym.go
    
    # argument has .go suffix, is a directory and exists
    mkdir test_dir.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_platform_info.cc

          // within) and create a new one.
          TF_RETURN_IF_ERROR(rm->Delete<PjRtDeviceCompiler>(rm->default_container(),
                                                            compiler_name));
          TF_RETURN_IF_ERROR(rm->Delete<DeviceCompilationProfiler>(
              rm->default_container(), profiler_name));
    
          deleted_old_device_compiler = true;
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 17:23:27 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. docs/bucket/replication/setup_2site_existing_replication.sh

    			cat "/tmp/${site}_1.log"
    			echo "==========================="
    			cat "/tmp/${site}_2.log"
    		done
    	fi
    
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/multisitea
    	rm -rf /tmp/multisiteb
    	rm -rf /tmp/data
    }
    
    catch
    
    set -e
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. .github/workflows/multipart/migrate.sh

    function cleanup() {
    	docker-compose -f docker-compose-site1.yaml rm -s -f || true
    	docker-compose -f docker-compose-site2.yaml rm -s -f || true
    	for volume in $(docker volume ls -q | grep minio); do
    		docker volume rm ${volume} || true
    	done
    
    	docker system prune -f || true
    	docker volume prune -f || true
    	docker volume rm $(docker volume ls -q -f dangling=true) || true
    }
    
    cleanup
    
    if [ ! -f ./mc ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_download_partial.txt

    stdout 'pkg[/\\]mod[/\\]rsc.io[/\\]quote@v1.5.2'
    
    # go mod verify should fail if we delete a file.
    go mod verify
    rm $GOPATH/pkg/mod/rsc.io/quote@v1.5.2/go.mod
    ! go mod verify
    
    # 'go mod download' should not leave behind a directory or a .partial file
    # if there is an error extracting the zip file.
    rm $GOPATH/pkg/mod/rsc.io/quote@v1.5.2
    cp empty $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.zip
    ! go mod download
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 10 19:08:19 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. buildscripts/minio-upgrade.sh

    	MINIO_VERSION=dev /tmp/gopath/bin/docker-compose \
    		-f "buildscripts/upgrade-tests/compose.yml" \
    		rm || true
    
    	for volume in $(docker volume ls -q | grep upgrade); do
    		docker volume rm ${volume} || true
    	done
    
    	docker volume prune -f
    	docker system prune -f || true
    	docker volume prune -f || true
    	docker volume rm $(docker volume ls -q -f dangling=true) || true
    }
    
    verify_checksum_after_heal() {
    	local sum1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top