Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 99 of 99 for hierarchyOf (0.19 sec)

  1. 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)
  2. tensorflow/cc/experimental/libtf/object.h

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    /// @file object.h
    /// @brief Object hierarchy for the TensorFlow C++ API. All "objects" are
    /// derived from the `Handle` class. Instances of `Handle` are referred to as
    /// "handles". All handles have a tagged value.
    ///
    /// Example Usage:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParserTest.groovy

            e.message == "Could not parse Ivy file ${file}"
            e.cause.message.contains("Cannot add dependency 'myorg#other;1.2' to configuration 'unknown'")
        }
    
        def "fails when there is a cycle in configuration hierarchy"() {
            def file = temporaryFolder.file("ivy.xml") << """
    <ivy-module version="1.0">
        <info organisation="myorg"
              module="mymodule"
              status="integration"
        />
        <configurations>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  5. 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)
  6. src/encoding/asn1/asn1.go

    	}
    
    	return s.String()
    }
    
    // parseObjectIdentifier parses an OBJECT IDENTIFIER from the given bytes and
    // returns it. An object identifier is a sequence of variable length integers
    // that are assigned in a hierarchy.
    func parseObjectIdentifier(bytes []byte) (s ObjectIdentifier, err error) {
    	if len(bytes) == 0 {
    		err = SyntaxError{"zero length OBJECT IDENTIFIER"}
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    === Listing projects
    Running the `projects` task gives you a list of the subprojects of the selected project, displayed in a hierarchy:
    
    ----
    $ gradle projects
    ----
    
    You also get a project report within https://scans.gradle.com/[Build Scans].
    
    [[sec:listing_tasks]]
    === Listing tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. cmd/kubelet/app/options/options.go

    	fs.BoolVar(&c.CgroupsPerQOS, "cgroups-per-qos", c.CgroupsPerQOS, "Enable creation of QoS cgroup hierarchy, if true top level QoS and pod cgroups are created.")
    	fs.StringVar(&c.CgroupDriver, "cgroup-driver", c.CgroupDriver, "Driver that the kubelet uses to manipulate cgroups on the host.  Possible values: 'cgroupfs', 'systemd'")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    the concrete implementation of * <pre>protected abstract U featureValueOf(T actual);</pre> * a method which is declared in <code>FeatureMatcher</code>. * * In short, use this to extract a type from a method in the leaf class of a templated class hierarchy. * * @author Steve Freeman * @author Nat Pryce */ package org.hamcrest.internal; import java.lang.reflect.Method; public class ReflectiveTypeFinder { private final String methodName; private final int expectedNumberOfPara; private final int typedParameter;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
Back to top