Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 384 for minipay (0.32 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/MinimalFileTree.java

    import org.gradle.api.file.FileVisitor;
    import org.gradle.api.internal.file.FileTreeInternal;
    import org.gradle.api.tasks.util.PatternSet;
    
    import java.io.File;
    
    /**
     * A minimal file tree implementation. An implementation can optionally also implement the following interfaces:
     *
     * <ul>
     *  <li>{@link FileSystemMirroringFileTree}</li>
     *  <li>{@link LocalFileTree}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/groovy/org/gradle/connectivity/MavenCentralDependencyResolveIntegrationTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    
    @Requires(UnitTestPreconditions.Online)
    class MavenCentralDependencyResolveIntegrationTest extends AbstractIntegrationSpec {
        def "resolves a minimal dependency from Maven Central"() {
            given:
            buildFile << """
    repositories {
        mavenCentral()
        mavenCentral { // just test this syntax works.
            name = "otherCentral"
            content {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. src/runtime/internal/sys/consts.go

    const StackGuardMultiplier = 1 + goos.IsAix + isRace
    
    // DefaultPhysPageSize is the default physical page size.
    const DefaultPhysPageSize = goarch.DefaultPhysPageSize
    
    // PCQuantum is the minimal unit for a program counter (1 on x86, 4 on most other systems).
    // The various PC tables record PC deltas pre-divided by PCQuantum.
    const PCQuantum = goarch.PCQuantum
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 16:26:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. src/math/atanh_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 ·atanhrodataL10<> + 0(SB)/8, $.41375273347623353626
    DATA ·atanhrodataL10<> + 8(SB)/8, $.51487302528619766235E+04
    DATA ·atanhrodataL10<> + 16(SB)/8, $-1.67526912689208984375
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. releasenotes/notes/gateway-api118.yaml

        Found managed gateway: default/gateway
        {{< /text >}}
    
        If you see "Found managed gateway", you may be impacted by this change.
    
        Prior to Istio 1.18, the managed gateway worked by creating a minimal Deployment configuration which
        was fully populated at runtime with Pod injection. To upgrade gateways, users would restart the Pods
        to trigger a re-injection.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 08:37:21 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/mdo/model-version.vm

                #set ( $dummy = $versions.add( $field.versionRange.fromVersion ) )
            #end
        #end
    #end
    #if ( $minimalVersion )
        #set ( $minimal = $Version.getConstructor( $String ).newInstance( $minimalVersion ) )
        #set ( $versions = $versions.headSet( $minimal, false ) )
    #else
        #set ( $dummy = $versions.remove( $Version.getConstructor( $String ).newInstance( "0.0.0" ) ) )
    #end
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. src/math/exp_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 approximation and other constants
    DATA ·exprodataL22<> + 0(SB)/8, $800.0E+00
    DATA ·exprodataL22<> + 8(SB)/8, $1.0000000000000022e+00
    DATA ·exprodataL22<> + 16(SB)/8, $0.500000000000004237e+00
    DATA ·exprodataL22<> + 24(SB)/8, $0.166666666630345592e+00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 4.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/file/BasicFileResolver.java

    import org.gradle.internal.FileUtils;
    import org.gradle.internal.UncheckedException;
    
    import java.io.File;
    import java.net.URI;
    import java.net.URISyntaxException;
    import java.util.regex.Pattern;
    
    /**
     * A minimal resolver, which does not use any native services. Used during bootstrap only. You should generally use {@link FileResolver} instead.
     *
     * TODO - share more stuff with AbstractFileResolver.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  9. internal/dsync/lock-args.go

    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package dsync
    
    //go:generate msgp -file $GOFILE
    
    // LockArgs is minimal required values for any dsync compatible lock operation.
    type LockArgs struct {
    	// Unique ID of lock/unlock request.
    	UID string
    
    	// Resources contains single or multiple entries to be locked/unlocked.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 04:34:26 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionHost.java

     *
     * <p>The purpose of this type is to be a configuration-cache compatible representation of the thing
     * being resolved. This type should remain as minimal as possible.</p>
     */
    public interface ResolutionHost {
    
        DisplayName displayName();
    
        default String getDisplayName() {
            return displayName().getDisplayName();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top