Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 204 for Child (0.06 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ProjectReportTask.java

                renderProjectDescription(model, textOutput);
            }, lastChild);
            renderer.startChildren();
            for (ProjectReportModel child : model.children) {
                renderProject(child, renderer, child == model.children.get(model.children.size() - 1), textOutput);
            }
            renderer.completeChildren();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    namespace testing {
    
    // This flag controls the style of death tests.  Valid values are "threadsafe",
    // meaning that the death test child process will re-execute the test binary
    // from the start, running only a single death test, or "fast",
    // meaning that the child process will execute the test logic immediately
    // after forking.
    GTEST_DECLARE_string_(death_test_style);
    
    #if GTEST_HAS_DEATH_TEST
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation_resourceclaim_test.go

    					},
    				}
    				return claim
    			},
    		},
    		"invalid-add-allocation-structured": {
    			wantFailures: field.ErrorList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/scope.go

    		i++
    	}
    	sort.Strings(names)
    	return names
    }
    
    // NumChildren returns the number of scopes nested in s.
    func (s *Scope) NumChildren() int { return len(s.children) }
    
    // Child returns the i'th child scope for 0 <= i < NumChildren().
    func (s *Scope) Child(i int) *Scope { return s.children[i] }
    
    // Lookup returns the object in scope s with the given name if such an
    // object exists; otherwise the result is nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/go/types/scope.go

    		i++
    	}
    	sort.Strings(names)
    	return names
    }
    
    // NumChildren returns the number of scopes nested in s.
    func (s *Scope) NumChildren() int { return len(s.children) }
    
    // Child returns the i'th child scope for 0 <= i < NumChildren().
    func (s *Scope) Child(i int) *Scope { return s.children[i] }
    
    // Lookup returns the object in scope s with the given name if such an
    // object exists; otherwise the result is nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/runtime/tracestack.go

    		w.varint(frame.funcID)
    		w.varint(frame.fileID)
    		w.varint(frame.line)
    	}
    
    	// Recursively walk all child nodes.
    	for i := range node.children {
    		child := node.children[i].Load()
    		if child == nil {
    			continue
    		}
    		w = dumpStacksRec((*traceMapNode)(child), w, stackBuf)
    	}
    	return w
    }
    
    // makeTraceFrames returns the frames corresponding to pcs. It may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/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
    - 10.8K bytes
    - Viewed (0)
  8. src/os/exec/exec_test.go

    		cmd.Process.Kill()
    	}()
    
    	go func() {
    		defer wg.Done()
    		// Send the wrong string, so that the child fails even
    		// if the other goroutine doesn't manage to kill it first.
    		// This test is to check that the race detector does not
    		// falsely report an error, so it doesn't matter how the
    		// child process fails.
    		io.Copy(stdin, strings.NewReader("unexpected string"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top