Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 346 for absence (0.24 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. guava-testlib/test/com/google/common/testing/TestLogHandlerTest.java

        assertEquals("message", record.getMessage());
        assertSame(EXCEPTION, record.getThrown());
      }
    
      public void testConcurrentModification() throws Exception {
        // Tests for the absence of a bug where logging while iterating over the
        // stored log records causes a ConcurrentModificationException
        assertTrue(handler.getStoredLogRecords().isEmpty());
        ExampleClassUnderTest.foo();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  10. 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)
Back to top