Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,743 for run1 (0.11 sec)

  1. src/math/big/intconv.go

    // a leading "0x" or "0X" for "%#x" and "%#X" respectively,
    // specification of minimum digits precision, output field
    // width, space or zero padding, and '-' for left or right
    // justification.
    func (x *Int) Format(s fmt.State, ch rune) {
    	// determine base
    	var base int
    	switch ch {
    	case 'b':
    		base = 2
    	case 'o', 'O':
    		base = 8
    	case 'd', 's', 'v':
    		base = 10
    	case 'x', 'X':
    		base = 16
    	default:
    		// unknown format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationQueueTest.groovy

        }
    
        def "executes all #runs operations in #threads threads"() {
            given:
            setupQueue(threads)
            def success = Mock(TestBuildOperation)
    
            when:
            runs.times { operationQueue.add(success) }
    
            and:
            operationQueue.waitForCompletion()
    
            then:
            runs * success.run(_)
    
            where:
            runs | threads
            0    | 1
            0    | 4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/node/v1beta1/generated.proto

      // handlers are available on every node, and handlers of the same name are
      // equivalent on every node.
      // For example, a handler called "runc" might specify that the runc OCI
      // runtime (using native Linux containers) will be used to run the containers
      // in a pod.
      // The handler must be lowercase, conform to the DNS Label (RFC 1123) requirements,
      // and is immutable.
      optional string handler = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/builtins1.go

    }
    
    // delete
    
    type M0 interface{ int }
    type M1 interface{ map[string]int }
    type M2 interface { map[string]int | map[string]float64 }
    type M3 interface{ map[string]int | map[rune]int }
    type M4[K comparable, V any] interface{ map[K]V | map[rune]V }
    
    func _[T any](m T) {
    	delete(m /* ERROR "not a map" */, "foo")
    }
    
    func _[T M0](m T) {
    	delete(m /* ERROR "not a map" */, "foo")
    }
    
    func _[T M1](m T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 21:16:29 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileAccess.java

    import java.util.concurrent.Callable;
    import java.util.function.Supplier;
    
    /**
     * Provides synchronization with other processes for a particular file.
     */
    public interface FileAccess {
        /**
         * Runs the given action under a shared or exclusive lock on the target file.
         *
         * @throws LockTimeoutException On timeout acquiring lock, if required.
         * @throws IllegalStateException When this lock has been closed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. .github/workflows/test.yml

            with:
              pattern: coverage-*
              path: coverage
              merge-multiple: true
          - run: pip install coverage[toml]
          - run: ls -la coverage
          - run: coverage combine coverage
          - run: coverage report
          - run: coverage html --show-contexts --title "Coverage for ${{ github.sha }}"
          - name: Store coverage HTML
            uses: actions/upload-artifact@v4
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. test/fixedbugs/notinheap.go

    	f(x nih) nih
    }
    
    // Type conversions don't let you sneak past notinheap.
    
    type t1 struct{ x int }
    
    //go:notinheap
    type t2 t1
    
    //go:notinheap
    type t3 byte
    
    //go:notinheap
    type t4 rune
    
    var sink interface{}
    
    func i() {
    	sink = new(t1)                     // no error
    	sink = (*t2)(new(t1))              // ERROR "cannot convert(.|\n)*t2 is incomplete \(or unallocatable\)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 17:46:15 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. pkg/collateral/cobra_agent.go

    func CobraCommand(root *cobra.Command, meta Metadata) *cobra.Command {
    	return &cobra.Command{
    		Use:    "collateral",
    		Short:  "Generate collateral support files for this program",
    		Hidden: true,
    
    		RunE: func(cmd *cobra.Command, args []string) error {
    			return fmt.Errorf("this build is not compiled with collateral support")
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Basic.h

    CU_EXPORT void CU_basic_set_mode(CU_BasicRunMode mode);
    /**< Sets the run mode for the basic interface.
     *  @param mode The new CU_BasicRunMode for subsequent test
     *              runs using the basic interface.
     */
    
    CU_EXPORT CU_BasicRunMode CU_basic_get_mode(void);
    /**< Retrieves the current run mode for the basic interface.
     *  @return The current CU_BasicRunMode setting for test
     *              runs using the basic interface.
     */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. hack/make-rules/verify.sh

      "verify-*-dockerized.sh"       # Don't run any scripts that intended to be run dockerized
      "verify-golangci-lint-pr.sh"       # Runs in a separate job for PRs.
      "verify-golangci-lint-pr-hints.sh" # Runs in a separate job for PRs.
      "verify-licenses.sh"           # runs in a separate job to monitor availability of the dependencies periodically
      "verify-openapi-docs-urls.sh"  # Spams docs URLs, don't run in CI.
      )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top