Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 822 for run1 (0.24 sec)

  1. Makefile

    lint: getdeps ## runs golangci-lint suite of linters
    	@echo "Running $@ check"
    	@$(GOLANGCI) run --build-tags kqueue --timeout=10m --config ./.golangci.yml
    
    lint-fix: getdeps ## runs golangci-lint suite of linters with automatic fixes
    	@echo "Running $@ check"
    	@$(GOLANGCI) run --build-tags kqueue --timeout=10m --config ./.golangci.yml --fix
    
    check: test
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

       * [TaskRunner.lock].
       */
      var isParallel = false
    
      /** Number of calls to [TaskRunner.Backend.execute]. Guarded by [TaskRunner.lock]. */
      var executeCallCount = 0
    
      /** Guarded by [taskRunner]. */
      var nanoTime = 0L
        private set
    
      /** Backlog of tasks to run. Only one task runs at a time. Guarded by [TaskRunner.lock]. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/vet/vet_test.go

    // GO_VETTEST_IS_VET is set, and runs the tests otherwise.
    func TestMain(m *testing.M) {
    	if os.Getenv("GO_VETTEST_IS_VET") != "" {
    		main()
    		os.Exit(0)
    	}
    
    	os.Setenv("GO_VETTEST_IS_VET", "1") // Set for subprocesses to inherit.
    	os.Exit(m.Run())
    }
    
    // vetPath returns the path to the "vet" binary to run.
    func vetPath(t testing.TB) string {
    	t.Helper()
    	testenv.MustHaveExec(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. 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)
  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. src/encoding/base32/base32.go

    type Encoding struct {
    	encode    [32]byte   // mapping of symbol index to symbol byte value
    	decodeMap [256]uint8 // mapping of symbol byte value to symbol index
    	padChar   rune
    }
    
    const (
    	StdPadding rune = '=' // Standard padding character
    	NoPadding  rune = -1  // No padding
    )
    
    const (
    	decodeMapInitialize = "" +
    		"\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. src/bytes/buffer_test.go

    	}
    }
    
    func TestRuneIO(t *testing.T) {
    	const NRune = 1000
    	// Built a test slice while we write the data
    	b := make([]byte, utf8.UTFMax*NRune)
    	var buf Buffer
    	n := 0
    	for r := rune(0); r < NRune; r++ {
    		size := utf8.EncodeRune(b[n:], r)
    		nbytes, err := buf.WriteRune(r)
    		if err != nil {
    			t.Fatalf("WriteRune(%U) error: %s", r, err)
    		}
    		if nbytes != size {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

            testConstructor(constructor);
          }
        }
      }
    
      /** Runs {@link #testConstructor} on every public constructor in class {@code c}. */
      public void testAllPublicConstructors(Class<?> c) {
        testConstructors(c, Visibility.PUBLIC);
      }
    
      /**
       * Runs {@link #testMethod} on every static method of class {@code c} that has at least {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

            }
    
            // expect: memory hog released
            val runs = 10
            // For some reason we have 5 references to the task class.
            val daemonHeapMb = memoryHogMb * 5 + 400
            for (run in 1..runs) {
                println("Run number $run")
                myTask.writeText(myTask.readText().replace("runAction${run - 1}", "runAction$run"))
                buildWithDaemonHeapSize(daemonHeapMb, "myTask").apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top