Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 384 for minipay (0.14 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m4/ToolingApiEclipseMinimalModelCrossVersionSpec.groovy

            project.projectDependencies[0].path == 'child'
        }
    
        def "minimal Eclipse model does not attempt to call any tasks"() {
            file('build.gradle').text = '''
    apply plugin: 'java'
    
    sourceSets.main.output.dir "$buildDir/foo", builtBy: 'generateResources'
    
    task generateResources {
        doLast {
            assert false : 'should not be called when building minimal model'
        }
    }
    '''
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/GradleJvmVersion.kt

    import org.objectweb.asm.Opcodes
    
    
    internal
    object GradleJvmVersion {
    
        /**
         * The minimal Java version required to run Gradle.
         */
        val minimalJavaVersion: JavaVersion =
            JavaVersion.VERSION_1_8
    
        /**
         * The class file version for the minimal Java version required to run Gradle.
         */
        val minimalAsmClassVersion: Int =
            Opcodes.V1_8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/attributes/plugin/GradlePluginApiVersion.java

    import org.gradle.api.Named;
    import org.gradle.api.attributes.Attribute;
    
    /**
     * Represents a version of the minimal version of the Gradle API required by (variant of) a Gradle plugin.
     *
     * @since 7.0
     */
    public interface GradlePluginApiVersion extends Named {
    
        /**
         * Minimal Gradle version required. See {@link org.gradle.util.GradleVersion} for supported values.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:58 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    .Minify transform implementation
    ====
    include::sample[dir="snippets/dependencyManagement/artifactTransforms-minify/kotlin",files="build.gradle.kts[tags=artifact-transform-minify]"]
    include::sample[dir="snippets/dependencyManagement/artifactTransforms-minify/groovy",files="build.gradle[tags=artifact-transform-minify]"]
    ====
    <1> Declare the parameter type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. src/log/slog/example_log_level_test.go

    // license that can be found in the LICENSE file.
    
    package slog_test
    
    import (
    	"log"
    	"log/slog"
    	"log/slog/internal/slogtest"
    	"os"
    )
    
    // This example shows how to use slog.SetLogLoggerLevel to change the minimal level
    // of the internal default handler for slog package before calling slog.SetDefault.
    func ExampleSetLogLoggerLevel_log() {
    	defer log.SetFlags(log.Flags()) // revert changes after the example
    	log.SetFlags(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. operator/README.md

    #### Select a specific configuration profile
    
    The simplest customization is to select a profile different to `default` e.g. `minimal`. See [manifests/profiles/minimal.yaml](../manifests/profiles/minimal.yaml):
    
    ```yaml
    # minimal-install.yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: minimal
    ```
    
    Use `istioctl` to generate the manifests for the new configuration profile:
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	// The goal is to find the minimal set of changes to toggle
    	// starting with the state where everything works.
    	// If "no changes" succeeds and "all changes" fails,
    	// we're looking for a minimal set of changes to enable to provoke the failure
    	// (broken = runY, b.Negate = false)
    	// If "no changes" fails and "all changes" succeeds,
    	// we're looking for a minimal set of changes to disable to provoke the failure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  8. _config.yml

    theme: jekyll-theme-minimal...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 18 17:41:54 UTC 2021
    - 27 bytes
    - Viewed (0)
  9. pkg/config/mesh/mesh_test.go

    			}
    			// Just extract fields we are testing
    			minimal := &meshconfig.MeshConfig{}
    			minimal.DefaultProviders = res.DefaultProviders
    			minimal.ExtensionProviders = res.ExtensionProviders
    			minimal.TrustDomainAliases = res.TrustDomainAliases
    
    			want := &meshconfig.MeshConfig{}
    			protomarshal.ApplyYAML(tt.out, want)
    			if d := cmp.Diff(want, minimal, protocmp.Transform()); d != "" {
    				t.Fatalf("got diff %v", d)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. releasenotes/notes/cni-no-sh.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 48746
    releaseNotes:
      - |
        **Fixed** an issue causing Istio CNI to stop functioning on minimal/locked down nodes (such as no `sh` binary).
        The new logic runs with no external dependencies, and will attempt to continue if errors are encountered (which could be caused by things like SELinux rules).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 21:29:52 UTC 2024
    - 445 bytes
    - Viewed (0)
Back to top