Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 99 for hierarchyOf (0.23 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

            return noSince(true);
        }
    
        /**
         * -notree
         * <p>
         * Omits the class/interface hierarchy pages from the generated docs.
         * These are the pages you reach using the "Tree" button in the navigation bar.
         * The hierarchy is produced by default.
         */
        @Input
        public boolean isNoTree() {
            return noTree.getValue();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Throwables.java

        }
        return throwable;
      }
    
      /**
       * Gets a {@code Throwable} cause chain as a list. The first entry in the list will be {@code
       * throwable} followed by its cause hierarchy. Note that this is a snapshot of the cause chain and
       * will not reflect any subsequent changes to the cause chain.
       *
       * <p>Here's an example of how it can be used to find specific types of exceptions in the cause
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Throwables.java

        }
        return throwable;
      }
    
      /**
       * Gets a {@code Throwable} cause chain as a list. The first entry in the list will be {@code
       * throwable} followed by its cause hierarchy. Note that this is a snapshot of the cause chain and
       * will not reflect any subsequent changes to the cause chain.
       *
       * <p>Here's an example of how it can be used to find specific types of exceptions in the cause
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

            }
            return map;
        }
    
        /**
         * Returns a map of all type bindings for a given {@link Type}.
         * Includes type bindings from a whole class hierarchy
         */
        public static Map<TypeVariable<?>, Type> getAllTypeBindings(Type type) {
            return TYPE_BINDINGS_CACHE.computeIfAbsent(type, t -> {
                Map<TypeVariable<?>, Type> mapping = new HashMap<>();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

            'compatible value'           | [key: 'other']                  | 'bar'
        }
    
        def configuration(String name, String... parents) {
            def config = Stub(ConfigurationMetadata)
            config.hierarchy >> ([name] as Set) + (parents as Set)
            return config
        }
    
        private ImmutableAttributes attributes(Map<String, ?> src) {
            def attributes = AttributeTestUtil.attributesFactory().mutable()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // Header keys used by the audit system.
    const (
    	// Header to hold the audit ID as the request is propagated through the serving hierarchy. The
    	// Audit-ID header should be set by the first server to receive the request (e.g. the federation
    	// server or kube-aggregator).
    	HeaderAuditID = "Audit-ID"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/types.go

    	SystemCgroups string
    	// CgroupRoot is the root cgroup to use for pods.
    	// If CgroupsPerQOS is enabled, this is the root of the QoS cgroup hierarchy.
    	CgroupRoot string
    	// Enable QoS based Cgroup hierarchy: top level cgroups for QoS Classes
    	// And all Burstable and BestEffort pods are brought up under their
    	// specific top level QoS cgroup.
    	CgroupsPerQOS bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

        }
    
        @Managed
        static interface SamePropertyInMultipleTypes extends SingleStringValueProperty, AnotherSingleStringValueProperty {
        }
    
        def "exact same properties defined in multiple types of the hierarchy are allowed"() {
            when:
            def properties = extract(SamePropertyInMultipleTypes).properties
    
            then:
            properties*.name == ["value"]
        }
    
        @Managed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensibleDynamicObjectTest.java

        }
    
        @Test
        public void canInvokeMethodsOnJavaSubClassOfGroovyObjectFromGroovy() {
            // This doesn't work.
            // It used to because at the bottom of the hierarchy chain the object implemented methodMissing().
            // However, our normal “decorated” classes do not do this so it is not realistic.
    
            // Groovy does something very strange here.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 33.7K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/security/oauth2-scopes.md

    The *path operation* itself also declares a scope, `"items"`, so this will also be in the list of `security_scopes.scopes` passed to `get_current_user`.
    
    Here's how the hierarchy of dependencies and scopes looks like:
    
    * The *path operation* `read_own_items` has:
        * Required scopes `["items"]` with the dependency:
        * `get_current_active_user`:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
Back to top