Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 99 for hierarchyOf (0.16 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    // these will be computed, but the question is to which extent the user should
    // know they exist. We should at some point allow the user to specify an
    // embedding hierarchy, though.
    
    // A Direction indicates the overall flow of text.
    type Direction int
    
    const (
    	// LeftToRight indicates the text contains no right-to-left characters and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

         *
         * We must rely on the dynamic cast and possible runtime failure here due to a Kotlin extension member limitation.
         * Kotlin currently can't disambiguate between invoke operators with more specific receivers in a type hierarchy.
         *
         * See https://youtrack.jetbrains.com/issue/KT-15711
         */
        private
        fun polymorphicDomainObjectContainer() =
            delegate as? PolymorphicDomainObjectContainer<T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    If you run the command from the _services_ project directory, you will only execute the task in _services:shared_ and _services:webservice_.
    
    The basic rule behind Gradle's behavior is to *execute all tasks down the hierarchy with _this_ name*.
    And *complain if there is _no_ such task found* in any of the subprojects traversed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                for (String moduleName : outputModules.getModuleNames().values()) {
                    Path subdir = test;
                    if (isModuleHierarchy) {
                        // If module hierarchy is used, the directory names shall be the module names.
                        Path path = test.resolve(moduleName);
                        if (!Files.isDirectory(path)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

        }
    
        // This emulates the behaviour of the Spring Dependency Management plugin when applying dependency excludes from a BOM
        def "can use beforeResolve hook to modify dependency excludes for configuration hierarchy"() {
            mavenRepo.module('org.test', 'module1', '1.0').publish()
            mavenRepo.module('org.test', 'module2', '1.0').publish()
    
            given:
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/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).
    	//
    	// Audit ID is also returned to client by http response header.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

                dependencies {
                    implementation "org.test:buildB:1.0"
                    implementation "org.test:buildC:1.0"
                }
            """
    
            def buildC = rootDir.file("hierarchy", "buildB");
            buildC.file('settings.gradle') << """
                rootProject.name = 'buildC'
            """
            buildC.file('build.gradle') << """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/http/NetworkExplorer.java

    import jcifs.smb1.util.LogStream;
    import jcifs.smb1.util.MimeMap;
    
    import java.util.*;
    import java.text.SimpleDateFormat;
    import java.net.UnknownHostException;
    
    /**
     * This servlet may be used to "browse" the entire hierarchy of resources
     * on an SMB network like one might with Network Neighborhood or Windows
     * Explorer. The users credentials with be negotiated using NTLM SSP if
     * the client is Microsoft Internet Explorer.
     */
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 22 03:57:31 UTC 2020
    - 19.7K bytes
    - Viewed (0)
  9. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

         *
         * There's no way to tell from the byte code that a method overrides the signature
         * of a parent declaration other than crawling up the type hierarchy.
         */
        private
        fun isSignificantDeclaration(methodNode: MethodNode): Boolean {
    
            if (methodNode.access.isSynthetic) return false
    
            if (!hasSuperType) return true
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 19:56:10 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/http/NetworkExplorer.java

    import jcifs.smb.SmbAuthException;
    import jcifs.smb.SmbException;
    import jcifs.smb.SmbFile;
    import jcifs.smb.SmbFileInputStream;
    
    
    /**
     * This servlet may be used to "browse" the entire hierarchy of resources
     * on an SMB network like one might with Network Neighborhood or Windows
     * Explorer. The users credentials with be negotiated using NTLM SSP if
     * the client is Microsoft Internet Explorer.
     * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 21.3K bytes
    - Viewed (0)
Back to top