Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for factory (0.28 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                onAccess("container")
                return delegate.container(type)
            }
    
            override fun <T : Any?> container(type: Class<T>, factory: NamedDomainObjectFactory<T>): NamedDomainObjectContainer<T> {
                onAccess("container")
                return delegate.container(type, factory)
            }
    
            override fun <T : Any?> container(type: Class<T>, factoryClosure: Closure<*>): NamedDomainObjectContainer<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	"k8s.io/apiserver/pkg/storage"
    	cacherstorage "k8s.io/apiserver/pkg/storage/cacher"
    	etcd3testing "k8s.io/apiserver/pkg/storage/etcd3/testing"
    	"k8s.io/apiserver/pkg/storage/names"
    	"k8s.io/apiserver/pkg/storage/storagebackend/factory"
    	storagetesting "k8s.io/apiserver/pkg/storage/testing"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/tools/cache"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

        @SuppressWarnings("unused")
        public void failsToCheckNull(String s) {}
      }
    
      private static class NoPublicStaticMethods {
        @SuppressWarnings("unused") // To test non-public factory isn't used.
        static String notPublic() {
          return "";
        }
      }
    
      @interface MyAnnotation {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.actor.Actor> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (Actor.java:0)
    Class <org.gradle.internal.actor.ActorFactory> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (ActorFactory.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TF_NumberTensor, [{Must be a scalar.}]>:$beta1_power,
        Arg<TF_NumberTensor, [{Scaling factor. Must be a scalar.}]>:$lr,
        Arg<TF_NumberTensor, [{Momentum factor. Must be a scalar.}]>:$beta1,
        Arg<TF_NumberTensor, [{Momentum factor. Must be a scalar.}]>:$beta2,
        Arg<TF_NumberTensor, [{Ridge term. Must be a scalar.}]>:$epsilon,
        Arg<TF_NumberTensor, [{The gradient.}]>:$grad,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

            verify_size(window_strides.size(), "window strides") &&
            verify_size(padding.size(), "padding entries") &&
            verify_size(lhs_dilation.size(), "lhs dilation factors") &&
            verify_size(rhs_dilation.size(), "rhs dilation factors")))
        return std::nullopt;
    
      xla::Window window;
      for (size_t i = 0; i < window_dimensions.size(); i++) {
        auto dim = window.add_dimensions();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    		return true // eliminates special-casing 2.
    	} else if (x & 1) == 0 {
    		return false // eliminates even numbers >2.
    	}
    
    	limit := uint64(math.Sqrt(float64(x)))
    	for factor := uint64(3); factor <= limit; factor += 2 {
    		if (x % factor) == 0 {
    			return false
    		}
    	}
    	return true
    }
    
    func validateSubset(subset *networking.Subset) error {
    	return appendErrors(validateSubsetName(subset.Name),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       anything about how the property is tested. To find out, read the code.
     *   <li>These tests are "conformance tests", and do not attempt to test throughput, latency,
     *       scalability or other performance factors (see the separate "jtreg" tests for a set intended
     *       to check these for the most central aspects of functionality.) So, most tests use the
     *       smallest sensible numbers of threads, collection sizes, etc needed to check basic
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  9. src/go/types/unify.go

    	// Ensure that if we have at least one type parameter, it is in x
    	// (the earlier swap checks for _recorded_ type parameters only).
    	// This ensures that the switch switches on the type parameter.
    	//
    	// TODO(gri) Factor out type parameter handling from the switch.
    	if isTypeParam(y) {
    		if traceInference {
    			u.tracef("%s ≡ %s\t// swap", y, x)
    		}
    		x, y = y, x
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/unify.go

    	// Ensure that if we have at least one type parameter, it is in x
    	// (the earlier swap checks for _recorded_ type parameters only).
    	// This ensures that the switch switches on the type parameter.
    	//
    	// TODO(gri) Factor out type parameter handling from the switch.
    	if isTypeParam(y) {
    		if traceInference {
    			u.tracef("%s ≡ %s\t// swap", y, x)
    		}
    		x, y = y, x
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top