Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 446 for expessive (0.29 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/configuration/validating_webhook_manager.go

    // mutating webhook configurations.
    //
    // This function will, first, try to load the webhook accessors from the cache and avoid
    // recreating them, which can be expessive (requiring CEL expression recompilation).
    func (v *validatingWebhookConfigurationManager) getValidatingWebhookConfigurations(configurations []*v1.ValidatingWebhookConfiguration) []webhook.WebhookAccessor {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 22:43:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/configuration/mutating_webhook_manager.go

    // mutating webhook configurations.
    //
    // This function will, first, try to load the webhook accessors from the cache and avoid
    // recreating them, which can be expessive (requiring CEL expression recompilation).
    func (m *mutatingWebhookConfigurationManager) getMutatingWebhookConfigurations(configurations []*v1.MutatingWebhookConfiguration) []webhook.WebhookAccessor {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 22:43:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/overview/userguide.adoc

    It has a rich community plugin ecosystem.
    * Gradle can automate a wide range of software build scenarios using either its built-in functionality, third-party plugins, or custom build logic.
    * Gradle provides a high-level, declarative, and expressive build language that makes it easy to read and write build logic.
    * Gradle is fast, scalable, and can build projects of any size and complexity.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/escape/CharEscaper.java

          // This is the size needed to add the replacement, not the full size
          // needed by the string. We only regrow when we absolutely must, and
          // when we do grow, grow enough to avoid excessive growing. Grow.
          int sizeNeeded = destIndex + charsSkipped + rlen;
          if (destSize < sizeNeeded) {
            destSize = sizeNeeded + DEST_PAD_MULTIPLIER * (slen - index);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/escape/CharEscaper.java

          // This is the size needed to add the replacement, not the full size
          // needed by the string. We only regrow when we absolutely must, and
          // when we do grow, grow enough to avoid excessive growing. Grow.
          int sizeNeeded = destIndex + charsSkipped + rlen;
          if (destSize < sizeNeeded) {
            destSize = sizeNeeded + DEST_PAD_MULTIPLIER * (slen - index);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepositoryTest.groovy

            false                    | MetadataFetchingCost.EXPENSIVE | MetadataFetchingCost.CHEAP
            true                     | MetadataFetchingCost.CHEAP     | MetadataFetchingCost.CHEAP
            true                     | MetadataFetchingCost.FAST      | MetadataFetchingCost.FAST
            true                     | MetadataFetchingCost.EXPENSIVE | MetadataFetchingCost.EXPENSIVE
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/MetadataFetchingCost.java

         */
        CHEAP,
        /**
         * Cannot return metadata without an expensive call, typically involving parsing a descriptor
         * or accessing the network
         */
        EXPENSIVE;
    
        public boolean isFast() {
            return this == FAST;
        }
    
        public boolean isExpensive() {
            return this == EXPENSIVE;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/limit_test.go

    			t.Errorf("expected too large error, got %v", err)
    		}
    	})
    
    	// Create YAML just under 3MB limit, nested
    	t.Run("create YAML doc under limit, nested", func(t *testing.T) {
    		if testing.Short() {
    			t.Skip("skipping expensive test")
    		}
    		yamlBody := []byte(fmt.Sprintf(`
    	apiVersion: %s
    	kind: %s
    	metadata:
    	  name: test
    	values: `+strings.Repeat("[", 3*1024*1024/2-500)+strings.Repeat("]", 3*1024*1024/2-500), apiVersion, kind))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 8K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testerrors/ptr_test.go

    		return cmd.CombinedOutput()
    	}
    
    	if pt.expensive {
    		buf, err := runcmd("1")
    		if err != nil {
    			t.Logf("%s", buf)
    			if pt.fail {
    				t.Fatalf("test marked expensive, but failed when not expensive: %v", err)
    			} else {
    				t.Errorf("failed unexpectedly with GODEBUG=cgocheck=1: %v", err)
    			}
    		}
    
    	}
    
    	cgocheck := ""
    	if pt.expensive {
    		cgocheck = "2"
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  10. platforms/software/resources/src/main/java/org/gradle/internal/resource/TextResource.java

        boolean isContentCached();
    
        /**
         * Returns true if this resource exists, false if it does not exist. A resource exists when it has content associated with it.
         *
         * <p>Note that this method may be expensive when {@link #isContentCached()} returns false, depending on the implementation.
         *
         * @return true if this resource exists.
         * @throws ResourceException On failure to check whether resource exists.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top