Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 460 for Rm (0.02 sec)

  1. pkg/controller/job/indexed_job_utils.go

    	}
    	return 0, 0
    }
    
    func appendPodsWithSameIndexForRemovalAndRemaining(rm, left, pods []*v1.Pod, ix int) ([]*v1.Pod, []*v1.Pod) {
    	if ix == unknownCompletionIndex {
    		rm = append(rm, pods...)
    		return rm, left
    	}
    	if len(pods) == 1 {
    		left = append(left, pods[0])
    		return rm, left
    	}
    	sort.Sort(controller.ActivePods(pods))
    	rm = append(rm, pods[:len(pods)-1]...)
    	left = append(left, pods[len(pods)-1])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/pjrt_compile_util.cc

        bool may_alias_resource_update, FunctionLibraryRuntime* flr,
        ResourceMgr* rm, const XlaCompiler::CompilationResult** compilation_result,
        xla::PjRtClient** client, xla::PjRtLoadedExecutable** executable) {
      PjRtDeviceCompiler* pjrt_device_compiler;
      DeviceCompilationProfiler* profiler;
      TF_RETURN_IF_ERROR(GetOrCreatePjRtDeviceCompilerAndProfiler(
          platform_info, rm, flr, &pjrt_device_compiler, &profiler));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. samples/wasm_modules/header_injector/Makefile

    docker-push: docker-build
    	$(foreach VERSION, $(VERSION_LIST), docker push $(IMG):0.0.$(VERSION);)
    
    clean:
    	rm -rf bazel-*
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 656 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/version_buildvcs_hg.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 hg revert ../README
    rm $GOBIN/a$GOEXE
    
    -- $WORK/fakebin/hg --
    #!/bin/sh
    exit 1
    -- $WORK/fakebin/hg.bat --
    exit 1
    -- repo/README --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 18:09:02 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_support_buildx.txt

    # This test checks that "go mod tidy -x" print
    # commands tidy executes.
    # Verifies golang.org/issue/35849
    
    rm $GOPATH/pkg/mod/cache/download/rsc.io/quote
    go mod tidy
    ! stderr 'get '$GOPROXY
    
    rm $GOPATH/pkg/mod/cache/download/rsc.io/quote
    go mod tidy -x
    stderr 'get '$GOPROXY
    
    -- go.mod --
    module example.com/mod
    
    -- a.go --
    package mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 21:10:40 UTC 2022
    - 360 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_moved.txt

    # A 'go get' without an upgrade should find the package.
    rm go.mod
    go mod init example.com/foo
    go get example.com/split/subpkg
    go list -m all
    stdout 'example.com/split/subpkg v1.1.0'
    
    
    # A 'go get' that worked at a previous version should continue to work at that version,
    # even if the package was subsequently moved into a parent module.
    rm go.mod
    go mod init example.com/foo
    go get example.com/join/subpkg@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_compile_util.cc

      // maintained appropriately.
      ResourceMgr* rm = nullptr;
      if (device_type == DEVICE_TPU) {
        rm = tfrt_global::GetTFGlobalResourceMgr();
      } else {
        rm = ctx.resource_manager();
      }
    
      if (!rm) {
        return absl::InternalError("No resource manager found.");
      }
      return rm;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/embed.txt

    go build -x
    cp x.txt .git
    ! go build -x
    stderr '^x.go:5:12: pattern [*]t: cannot embed file [.]git: invalid name [.]git$'
    rm .git
    
    # build rejects symlinks
    [symlink] symlink x.tzt -> x.txt
    [symlink] ! go build -x
    [symlink] stderr 'pattern [*]t: cannot embed irregular file x.tzt'
    [symlink] rm x.tzt
    
    # build rejects empty directories
    mkdir t
    ! go build -x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 18:03:59 UTC 2021
    - 2.3K bytes
    - Viewed (0)
Back to top