Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 102 for Rm (0.27 sec)

  1. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    // Go command can potentially cache the results of the compile step,
    // causing the test to fail when being run interactively. E.g.
    //
    //	$ rm -f dump.txt
    //	$ go build -o foo.a -gcflags=-d=dumpinlfuncprops=dump.txt foo.go
    //	$ rm -f dump.txt foo.a
    //	$ go build -o foo.a -gcflags=-d=dumpinlfuncprops=dump.txt foo.go
    //	$ ls foo.a dump.txt > /dev/null
    //	ls : cannot access 'dump.txt': No such file or directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

        val fileNamePostfix = "$testProject-performance-scenarios.csv"
        val performanceTestSplitDirectoryName = "performance-test-splits"
        val unixScript = """
    mkdir -p $performanceTestSplitDirectoryName
    rm -rf $performanceTestSplitDirectoryName/*-$fileNamePostfix
    cat > $performanceTestSplitDirectoryName/$action-$fileNamePostfix << EOL
    ${csvLines.joinToString("\n")}
    EOL
    
    echo "Performance tests to be ${action}d in this build"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 11:22:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    These are the default settings.
    
    This would look something like this on the command-line:
    
    [listing]
    ----
    $ rm -rf ~/.gradle/caches/build-cache-1 <1>
    $ ./gradlew clean --quiet <2>
    $ ./gradlew assemble --build-cache <3>
    
    BUILD SUCCESSFUL
    4 actionable tasks: 4 executed
    
    $ ./gradlew clean --quiet <4>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/shell.go

    		if cfg.BuildN || cfg.BuildX {
    			sh.ShowCmd("", "mkdir -p %s", dir)
    			if cfg.BuildN {
    				return nil
    			}
    		}
    
    		return os.MkdirAll(dir, 0777)
    	})
    }
    
    // RemoveAll is like 'rm -rf'. It attempts to remove all paths even if there's
    // an error, and returns the first error.
    func (sh *Shell) RemoveAll(paths ...string) error {
    	if cfg.BuildN || cfg.BuildX {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. hack/make-rules/test.sh

      fi
      gotestsum --junitfile "${junit_xml_filename}" --raw-command cat "${junit_filename_prefix}"*.stdout
      if [[ ! ${KUBE_KEEP_VERBOSE_TEST_OUTPUT} =~ ^[yY]$ ]]; then
        rm "${junit_filename_prefix}"*.stdout
      fi
    
      if ! command -v prune-junit-xml >/dev/null 2>&1; then
        kube::log::status "prune-junit-xml not found; installing from ./cmd"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

                echo "$i" >> errors.txt
            fi
            if [[ -e errors.txt ]]; then
                echo "Broken links found:"
                cat errors.txt
                rm errors.txt
                false
            fi
        done
    }
    
    @test "No duplicate files on Windows" {
        cat <<EOF
    Please rename files so there are no repeats. For example, README.md and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

            }.getOrMapFailure { failure ->
                // This can only happen if someone ignored configuration cache problems and still stored the entry.
                // We're invalidating the cache to save the user a manual "rm -rf .gradle/configuration-cache", as there is no way out.
                logger.info("The build logic input of type ${obtainedValue.valueSourceType} cannot be checked because it failed when storing the entry", failure)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top