Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 761 for proper (0.31 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/internal/classpath/intercept/ThreadLocalInterceptorSet.groovy

        }
    
        void substituteForCurrentThread(T substitution) {
            if (threadLocalDecorators.get() != original) {
                throw new IllegalStateException("already substituted for the current thread; proper cleanup might have been missed")
            }
            substitutions.incrementAndGet()
            threadLocalDecorators.set(substitution)
        }
    
        void cancelSubstitutionForCurrentThread() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 16:29:37 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ComponentMetadataProcessorFactory.java

     * such as the repository from which the dependency comes from.
     * <p>
     * The {@link MetadataResolutionContext} enables a {@link ComponentMetadataProcessor} to execute with the proper context.
     */
    public interface ComponentMetadataProcessorFactory {
    
        /**
         * Creates a contextual {@link ComponentMetadataProcessor}
         *
         * @param resolutionContext the provided context
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/CircularEvaluationSpec.groovy

            /**
             * Creates an appropriate property instance of the same type
             * @return the property instance
             */
            abstract PropertyInternal<T> property()
    
            def "calling #consumer throws exception with proper chain if wrapped provider forms a cycle"(
                Consumer<ProviderInternal<?>> consumer
            ) {
                given:
                def property = property()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/failure/DefaultThrowableToTestFailureMapper.java

        public TestFailure createFailure(Throwable throwable) {
            Throwable currentThrowable = throwable;
    
            // We recursively dig down through the chain of causes, trying to find a Throwable which we can map to a proper test failure
            while (currentThrowable != null) {
                for (TestFailureMapper mapper : mappers) {
                    if (mapper.supports(currentThrowable.getClass())) {
                        try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_traceback.c

    #endif
    
    // Call the user's traceback function and then call sigtramp.
    // The runtime signal handler will jump to this code.
    // We do it this way so that the user's traceback function will be called
    // by a C function with proper unwind info.
    void
    x_cgo_callers(uintptr_t sig, void *info, void *context, void (*cgoTraceback)(struct cgoTracebackArg*), uintptr_t* cgoCallers, void (*sigtramp)(uintptr_t, void*, void*)) {
    	struct cgoTracebackArg arg;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 20:11:59 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    	"k8s.io/apimachinery/pkg/util/framer"
    	utilyaml "k8s.io/apimachinery/pkg/util/yaml"
    	"k8s.io/klog/v2"
    )
    
    // NewSerializer creates a JSON serializer that handles encoding versioned objects into the proper JSON form. If typer
    // is not nil, the object has the group, version, and kind fields set.
    // Deprecated: use NewSerializerWithOptions instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform.h

    namespace mlir {
    namespace TFL {
    namespace tac {
    
    // Returns true if 'op' is supported to run on 'hardware'.
    bool IsSupported(Operation* op, const std::string& hardware);
    
    // Return proper rewriter patterns for different hardwares.
    RewritePatternSet GetHardwareRewritePatterns(MLIRContext* context,
                                                 const std::string& hardware);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 18:43:51 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/versioncheck.go

    	fieldManager Manager
    	gvk          schema.GroupVersionKind
    }
    
    var _ Manager = &versionCheckManager{}
    
    // NewVersionCheckManager creates a manager that makes sure that the
    // applied object is in the proper version.
    func NewVersionCheckManager(fieldManager Manager, gvk schema.GroupVersionKind) Manager {
    	return &versionCheckManager{fieldManager: fieldManager, gvk: gvk}
    }
    
    // Update implements Manager.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/typeconverter.go

    // included).
    func NewDeducedTypeConverter() TypeConverter {
    	return internal.NewDeducedTypeConverter()
    }
    
    // NewTypeConverter builds a TypeConverter from a map of OpenAPIV3 schemas.
    // This will automatically find the proper version of the object, and the
    // corresponding schema information.
    // The keys to the map must be consistent with the names
    // used by Refs within the schemas.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableSortedMultiset.java

        throw new UnsupportedOperationException();
      }
    
      /**
       * Not supported. <b>You are attempting to create a multiset that may contain a non-{@code
       * Comparable} element.</b> Proper calls will resolve to the version in {@code
       * ImmutableSortedMultiset}, not this dummy version.
       *
       * @throws UnsupportedOperationException always
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top