Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,154 for existingPV (0.3 sec)

  1. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenMetadata.java

            return path;
        }
    
        public void merge(File existing, File result) throws RepositoryException {
            merge(existing != null ? existing.toPath() : null, result != null ? result.toPath() : null);
        }
    
        @Override
        public void merge(Path existing, Path result) throws RepositoryException {
            Metadata recessive = read(existing);
    
            merge(recessive);
    
            write(result, metadata);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/testprog/annotations.go

    	"log"
    	"os"
    	"runtime/trace"
    	"sync"
    )
    
    func main() {
    	bgctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	// Create a pre-existing region. This won't end up in the trace.
    	preExistingRegion := trace.StartRegion(bgctx, "pre-existing region")
    
    	// Start tracing.
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    
    	// Beginning of traced execution.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/state/DefaultManagedFactoryRegistry.java

            return factory;
        }
    
        private void register(ManagedFactory factory) {
            ManagedFactory existing = managedFactoryCache.getIfPresent(factory.getId());
            if (existing != null) {
                throw new IllegalArgumentException("A managed factory with type " + existing.getClass().getSimpleName() + " (id: " + existing.getId() + ") has already been registered.");
            }
            managedFactoryCache.put(factory.getId(), factory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolverResults.java

        private static boolean emptyVersion(ComponentIdResolveResult existing) {
            if (existing.getFailure() == null) {
                return existing.getModuleVersionId().getVersion().isEmpty();
            }
            return false;
        }
    
        private static boolean sameVersion(ComponentIdResolveResult existing, ComponentIdResolveResult resolveResult) {
            if (existing.getFailure() == null && resolveResult.getFailure() == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. cluster/pre-existing/util.sh

    # limitations under the License.
    
    # A library of helper functions for landing kubemark containers on a
    # pre-existing Kubernetes master. See test/kubemark/pre-existing/README.md
    # for me details on using a pre-existing provider.
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    
    source "${KUBE_ROOT}/cluster/common.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 25 21:33:22 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensions.kt

    /**
     * Idiomatic way of referring to the provider of a well-known element of a collection via a delegate property.
     *
     * `tasks { val jar by existing }`
     *
     * @param T the domain object type
     * @param C the concrete container type
     */
    inline val <T : Any, C : NamedDomainObjectCollection<T>> C.existing: ExistingDomainObjectDelegateProvider<out C>
        get() = ExistingDomainObjectDelegateProvider.of(this)
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/CopyProcessingSpec.java

        /**
         * Returns the Unix permissions to use for the target files. {@code null} means that existing
         * permissions are preserved. It is dependent on the copy action implementation whether these permissions
         * will actually be applied.
         *
         * @return The file permissions, or {@code null} if existing permissions should be preserved.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 07:53:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. manifests/charts/gateway/README.md

      foo: bar # Add the existing custom selector label
    ```
    
    #### Migrating an existing Helm release
    
    An existing helm release can be `helm upgrade`d to this chart by using the same release name. For example, if a previous
    installation was done like:
    
    ```console
    helm install istio-ingress manifests/charts/gateways/istio-ingress -n istio-system
    ```
    
    It could be upgraded with
    
    ```console
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpComponent.java

     *
     *         //closure executed after wtp component file content is loaded from existing file
     *         //but before gradle build information is merged
     *         beforeMerged { wtpComponent -&gt;
     *           //tinker with {@link WtpComponent} here
     *         }
     *
     *         //closure executed after wtp component file content is loaded from existing file
     *         //and after gradle build information is merged
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyExtensions.kt

    }
    
    
    /**
     * Sets the value of the property to the elements of the given iterable, and replaces any existing value
     *
     * @since 8.2
     */
    fun <T> HasMultipleValues<T>.assign(elements: Iterable<T?>?) {
        this.set(elements)
    }
    
    
    /**
     * Sets the property to have the same value of the given provider, and replaces any existing value
     *
     * @since 8.2
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top