Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,257 for runN (0.04 sec)

  1. build/root/Makefile

    else
    update:
    	hack/make-rules/update.sh
    endif
    
    define CHECK_TEST_HELP_INFO
    # Build and run tests.
    #
    # Args:
    #   WHAT: Directory names to test.  All *_test.go files under these
    #     directories will be run.  If not specified, "everything" will be tested.
    #   TESTS: Same as WHAT.
    #   KUBE_COVER: Whether to run tests with code coverage. Set to 'y' to enable coverage collection.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/cmd/test2json/main.go

    // so "go tool test2json" is only needed when a test binary is being run
    // separately from "go test". Use "go test -json" whenever possible.
    //
    // Note also that test2json is only intended for converting a single test
    // binary's output. To convert the output of a "go test" command that
    // runs multiple packages, again use "go test -json".
    //
    // # Output Format
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. src/internal/runtime/exithook/hooks.go

    	_ "unsafe" // for linkname
    )
    
    // A Hook is a function to be run at program termination
    // (when someone invokes os.Exit, or when main.main returns).
    // Hooks are run in reverse order of registration:
    // the first hook added is the last one run.
    type Hook struct {
    	F            func() // func to run
    	RunOnFailure bool   // whether to run on non-zero exit code
    }
    
    var (
    	locked  atomic.Int32
    	runGoid atomic.Uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/envcmd/env.go

    			}
    		}
    	}
    }
    
    func hasNonGraphic(s string) bool {
    	for _, c := range []byte(s) {
    		if c == '\r' || c == '\n' || (!unicode.IsGraphic(rune(c)) && !unicode.IsSpace(rune(c))) {
    			return true
    		}
    	}
    	return false
    }
    
    func shellQuote(s string) string {
    	var b bytes.Buffer
    	b.WriteByte('\'')
    	for _, x := range []byte(s) {
    		if x == '\'' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. .github/workflows/go-lint.yml

    concurrency:
      group: ${{ github.workflow }}-${{ github.head_ref }}
      cancel-in-progress: true
    
    permissions:
      contents: read
    
    jobs:
      build:
        name: Go ${{ matrix.go-version }} on ${{ matrix.os }}
        runs-on: ${{ matrix.os }}
        strategy:
          matrix:
            go-version: [1.22.x]
            os: [ubuntu-latest, Windows]
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 22:29:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure.sh

        # shellcheck disable=SC2086
        curl ${CURL_FLAGS} \
          --location \
          "https://github.com/opencontainers/runc/releases/download/${COS_INSTALL_RUNC_VERSION}/runc.${HOST_ARCH}" --output /home/containerd/bin/runc \
        && chmod 755 /home/containerd/bin/runc
        # ensure runc gets picked up from the correct location
        sed -i "/\[Service\]/a Environment=PATH=/home/containerd/bin:$PATH" /etc/systemd/system/containerd.service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  7. .github/workflows/maven_build_itself.yml

            java: [17, 21]
          fail-fast: false
    
        runs-on: ${{ matrix.os }}
    
        steps:
          - uses: actions/checkout@v4
            with:
              persist-credentials: false
    
          - uses: actions/setup-java@v4
            with:
              java-version: ${{ matrix.java }}
              distribution: 'temurin'
              cache: 'maven'
    
          - name: Set up Maven
            run:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h

          absl::flat_hash_map<std::string, tensorflow::SignatureDef>
              signature_def_map,
          std::vector<std::string> signature_keys);
    
      // Runs calibration on `module_op` and returns a calibrated ModuleOp with
      // calibrated statistics embedded.
      absl::StatusOr<ModuleOp> Run(
          ModuleOp module_op,
          const ::stablehlo::quantization::QuantizationConfig& config) override;
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. .github/workflows/iam-integrations.yaml

            run: |
              make test-iam-ldap-upgrade-import
          - name: Test LDAP for automatic site replication
            if: matrix.ldap == 'localhost:389'
            run: |
              make test-site-replication-ldap
          - name: Test OIDC for automatic site replication
            if: matrix.openid == 'http://127.0.0.1:5556/dex'
            run: |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. src/testing/newcover.go

    // cover2 variable stores the current coverage mode and a
    // tear-down function to be called at the end of the testing run.
    var cover2 struct {
    	mode        string
    	tearDown    func(coverprofile string, gocoverdir string) (string, error)
    	snapshotcov func() float64
    }
    
    // registerCover2 is invoked during "go test -cover" runs.
    // It is used to record a 'tear down' function
    // (to be called when the test is complete) and the coverage mode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top