Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 399 for Child (0.04 sec)

  1. src/strings/replace.go

    	priority int
    
    	// A trie node may have zero, one or more child nodes:
    	//  * if the remaining fields are zero, there are no children.
    	//  * if prefix and next are non-zero, there is one child in next.
    	//  * if table is non-zero, it defines all the children.
    	//
    	// Prefixes are preferred over tables when there is one child, but the
    	// root node always uses a table for lookup efficiency.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTestOperationsTest.groovy

            _ * childTestDescriptor.getId() >> 2
            _ * childTestDescriptor.getName() >> 'some child'
            _ * childTestDescriptor.getParentId() >> 1
    
            def childEvent = Mock(InternalTestStartedProgressEvent)
            _ * childEvent.getDisplayName() >> 'child event'
            _ * childEvent.getEventTime() >> 999
            _ * childEvent.getDescriptor() >> childTestDescriptor
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

        }
    
        /**
         * Makes the parent directory of the file, and any non existent parents.
         *
         * @param child The file to create the parent dir for
         * @return The parent dir file
         * @see #mkdirs(java.io.File)
         */
        public static File parentMkdirs(File child) {
            File parent = child.getParentFile();
            mkdirs(parent);
            return parent;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

            mutate {
                create("foo")
                create("bar")
            }
            selfClose()
    
            then:
            registry.state(path.child("foo")) == ModelNode.State.Registered
    
            when:
            realize()
    
            then:
            registry.state(path.child("foo")) == ModelNode.State.GraphClosed
        }
    
        def "can define item with custom type"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

            _ * owner.identityPath >> (parent == null ? Path.ROOT : parent.identityPath.child(name))
            _ * owner.projectPath >> (parent == null ? Path.ROOT : parent.projectPath.child(name))
            _ * owner.depth >> owner.projectPath.segmentCount()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. internal/s3select/sql/evaluate.go

    // mismatches, etc.
    //
    // If an aggregation node is present as a descendant (when
    // e.prop.isAggregation is true), we call evalNode on all child nodes,
    // check for errors, but do not perform any combining of the results
    // of child nodes. The final result row is returned after all rows are
    // processed, and the `getAggregate` function is called.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. pkg/volume/util/subpath/subpath_linux_test.go

    				return nil, volpath, subpath, os.Symlink(base, subpath)
    			},
    			expectError: true,
    		},
    		{
    			name: "subpath-child-outside-exists",
    			prepare: func(base string) ([]string, string, string, error) {
    				volpath, _ := getTestPaths(base)
    				subpathDir := filepath.Join(volpath, "dir0")
    				child := filepath.Join(base, "child0")
    				subpath := filepath.Join(subpathDir, "child0")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 16:52:55 UTC 2021
    - 37.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbResource.java

         *         <code>false</code> otherwise
         * @throws CIFSException
         */
        boolean exists () throws CIFSException;
    
    
        /**
         * Fetch a child resource
         * 
         * @param name
         * @return the child resource
         * @throws CIFSException
         */
        SmbResource resolve ( String name ) throws CIFSException;
    
    
        /**
         * Get the file index
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/scope.cc

      }
      if (!impl()->single_use_scope()) {
        Scope child = NewSubScope(impl()->op_name_.empty() ? composite_op_name
                                                           : impl()->op_name_);
        const string child_op_sep = impl()->name_.empty() ? "" : kSuffixSeparator;
        const string child_name =
            strings::StrCat(impl()->name_, child_op_sep, child.impl()->name_);
        return {child,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

      }
      const SavedObject* current_node = &nodes.Get(node_id);
      for (const auto& child : current_node->children()) {
        ConcreteFunction* concrete_fn;
        Status status = GetFunction(child.local_name(), &concrete_fn);
        if (status.ok()) {
          (*functions)[child.local_name()] = concrete_fn;
        }
      }
      return Status();
    }
    
    Status TFSavedModelAPI::GetSignatureDefFunction(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top