Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 384 for minipay (0.21 sec)

  1. .github/DISCUSSION_TEMPLATE/questions.yml

              required: true
      - type: textarea
        id: example
        attributes:
          label: Example Code
          description: |
            Please add a self-contained, [minimal, reproducible, example](https://stackoverflow.com/help/minimal-reproducible-example) with your use case.
    
            If I (or someone) can copy it, run it, and see it right away, there's a much higher chance I (or someone) will be able to help you.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 03 15:59:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkAction.java

     * {@link WorkerExecutor}.
     *
     * <p>
     *     A work action implementation is an abstract class implementing the {@link #execute()} method.
     *     A minimal implementation may look like this:
     * </p>
     *
     * <pre class='autoTested'>
     * import org.gradle.workers.WorkParameters;
     *
     * public abstract class MyWorkAction implements WorkAction&lt;WorkParameters.None&gt; {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild.install.gradle.kts

    import gradlebuild.packaging.GradleDistributionSpecs.allDistributionSpec
    
    val installDirectory = repoRoot().dir(gradleInstallPath).map { validateInstallDir(it) }
    
    tasks.register<Sync>("install") {
        description = "Installs the minimal distribution"
        group = "build"
        with(binDistributionSpec())
        into(installDirectory)
    }
    
    tasks.register<Sync>("installAll") {
        description = "Installs the full distribution"
        group = "build"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 22 07:17:43 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/Platform.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect.testing;
    
    import java.util.Arrays;
    
    /**
     * Minimal GWT emulation of {@code com.google.common.collect.testing.Platform}.
     *
     * <p><strong>This .java file should never be consumed by javac.</strong>
     *
     * @author Hayward Chan
     */
    final class Platform {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/AbstractArchiveFileTreeSpec.groovy

    import org.gradle.util.TestUtil
    import org.junit.Rule
    import spock.lang.Specification
    
    /**
     * Tests core functionality in {@link AbstractArchiveFileTree} using a minimal test implementation.
     */
    class AbstractArchiveFileTreeSpec extends Specification {
        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/cmd/internal/bootstrap_test/overlaydir_test.go

    // license that can be found in the LICENSE file.
    
    package bootstrap_test
    
    import (
    	"io"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"strings"
    )
    
    // overlayDir makes a minimal-overhead copy of srcRoot in which new files may be added.
    //
    // TODO: Once we no longer need to support the misc module in GOPATH mode,
    // factor this function out into a package to reduce duplication.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:35:05 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. src/text/tabwriter/example_test.go

    	w.Init(os.Stdout, 0, 8, 0, '\t', 0)
    	fmt.Fprintln(w, "a\tb\tc\td\t.")
    	fmt.Fprintln(w, "123\t12345\t1234567\t123456789\t.")
    	fmt.Fprintln(w)
    	w.Flush()
    
    	// Format right-aligned in space-separated columns of minimal width 5
    	// and at least one blank of padding (so wider column entries do not
    	// touch each other).
    	w.Init(os.Stdout, 5, 0, 1, ' ', tabwriter.AlignRight)
    	fmt.Fprintln(w, "a\tb\tc\td\t.")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 23 22:09:32 UTC 2016
    - 2K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/cgotest/overlaydir.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cgotest
    
    import (
    	"io"
    	"os"
    	"path/filepath"
    	"strings"
    )
    
    // OverlayDir makes a minimal-overhead copy of srcRoot in which new files may be added.
    func OverlayDir(dstRoot, srcRoot string) error {
    	dstRoot = filepath.Clean(dstRoot)
    	if err := os.MkdirAll(dstRoot, 0777); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 20:56:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/limits.go

    	// JSONDateSize is the size of a date serialized as part of a JSON object
    	// RFC 3339 dates require YYYY-MM-DD, and then we add 2 to allow for quotation marks
    	JSONDateSize = 12
    	// MinDatetimeSizeJSON is the minimal length of a datetime formatted as RFC 3339
    	// RFC 3339 datetimes require a full date (YYYY-MM-DD) and full time (HH:MM:SS), and we add 3 for
    	// quotation marks like always in addition to the capital T that separates the date and time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. src/math/asinh_s390x.s

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // Minimax polynomial coefficients and other constants
    DATA ·asinhrodataL18<> + 0(SB)/8, $0.749999999977387502E-01
    DATA ·asinhrodataL18<> + 8(SB)/8, $-.166666666666657082E+00
    DATA ·asinhrodataL18<> + 16(SB)/8, $0.303819368237360639E-01
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 5.7K bytes
    - Viewed (0)
Back to top