Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for hand (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    For the main project build scripts and precompiled project script plugins:
    
    * Dependency and artifact configurations (such as `implementation` and `runtimeOnly` contributed by the Java Plugin)
    * Project extensions and conventions (such as `sourceSets`), and extensions on them
    * Extensions on the `dependencies` and `repositories` containers, and extensions on them
    * Elements in the `tasks` and `configurations` containers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // If none of the incoming edges are transitive, remove previous state and do not traverse.
            // If not traversed before, simply add all selected outgoing edges (either hard or pending edges)
            // If traversed before:
            //      If net exclusions for this node have not changed, ignore
            //      If net exclusions for this node have changed, remove previous state and traverse outgoing edges again.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

    }
    
    # Creates directories where other functions in this module will read and write
    # data.
    # Note: C:\tmp is required for running certain kubernetes tests.
    #       C:\var\log is used by kubelet to stored container logs and also
    #       hard-coded in the fluentd/stackdriver config for log collection.
    function Create-Directories {
      Log-Output "Creating ${env:K8S_DIR} and its subdirectories."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    		name string
    		refs []metav1.OwnerReference
    		// The set and pod objets will be created with names "set" and "pod", respectively.
    		setUID        types.UID
    		podUID        types.UID
    		nonController bool
    	}{
    		{
    			// API validation should prevent two controllers from being set,
    			// but for completeness the semantics here are tested.
    			name: "set and pod controller",
    			refs: []metav1.OwnerReference{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

          : group_attribute_(std::move(group_attribute)), graph_in_(graph_in) {}
    
      // Find subgraphs marked with 'group_attribute', and build a new
      // subgraph, one for each value of 'group_attribute'.
      Status SplitIntoSubgraphs(FunctionLibraryDefinition* library);
    
      // Build a FunctionDef for each subgraph, and add it 'library'. The values of
      // the 'group_attribute' annotations become the function names.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                    Version.V20,
                                    prefix + prefix2 + "systemPath",
                                    key,
                                    "should use a variable instead of a hard-coded path " + sysPath,
                                    dependency);
                        } else if (sysPath.contains("${basedir}") || sysPath.contains("${project.basedir}")) {
                            addViolation(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  7. src/math/big/int_test.go

    	x := new(Int)
    	y := new(Int)
    	for _, test := range bitwiseTests {
    		x.SetString(test.x, 0)
    		y.SetString(test.y, 0)
    
    		testBitFun(t, "and", (*Int).And, x, y, test.and)
    		testBitFunSelf(t, "and", (*Int).And, x, y, test.and)
    		testBitFun(t, "andNot", (*Int).AndNot, x, y, test.andNot)
    		testBitFunSelf(t, "andNot", (*Int).AndNot, x, y, test.andNot)
    		testBitFun(t, "or", (*Int).Or, x, y, test.or)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    // limitations under the License.
    
    [[native_software]]
    = Building native software
    
    
    CAUTION: The https://blog.gradle.org/state-and-future-of-the-gradle-software-model[software model] is being retired and the plugins mentioned in this chapter will eventually be deprecated and removed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels",
                "type": "object"
              },
              "managedFields": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  10. src/debug/elf/file_test.go

    		t.Fatalf("want EOF with 0 bytes, got %v with %d bytes", err, n)
    	}
    	pos := int64(len(buf))
    	for count < len(buf) {
    		// Construct random seek arguments.
    		whence := rand.Intn(3)
    		target := rand.Int63n(int64(len(buf)))
    		var offset int64
    		switch whence {
    		case io.SeekStart:
    			offset = target
    		case io.SeekCurrent:
    			offset = target - pos
    		case io.SeekEnd:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
Back to top