Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 411 for absence (0.5 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenProfileResolveIntegrationTest.groovy

                    module("groupA:artifactA:1.2") {
                        module("groupB:artifactB:1.4")
                    }
                }
            }
        }
    
        def "uses properties from profile activated by the absence of a property"() {
            given:
            String customPropertyName = new UUIDGenerator().generateId()
            def requestedModule = mavenHttpRepo.module("groupA", "artifactA", "1.2").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

            dep.scope == MavenScope.Compile
            hasDefaultDependencyArtifact(dep)
        }
    
        def "pom with project coordinates defined by profile activated by absence of system property"() {
            given:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>\${some.group}</groupId>
        <artifactId>\${some.artifact}</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/CachingResourceHasher.java

    import javax.annotation.Nullable;
    import java.io.IOException;
    
    /**
     * Caches the result of hashing regular files with a {@link ResourceHasher}.
     * It does not cache the result of hashing {@link ZipEntry}s.
     * It also caches the absence of a hash.
     */
    public class CachingResourceHasher implements ResourceHasher {
        private final ResourceHasher delegate;
        private final ResourceSnapshotterCacheService resourceSnapshotterCacheService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. src/net/dnsconfig.go

    // license that can be found in the LICENSE file.
    
    package net
    
    import (
    	"os"
    	"sync/atomic"
    	"time"
    	_ "unsafe"
    )
    
    // defaultNS is the default name servers to use in the absence of DNS configuration.
    //
    // defaultNS should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/pojntfx/hydrapp/hydrapp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/problems/ProblemDiagnostics.java

         * In this case, the failure can be synthetic to provide the stack trace for the problem origin.
         * <p>
         * The failure can also be omitted due to limits. Its absence does not mean there was no exception causing the problem.
         */
        @Nullable
        Failure getFailure();
    
        /**
         * Returns an exception that can be thrown when this problem should result in an error.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:13:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/api/IsolatedAction.java

     * This approach ensures that sharing mutable state across targets via any means
     * (including {@link org.gradle.api.services.BuildService}, which are not supported) is prevented.
     * The absence of shared mutable state allows these actions to be safely executed in parallel as needed.
     *
     * <p><b>IMPORTANT:</b> As isolated action instances are recreated using Configuration Cache serialization, they must
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:15:52 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/AbstractModuleMetadataCache.java

            return get(key);
        }
    
        @Override
        public CachedMetadata cacheMissing(ModuleComponentRepository<?> repository, ModuleComponentIdentifier id) {
            LOGGER.debug("Recording absence of module descriptor in cache: {} [changing = {}]", id, false);
            ModuleComponentAtRepositoryKey key = createKey(repository, id);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. pkg/apis/policy/types.go

    type PodDisruptionBudgetSpec struct {
    	// An eviction is allowed if at least "minAvailable" pods selected by
    	// "selector" will still be available after the eviction, i.e. even in the
    	// absence of the evicted pod.  So for example you can prevent all voluntary
    	// evictions by specifying "100%".
    	// +optional
    	MinAvailable *intstr.IntOrString
    
    	// Label query over pods whose evictions are managed by the disruption
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_block.go

    	}
    
    	ctx, cancel := context.WithTimeout(context.Background(), csiTimeout)
    	defer cancel()
    
    	csiClient, err := m.csiClientGetter.Get()
    	if err != nil {
    		// Treat the absence of the CSI driver as a transient error
    		// See https://github.com/kubernetes/kubernetes/issues/120268
    		return "", volumetypes.NewTransientOperationFailure(log("blockMapper.SetUpDevice failed to get CSI client: %v", err))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/policy/v1/generated.proto

    message PodDisruptionBudgetSpec {
      // An eviction is allowed if at least "minAvailable" pods selected by
      // "selector" will still be available after the eviction, i.e. even in the
      // absence of the evicted pod.  So for example you can prevent all voluntary
      // evictions by specifying "100%".
      // +optional
      optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString minAvailable = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top