Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 460 for Rm (0.24 sec)

  1. .github/workflows/sigbuild-docker-presubmit.yml

        permissions:
          contents: read
          pull-requests: write
        steps:
          - name: Delete unnecessary tools folder
            run: |
              df -h
              rm -rf /opt/hostedtoolcache
              df -h
          -
            name: Checkout
            uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
          -
            name: Set up Docker Buildx
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. tools/certs/common.mk

    #------------------------------------------------------------------------
    # clean
    .PHONY: clean
    
    clean: ## Cleans all the intermediate files and folders previously generated.
    	@rm -f $(FILES_TO_CLEAN)
    
    root-ca.conf:
    	@echo "[ req ]" > $@
    	@echo "encrypt_key = no" >> $@
    	@echo "prompt = no" >> $@
    	@echo "utf8 = yes" >> $@
    	@echo "default_md = sha256" >> $@
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 08:51:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/goroot_executable.txt

    # With a symlink into go tree, we should still find the go tree.
    mkdir $WORK/other/bin
    symlink $WORK/other/bin/go$GOEXE -> $WORK/new/bin/go$GOEXE
    exec $WORK/bin/check$GOEXE $WORK/new/bin/go$GOEXE $WORK/new
    
    rm $WORK/new/pkg
    
    # Runtime GOROOT:
    # Binaries built in the new tree should report the
    # new tree when they call runtime.GOROOT.
    symlink $WORK/new/src -> $TESTGOROOT/src
    symlink $WORK/new/pkg -> $TESTGOROOT/pkg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_skip_write.txt

    cmp go.mod go.mod.edit
    
    go mod why -m rsc.io/sampler
    cmp stdout why.want
    cmp go.mod go.mod.edit
    
    cp go.mod.orig go.mod
    
    # Removing go.sum breaks other commands, but 'go mod graph' and
    # 'go mod why' still work.
    rm go.sum
    ! go list -m all
    stderr 'missing go.sum entry'
    
    go mod graph
    cmp stdout graph.want
    ! exists go.sum
    
    go mod verify
    stdout '^all modules verified$'
    ! exists go.sum
    
    go mod why rsc.io/sampler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. hack/update-generated-docs.sh

    # must be set.
    remove_generated_docs() {
      if [ -e "${KUBE_ROOT}/docs/.generated_docs" ]; then
        # remove all of the old docs; we don't want to check them in.
        while read -r file; do
          rm "${KUBE_ROOT}/${file}" 2>/dev/null || true
        done <"${KUBE_ROOT}/docs/.generated_docs"
        # The docs/.generated_docs file lists itself, so we don't need to explicitly
        # delete it.
      fi
    }
    
    # generate into KUBE_TMP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. docs/iam/policies/pbac-tests.sh

    #!/bin/bash
    
    if [ -n "$TEST_DEBUG" ]; then
    	set -x
    fi
    
    pkill minio
    pkill kes
    rm -rf /tmp/xl
    
    if [ ! -f ./mc ]; then
    	wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc &&
    		chmod +x mc
    fi
    
    if [ ! -f ./kes ]; then
    	wget --quiet -O kes https://github.com/minio/kes/releases/latest/download/kes-linux-amd64 &&
    		chmod +x kes
    fi
    
    if ! openssl version &>/dev/null; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/packaging/rpm/init.d/fess

        return $retval
    }
    
    stop() {
        echo -n $"Stopping $prog: "
        # stop it here, often "killproc $prog"
        killproc -p $pidfile -d 20 $prog
        retval=$?
        echo
        [ $retval -eq 0 ] && rm -f $lockfile
        return $retval
    }
    
    restart() {
        stop
        start
    }
    
    reload() {
        restart
    }
    
    force_reload() {
        restart
    }
    
    rh_status() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. buildscripts/rewrite-old-new.sh

    		exit 1
    	fi
    
    	kill ${pid}
    }
    
    function main() {
    	download_old_release
    
    	start_port=$(shuf -i 10000-65000 -n 1)
    
    	verify_rewrite ${start_port}
    }
    
    function purge() {
    	rm -rf "$1"
    }
    
    (main "$@")
    rv=$?
    purge "$WORK_DIR"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/encoding/gob/timing_test.go

    	if err != nil {
    		b.Fatal(err)
    	}
    	bbuf := benchmarkBuf{data: buf.Bytes()}
    	b.ResetTimer()
    	b.ReportAllocs()
    	for i := 0; i < b.N; i++ {
    		var rm map[int]int
    		bbuf.reset()
    		dec := NewDecoder(&bbuf)
    		err := dec.Decode(&rm)
    		if err != nil {
    			b.Fatal(i, err)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 07:16:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. pkg/util/labels/labels_test.go

    			t.Errorf("[Add] got %v, want %v", got, tc.want)
    		}
    		// now test the inverse.
    		got_rm := CloneAndRemoveLabel(got, tc.labelKey)
    		if !reflect.DeepEqual(got_rm, tc.labels) {
    			t.Errorf("[RM] got %v, want %v", got_rm, tc.labels)
    		}
    	}
    }
    
    func TestAddLabel(t *testing.T) {
    	labels := map[string]string{
    		"foo1": "bar1",
    		"foo2": "bar2",
    		"foo3": "bar3",
    	}
    
    	cases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 17:34:12 UTC 2017
    - 4.1K bytes
    - Viewed (0)
Back to top