Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 103 for Rm (0.03 sec)

  1. src/cmd/go/testdata/script/mod_vendor_auto.txt

    # information is present.
    # Note: This behavior only applies pre-1.23. Go 1.23 and later require vendored
    # packages to be present in modules.txt to be imported.
    
    rm go.mod
    rm vendor/modules.txt
    
    go mod init example.com/auto
    go mod edit -go=1.22
    go list -f {{.Dir}} -tags tools -e all
    stdout '^'$WORK'[/\\]auto$'
    stdout '^'$WORK'[/\\]auto[/\\]vendor[/\\]example.com[/\\]printversion$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. src/syscall/exec_linux_test.go

    	}
    
    	// How do we tell if the namespace was really unshared? It turns out
    	// to be simple: just try to remove the executable. If it's still mounted
    	// on, the rm will fail.
    	if err := os.Remove(x); err != nil {
    		t.Errorf("rm failed on %v: %v", x, err)
    	}
    	if err := os.Remove(d); err != nil {
    		t.Errorf("rmdir failed on %v: %v", d, err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. build/common.sh

        short_hash=$(md5 -q -s "$1")
      else
        short_hash=$(echo -n "$1" | md5sum)
      fi
      echo "${short_hash:0:10}"
    }
    
    # Pedantically kill, wait-on and remove a container. The -f -v options
    # to rm don't actually seem to get the job done, so force kill the
    # container, wait to ensure it's stopped, then try the remove. This is
    # a workaround for bug https://github.com/docker/docker/issues/3968.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    	var rm, left []*v1.Pod
    
    	if isIndexedJob(job) {
    		rm = make([]*v1.Pod, 0, rmAtLeast)
    		left = make([]*v1.Pod, 0, len(pods)-rmAtLeast)
    		rm, left = appendDuplicatedIndexPodsForRemoval(rm, left, pods, int(*job.Spec.Completions))
    	} else {
    		left = pods
    	}
    
    	if len(rm) < rmAtLeast {
    		sort.Sort(controller.ActivePods(left))
    		rm = append(rm, left[:rmAtLeast-len(rm)]...)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. Makefile.core.mk

    gen-check: gen check-clean-repo
    
    CHARTS = gateway default ztunnel istio-operator base "gateways/istio-ingress" "gateways/istio-egress" "istio-control/istio-discovery" istiod-remote istio-cni
    copy-templates:
    	rm manifests/charts/istiod-remote/templates/*
    	rm manifests/charts/gateways/istio-egress/templates/*
    
    	# gateway charts
    	cp -r manifests/charts/gateways/istio-ingress/templates/* manifests/charts/gateways/istio-egress/templates
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    		}
    		if regrex[r.Reg]&RxrEvex != 0 {
    			evexR = 0 // "ModR/M.reg" selector 5th bit.
    		}
    	}
    	if rm != nil {
    		if rm.Index == REG_NONE && regrex[rm.Reg]&RxrEvex != 0 {
    			rexX = 0
    		} else if regrex[rm.Index]&Rxx != 0 {
    			rexX = 0
    		}
    		if regrex[rm.Reg]&Rxb != 0 {
    			rexB = 0
    		}
    	}
    	// P0 = [R][X][B][R'][00][mm]
    	p0 := (rexR << 7) |
    		(rexX << 6) |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_launch_util.cc

      gpu::GpuServingDeviceSelectorResource* device_selector_resource = nullptr;
      if (device_type == DEVICE_GPU && gpu::kUseGpuServingDeviceSelector) {
        auto rm = ctx->resource_manager();
        TF_RETURN_IF_ERROR(rm->LookupOrCreate<
                           gpu::GpuServingDeviceSelectorResource>(
            rm->default_container(), gpu::kGpuServingDeviceSelectorResourceName,
            &device_selector_resource,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  8. pkg/controller/job/indexed_job_utils_test.go

    			},
    			completions: 6,
    		},
    	}
    	for name, tc := range cases {
    		t.Run(name, func(t *testing.T) {
    			pods := hollowPodsWithIndexPhase(tc.pods)
    			rm, left := appendDuplicatedIndexPodsForRemoval(nil, nil, pods, int(tc.completions))
    			rmInt := toIndexPhases(rm)
    			leftInt := toIndexPhases(left)
    			if diff := cmp.Diff(tc.wantRm, rmInt); diff != "" {
    				t.Errorf("Unexpected pods for removal (-want,+got):\n%s", diff)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. docs/site-replication/run-ssec-object-replication.sh

    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill minio || sudo pkill minio
    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    cleanup
    
    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
    - 9.8K bytes
    - Viewed (0)
  10. docs/site-replication/run-ssec-object-replication-with-compression.sh

    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill minio || sudo pkill minio
    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    cleanup
    
    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: Mon Jun 10 15:31:51 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top