Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for additional (0.19 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

                return new ForkedTestClasspath(
                    pathWithAdditionalModules(classpath, additional.applicationClasspath),
                    pathWithAdditionalModules(modulepath, additional.applicationModulepath),
                    withImplementation(loadDistributionUrls(additional.implementationClasspath)),
                    loadDistributionUrls(additional.implementationModulepath)
                );
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pilot/pkg/features/pilot.go

    	// Also see https://github.com/istio/istio/issues/46719 why this flag is required
    	EnableAdditionalIpv4OutboundListenerForIpv6Only = env.RegisterBoolVar("ISTIO_ENABLE_IPV4_OUTBOUND_LISTENER_FOR_IPV6_CLUSTERS", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_logging.go

    	// reqWithoutQueryFormatter configures additional formatters needed for some of the format strings like "REQ_WITHOUT_QUERY"
    	reqWithoutQueryFormatter = &core.TypedExtensionConfig{
    		Name:        "envoy.formatter.req_without_query",
    		TypedConfig: protoconv.MessageToAny(&reqwithoutquery.ReqWithoutQuery{}),
    	}
    
    	// metadataFormatter configures additional formatters needed for some of the format strings like "METADATA"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

        @Override
        public ClassPath transform(ClassPath classPath, ClassTransform additional) {
            if (classPath.isEmpty()) {
                return classPath;
            }
            return transformFiles(
                classPath,
                instrumentingClasspathFileTransformerFor(
                    classpathElementTransformFactoryForLegacy,
                    additional
                )
            );
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            then:
            nonJarLibEntries.isEmpty()
        }
    
        def "no additional jars are added to the distribution"() {
            when:
            def jarLibEntries = libZipEntries.findAll { it.name.endsWith(".jar") }
    
            then:
            //ME: This is not a foolproof way of checking that additional jars have not been accidentally added to the distribution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

            pingRequestCount == 3 || pingRequestCount == 4
            timer.elapsedMillis > 3000 // See: DefaultFileLockContentionHandler.PING_DELAY
        }
    
        def "the lock holder starts the release request only once and discards additional requests in the meantime"() {
            given:
            def requestReceived = false
            def terminate = false
            setupLockOwner {
                requestReceived = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/os/exec.go

    	// handle field.
    	//
    	// The Process itself initially holds 1 persistent reference. Any
    	// operation that uses the handle with a system call temporarily holds
    	// an additional transient reference. This prevents the handle from
    	// being closed prematurely, which could result in the OS allocating a
    	// different handle with the same value, leading to Process' methods
    	// operating on the wrong process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

        }
    
        Class transformAndLoad(Class cl, Class... additional) {
            def jar = testDir.file("${cl.name}.jar")
            classpathBuilder.jar(jar) { builder ->
                ([cl] + additional.toList()).forEach { required ->
                    def fileName = required.name.replace('.', '/') + ".class"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

    /*
     * Licensed to the Apache Software Foundation (ASF) under one
     * or more contributor license agreements.  See the NOTICE file
     * distributed with this work for additional information
     * regarding copyright ownership.  The ASF licenses this file
     * to you under the Apache License, Version 2.0 (the
     * "License"); you may not use this file except in compliance
     * with the License.  You may obtain a copy of the License at
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

    /*
     * Licensed to the Apache Software Foundation (ASF) under one
     * or more contributor license agreements.  See the NOTICE file
     * distributed with this work for additional information
     * regarding copyright ownership.  The ASF licenses this file
     * to you under the Apache License, Version 2.0 (the
     * "License"); you may not use this file except in compliance
     * with the License.  You may obtain a copy of the License at
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top