Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,930 for CheckM (0.14 sec)

  1. src/runtime/testdata/testprogcgo/dropm.go

    package main
    
    /*
    #include <stddef.h>
    #include <pthread.h>
    
    extern void GoCheckM();
    
    static void* thread(void* arg __attribute__ ((unused))) {
    	GoCheckM();
    	return NULL;
    }
    
    static void CheckM() {
    	pthread_t tid;
    	pthread_create(&tid, NULL, thread, NULL);
    	pthread_join(tid, NULL);
    	pthread_create(&tid, NULL, thread, NULL);
    	pthread_join(tid, NULL);
    }
    */
    import "C"
    
    import (
    	"fmt"
    	"os"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. tests/util/leak/check.go

    	for _, g := range leaked {
    		errString.WriteString(fmt.Sprintf("Leaked goroutine: %v\n", g.stack))
    	}
    	return errors.New(errString.String())
    }
    
    // Check adds a check to a test to ensure there are no leaked goroutines
    // To use, simply call leak.Check(t) at the start of a test; Do not call it in defer.
    // It is recommended to call this as the first step, as Cleanup is called in LIFO order; this ensures any
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 10:22:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/gradle-plugin/tests/check.sample.conf

    commands: [{
        executable: gradle
        args: check
        expected-output-file: check.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 159 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/preflight/checks.go

    hzxuzhonghu <******@****.***> 1521543019 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 20 10:50:48 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/tests/check.sample.conf

    commands: [{
        executable: gradle
        args: showFile
        expected-output-file: check.out
        allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 128 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/tests/check.sample.conf

    commands: [{
        executable: gradle
        args: check
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 55 bytes
    - Viewed (0)
  7. cmd/object-api-input-checks.go

    import (
    	"context"
    	"encoding/base64"
    	"runtime"
    	"strings"
    
    	"github.com/minio/minio-go/v7/pkg/s3utils"
    )
    
    // Checks on CopyObject arguments, bucket and object.
    func checkCopyObjArgs(ctx context.Context, bucket, object string) error {
    	return checkBucketAndObjectNames(ctx, bucket, object)
    }
    
    // Checks on GetObject arguments, bucket and object.
    func checkGetObjArgs(ctx context.Context, bucket, object string) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/tests/check.sample.conf

    commands: [{
        executable: gradle
        args: check
    }, {
        executable: gradle
        args: greet -q
        expected-output-file: greet.out
    }, {
        executable: gradle
        args: run -q
        expected-output-file: run.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 217 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/tests/check.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 133 bytes
    - Viewed (0)
  10. .github/workflows/check-bad-merge.yml

    # See .github/workflows/CheckBadMerge.groovy for explanation
    name: Check bad merge commit
    on:
      pull_request:
        types:
         - opened
         - synchronize
    
    permissions: {}
    
    jobs:
      check_pr_commits:
        permissions:
          contents: read
        runs-on: ubuntu-latest
    
        steps:
          - name: Checkout code
            uses: actions/checkout@v4
            with:
              fetch-depth: 0
          - name: Set up JDK 11
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top