Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 981 for ONCE (0.1 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ArtifactResolutionOmittingOutputNormalizer.groovy

                } else if (!seenWarning && !Jvm.current().javaVersion.java7Compatible && line == 'Support for reading or changing file permissions is only available on this platform using Java 7 or later.') {
                    // ignore this warning once only on java < 7
                    seenWarning = true
                } else {
                    result << line
                }
            }
            return result.join("\n")
        }
    
        String normalize(String output) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/impl/DefaultBuildCacheKey.java

        @Override
        public byte[] toByteArray() {
            return hashCode.toByteArray();
        }
    
        @Deprecated
        @Override
        public String getDisplayName() {
            // TODO Switch to SimpleBuildCacheKey once this method is removed
            DeprecationLogger.deprecateMethod(BuildCacheKey.class, "getDisplayName()")
                .replaceWith("getHashCode()")
                .willBeRemovedInGradle9()
                .undocumented()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/FixSpockJUnitRulesOrderExtension.groovy

    import org.spockframework.runtime.model.FieldInfo
    import org.spockframework.runtime.model.SpecInfo
    
    /**
     * Workaround for https://github.com/spockframework/spock/issues/1050
     *
     * TODO Remove once Spock is upgraded to a fixed version
     */
    class FixSpockJUnitRulesOrderExtension implements IGlobalExtension {
        @Override
        void visitSpec(SpecInfo spec) {
            spec.addListener(new AbstractRunListener() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeProjectAccessorsIntegrationTest.groovy

                assert project(":one").is(projects.one.dependencyProject)
            """
            FeaturePreviewsFixture.enableTypeSafeProjectAccessors(file("project/settings.gradle"))
    
            //run once
            when:
            inDirectory 'project'
            run 'help'
            then:
            outputContains 'Project accessors enabled, but root project name not explicitly set for \'project\'.'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:11:20 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/informers_test.go

    		Spec: corev1.PodSpec{
    			NodeName: NodeName,
    		},
    		Status: corev1.PodStatus{
    			PodIP: "11.1.1.12",
    		},
    	}
    	ns := &corev1.Namespace{
    		ObjectMeta: metav1.ObjectMeta{Name: "test"},
    		// TODO: once we if the add pod bug, re-enable this and remove the patch below
    		//		Labels: map[string]string{constants.DataplaneModeLabel: constants.DataplaneModeAmbient},
    
    	}
    
    	client := kube.NewFakeClient(ns, pod)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  6. docs/tr/docs/advanced/index.md

    !!! tip "İpucu"
        Sonraki bölümler **mutlaka "gelişmiş" olmak zorunda değildir**.
    
        Kullanım şeklinize bağlı olarak, çözümünüz bu bölümlerden birinde olabilir.
    
    ## Önce Öğreticiyi Okuyun
    
    [Tutorial - User Guide](../tutorial/index.md){.internal-link target=_blank} sayfasındaki bilgilerle **FastAPI**'nın çoğu özelliğini kullanabilirsiniz.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 05 00:05:51 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/FunctionContractTest.kt

    import org.gradle.internal.declarativedsl.schemaBuilder.schemaFromTypes
    import kotlin.test.Test
    import kotlin.test.assertEquals
    
    
    object FunctionContractTest {
        @Test
        fun `should invoke a configuring function only once`() {
            val resolution = schema.resolve(
                """
                configure { }
                configure { x = 1 }
                configure { y = 2 }
                """.trimIndent()
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. internal/event/target/amqp.go

    	"encoding/json"
    	"errors"
    	"fmt"
    	"net"
    	"net/url"
    	"os"
    	"path/filepath"
    	"sync"
    
    	"github.com/minio/minio/internal/event"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/once"
    	"github.com/minio/minio/internal/store"
    	xnet "github.com/minio/pkg/v3/net"
    	"github.com/rabbitmq/amqp091-go"
    )
    
    // AMQPArgs - AMQP target arguments.
    type AMQPArgs struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/LazilyInitializedFileCollection.java

        //https://github.com/freefair/gradle-plugins/blob/fe992e9e8a3ed812c941aae02a594c8094da053c/aspectj-plugin/src/main/java/io/freefair/gradle/plugins/aspectj/internal/AspectJRuntime.java#L49
        // TODO Remove once the third-party usage is considered obsolete.
        /**
         * @deprecated Use the overload accepting the TaskDependencyFactory
         */
        @Deprecated
        @SuppressWarnings("InlineMeSuggester")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/JvmInstallationProblemReporterTest.groovy

        @Subject
        def problemReporter = new JvmInstallationProblemReporter()
        def location = new TestFile("location")
        def logger = Mock(Logger)
    
        def "only reports problems once"() {
            when:
            problemReporter.reportProblemIfNeeded(logger, InstallationLocation.userDefined(location, "source"), "message")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top