Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 140 for hierarchyOf (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    In order to handle conflicts between nested included build names better, Gradle now uses the directory hierarchy of included builds to assign the build path.
    If you are running tasks from the command line in nested included builds, then you may need to adjust your invocation.
    
    For example, if you have the following hierarchy:
    
    ====
    [.multi-language-sample]
    =====
    [source,kotlin]
    ----
    .
    ├── settings.gradle.kts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. src/syscall/exec_linux_test.go

    		t.Fatal(err)
    	}
    
    	// Expect a single line like this:
    	// 0::/user.slice/user-1000.slice/******@****.***e/app.slice/vte-spawn-891992a2-efbb-4f28-aedb-b24f9e706770.scope
    	// Otherwise it's either cgroup v1 or a hybrid hierarchy.
    	if bytes.Count(selfCg, []byte("\n")) > 1 {
    		t.Skip("cgroup v2 not available")
    	}
    	cg := bytes.TrimPrefix(selfCg, []byte("0::"))
    	if len(cg) == len(selfCg) { // No prefix found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dependencies": {
            "d3-array": "2.5.0 - 3"
          },
          "engines": {
            "node": ">=12"
          }
        },
        "node_modules/d3-hierarchy": {
          "version": "3.1.2",
          "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz",
          "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==",
          "engines": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    If your build still uses this deprecated feature, consider refactoring the build to have the root directory match the physical root of the project hierarchy.
    You can find more information about <<multi_project_builds.adoc#multi_project_builds,how to structure a Gradle build>> or a <<structuring_software_products.adoc#structure_large_projects,composition of builds>> in the user manual.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            // we are storing it here despite its relationship to Configuration Cache logic.
            // The full prohibited hierarchy is stored because there is no efficient way to check the class hierarchy via `org.objectweb.asm.Type`.
            private static final Set<Type> DISALLOWED_AT_EXECUTION_INJECTED_SERVICES_TYPES = ImmutableSet.of(
                getType(Project.class),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

         *
         * @return The parent directory of this SMB resource or
         *         <code>smb://</code> if the resource refers to the root of the URL
         *         hierarchy which incidentally is also <code>smb://</code>.
         */
        public String getParent () {
            return this.fileLocator.getParent();
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  10. src/go/doc/reader.go

    		// all embedded types in those types are treated like
    		// pointer types for the purpose of the receiver type
    		// computation; i.e., embeddedIsPtr is sticky for this
    		// embedding hierarchy.
    		thisEmbeddedIsPtr := embeddedIsPtr || isPtr
    		for _, m := range embedded.methods {
    			// only top-level methods are embedded
    			if m.Level == 0 {
    				mset.add(customizeRecv(m, recvTypeName, thisEmbeddedIsPtr, level))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top