Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 619 for absence (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1/types.go

    	// its resource usage.  It will iterate through each resource consumed
    	// and if the resource contains any substring in this listing, the
    	// quota system will ensure that there is a covering quota.  In the
    	// absence of a covering quota, the quota system will deny the request.
    	// For example, if an administrator wants to globally enforce that
    	// that a quota must exist to consume persistent volume claims associated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1alpha1/types.go

    	// its resource usage.  It will iterate through each resource consumed
    	// and if the resource contains any substring in this listing, the
    	// quota system will ensure that there is a covering quota.  In the
    	// absence of a covering quota, the quota system will deny the request.
    	// For example, if an administrator wants to globally enforce that
    	// that a quota must exist to consume persistent volume claims associated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1beta1/types.go

    	// its resource usage.  It will iterate through each resource consumed
    	// and if the resource contains any substring in this listing, the
    	// quota system will ensure that there is a covering quota.  In the
    	// absence of a covering quota, the quota system will deny the request.
    	// For example, if an administrator wants to globally enforce that
    	// that a quota must exist to consume persistent volume claims associated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/types.go

    	// its resource usage.  It will iterate through each resource consumed
    	// and if the resource contains any substring in this listing, the
    	// quota system will ensure that there is a covering quota.  In the
    	// absence of a covering quota, the quota system will deny the request.
    	// For example, if an administrator wants to globally enforce that
    	// that a quota must exist to consume persistent volume claims associated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/testdata/script/list_all_gobuild.txt

    # go list all should work with GOOS=linux because all packages build on Linux
    env GOOS=linux
    env GOARCH=amd64
    go list all
    
    # go list all should work with GOOS=darwin, but it used to fail because
    # in the absence of //go:build support, p looked like it needed q
    # (p_test.go was not properly excluded), and q was Linux-only.
    #
    # Also testing with r and s that +build lines keep working.
    env GOOS=darwin
    go list all
    
    -- go.mod --
    go 1.17
    module m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 17:26:46 UTC 2023
    - 674 bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/CacheableTask.java

     * <p>Caching for individual task instances can be enabled and disabled via {@link TaskOutputs#cacheIf(String, Spec)} or disabled via {@link TaskOutputs#doNotCacheIf(String, Spec)}.
     * Using these APIs takes precedence over the presence (or absence) of {@code @CacheableTask}.</p>
     *
     * @see DisableCachingByDefault
     *
     * @since 3.0
     */
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE})
    public @interface CacheableTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 02 13:10:28 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  10. 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)
Back to top