Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,912 for miny (0.04 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // in this file.
    //
    // The following statement will instantiate tests from the FooTest test case
    // each with parameter values "meeny", "miny", and "moe".
    
    INSTANTIATE_TEST_CASE_P(InstantiationName,
                            FooTest,
                            Values("meeny", "miny", "moe"));
    
    // To distinguish different instances of the pattern, (yes, you
    // can instantiate it more then once) the first argument to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // in this file.
    //
    // The following statement will instantiate tests from the FooTest test case
    // each with parameter values "meeny", "miny", and "moe".
    
    INSTANTIATE_TEST_CASE_P(InstantiationName,
                            FooTest,
                            Values("meeny", "miny", "moe"));
    
    // To distinguish different instances of the pattern, (yes, you
    // can instantiate it more then once) the first argument to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // in this file.
    //
    // The following statement will instantiate tests from the FooTest test case
    // each with parameter values "meeny", "miny", and "moe".
    
    INSTANTIATE_TEST_CASE_P(InstantiationName,
                            FooTest,
                            Values("meeny", "miny", "moe"));
    
    // To distinguish different instances of the pattern, (yes, you
    // can instantiate it more then once) the first argument to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // in this file.
    //
    // The following statement will instantiate tests from the FooTest test case
    // each with parameter values "meeny", "miny", and "moe".
    
    INSTANTIATE_TEST_CASE_P(InstantiationName,
                            FooTest,
                            Values("meeny", "miny", "moe"));
    
    // To distinguish different instances of the pattern, (yes, you
    // can instantiate it more then once) the first argument to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  5. .github/workflows/mint.yml

    name: Mint Tests
    
    on:
      pull_request:
        branches:
          - master
    
    # This ensures that previous jobs for the PR are canceled when the PR is
    # updated.
    concurrency:
      group: ${{ github.workflow }}-${{ github.head_ref }}
      cancel-in-progress: true
    
    permissions:
      contents: read
    
    jobs:
      mint-test:
        runs-on: mint
        timeout-minutes: 120
        steps:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. .github/workflows/run-mint.sh

    export JOB_NAME="$4"
    export MINT_MODE="full"
    
    docker system prune -f || true
    docker volume prune -f || true
    docker volume rm $(docker volume ls -f dangling=true) || true
    
    ## change working directory
    cd .github/workflows/mint
    
    docker-compose -f minio-${MODE}.yaml up -d
    sleep 1m
    
    docker system prune -f || true
    docker volume prune -f || true
    docker volume rm $(docker volume ls -q -f dangling=true) || true
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/main/webapp/css/admin/respond.min.js

    [^\{\}]*\{[^\}\{]*\})+/gi,keyframes:/@(?:\-(?:o|moz|webkit)\-)?keyframes[^\{]+\{(?:[^\{\}]*\{[^\}\{]*\})+[^\}]*\}/gi,urls:/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,findStyles:/@media *([^\{]+)\{([\S\s]+?)$/,only:/(only\s+)?([a-zA-Z]+)\s?/,minw:/\([\s]*min\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/,maxw:/\([\s]*max\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/},c.mediaQueriesSupported=a.matchMedia&&null!==a.matchMedia("only all")&&a.matchMedia("only all").matches,!c.mediaQueriesSupported){var...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Oct 08 12:14:13 UTC 2015
    - 4.3K bytes
    - Viewed (0)
  8. releasenotes/notes/pilot-status-too-many-logs.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 42612
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 18:43:17 UTC 2023
    - 222 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ir/mini.go

    Keith Randall <******@****.***> 1658254141 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 22:09:44 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. test/typeparam/min.go

    	~int | ~int64 | ~float64 | ~string
    }
    
    func min[T Ordered](x, y T) T {
    	if x < y {
    		return x
    	}
    	return y
    }
    
    func main() {
    	const want = 2
    	if got := min[int](2, 3); got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    
    	if got := min(2, 3); got != want {
    		panic(fmt.Sprintf("want %d, got %d", want, got))
    	}
    
    	if got := min[float64](3.5, 2.0); got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 979 bytes
    - Viewed (0)
Back to top