Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 384 for minipay (0.23 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluationSchema/MinimalEvaluationSchemaComponent.kt

    import org.gradle.internal.declarativedsl.schemaBuilder.FunctionExtractor
    import org.gradle.internal.declarativedsl.schemaBuilder.PropertyExtractor
    
    
    /**
     * Defines a minimal set of features for Declarative DSL evaluation. The only Gradle-related customization in this component is [gradleConfigureLambdas].
     * Besides, no custom Gradle APIs are considered as schema contributors.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/attributes/java/TargetJvmVersion.java

     * to a Java platform version number (integer). For example, "5" for Java 5, "8" for Java 8, or "11" for Java 11.
     *
     * @since 5.3
     */
    public interface TargetJvmVersion {
    
        /**
         * The minimal target version for a Java library. Any consumer below this version would not be able to consume it.
         */
        Attribute<Integer> TARGET_JVM_VERSION_ATTRIBUTE = Attribute.of("org.gradle.jvm.version", Integer.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  3. src/math/atan_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 ·atanrodataL8<> + 0(SB)/8, $0.199999999999554423E+00
    DATA ·atanrodataL8<> + 8(SB)/8, $0.111111110136634272E+00
    DATA ·atanrodataL8<> + 16(SB)/8, $-.142857142828026806E+00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/syscall_aix_ppc64_gc.go

    // Copyright 2019 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.
    
    // Minimal copy of x/sys/unix so the cpu package can make a
    // system call on AIX without depending on x/sys/unix.
    // (See golang.org/issue/32102)
    
    //go:build aix && ppc64 && gc
    
    package cpu
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 988 bytes
    - Viewed (0)
  5. pkg/cluster/debug.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package cluster
    
    // DebugInfo contains minimal information about remote clusters.
    // This struct is defined here, in a package that avoids many imports, since xds/debug usually
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 13 19:27:51 UTC 2021
    - 1007 bytes
    - Viewed (0)
  6. build-logic-commons/basics/build.gradle.kts

    plugins {
        `kotlin-dsl`
    }
    
    description = "Provides plugins for configuring miscellaneous things (repositories, reproducibility, minify)"
    
    group = "gradlebuild"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    
    dependencies {
        api("gradlebuild:build-environment")
        api(platform(project(":build-platform")))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 1022 bytes
    - Viewed (0)
  7. src/math/asin_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 ·asinrodataL15<> + 0(SB)/8, $-1.309611320495605469
    DATA ·asinrodataL15<> + 8(SB)/8, $0x3ff921fb54442d18
    DATA ·asinrodataL15<> + 16(SB)/8, $0xbff921fb54442d18
    DATA ·asinrodataL15<> + 24(SB)/8, $1.309611320495605469
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 20 17:42:08 UTC 2018
    - 4.2K bytes
    - Viewed (0)
  8. src/math/acos_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 ·acosrodataL13<> + 0(SB)/8, $0.314159265358979323E+01   //pi
    DATA ·acosrodataL13<> + 8(SB)/8, $-0.0
    DATA ·acosrodataL13<> + 16(SB)/8, $0x7ff8000000000000    //Nan
    DATA ·acosrodataL13<> + 24(SB)/8, $-1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 20 17:42:08 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  9. src/internal/cpu/cpu_arm64_darwin.go

    	// There are no hw.optional sysctl values for the below features on Mac OS 11.0
    	// to detect their supported state dynamically. Assume the CPU features that
    	// Apple Silicon M1 supports to be available as a minimal set of features
    	// to all Go programs running on darwin/arm64.
    	ARM64.HasAES = true
    	ARM64.HasPMULL = true
    	ARM64.HasSHA1 = true
    	ARM64.HasSHA2 = true
    }
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Service.java

       * {@code A -> B}.
       *
       * @since 9.0 (in 1.0 as {@code com.google.common.base.Service.State})
       */
      enum State {
        /** A service in this state is inactive. It does minimal work and consumes minimal resources. */
        NEW,
    
        /** A service in this state is transitioning to {@link #RUNNING}. */
        STARTING,
    
        /** A service in this state is operational. */
        RUNNING,
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top