Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 204 for Child (0.33 sec)

  1. src/syscall/exec_linux_test.go

    	childTimeNS := string(out)
    	if childTimeNS == parentTimeNS {
    		t.Fatalf("expected child time namespace to be different from parent time namespace: %s", parentTimeNS)
    	}
    }
    
    func testPidFD(t *testing.T, userns bool) error {
    	testenv.MustHaveExec(t)
    
    	if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" {
    		// Child: wait for a signal.
    		time.Sleep(time.Hour)
    	}
    
    	exe, err := os.Executable()
    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. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

            XmlNode result = XmlNode.merge(childConfig, parentConfig);
            XmlNode items = result.getChild("items");
    
            assertEquals(1, items.getChildren().size());
    
            XmlNode item = items.getChildren().get(0);
            assertEquals("three", item.getValue());
            assertEquals("child", item.getInputLocation());
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/impl/DefaultDeleter.java

                }
                if (current.isDirectory()) {
                    File[] children = current.listFiles();
                    if (children != null) {
                        for (File child : children) {
                            stack.push(child);
                        }
                    }
                }
            }
            return paths;
        }
    
        private enum Handling {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:10:06 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            def container = Mock(ProjectState)
            _ * container.projectPath >> (parent == null ? Path.ROOT : parent.projectPath.child(name))
            _ * container.identityPath >> (parent == null ? build.identityPath : build.identityPath.append(parent.projectPath).child(name))
    
            def descriptor = Mock(ProjectDescriptor) {
                getName() >> name
                getProjectDir() >> new File("project")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFileCollectionFactory.java

                    ((FileCollectionInternal) item).describeContents(formatter);
                } else if (item instanceof ArrayList) {
                    for (Object child : (List) item) {
                        appendItem(formatter, child);
                    }
                } else {
                    formatter.node(item + " (class: " + item.getClass().getName() + ")");
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 18:57:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/DefaultBuildOperationRunner.java

            );
        }
    
        private static void assertParentRunning(String message, BuildOperationDescriptor child, @Nullable BuildOperationState parent) {
            if (parent != null && !parent.isRunning()) {
                String parentName = parent.getDescription().getDisplayName();
                throw new IllegalStateException(String.format(message, child.getDisplayName(), parentName));
            }
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:33:49 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

              minIndex = i;
            }
          }
          return minIndex;
        }
    
        /** Returns the minimum child or {@code -1} if no child exists. */
        int findMinChild(int index) {
          return findMin(getLeftChildIndex(index), 2);
        }
    
        /** Returns the minimum grand child or -1 if no grand child exists. */
        int findMinGrandChild(int index) {
          int leftChildIndex = getLeftChildIndex(index);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (1)
  8. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

              minIndex = i;
            }
          }
          return minIndex;
        }
    
        /** Returns the minimum child or {@code -1} if no child exists. */
        int findMinChild(int index) {
          return findMin(getLeftChildIndex(index), 2);
        }
    
        /** Returns the minimum grand child or -1 if no grand child exists. */
        int findMinGrandChild(int index) {
          int leftChildIndex = getLeftChildIndex(index);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. src/os/exec/exec.go

    	// of unexpected delay in Wait: a child process that fails to exit after the
    	// associated Context is canceled, and a child process that exits but leaves
    	// its I/O pipes unclosed.
    	//
    	// The WaitDelay timer starts when either the associated Context is done or a
    	// call to Wait observes that the child process has exited, whichever occurs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

            }
        }
    
        private void reportSkipped(TestIdentifier testIdentifier) {
            currentTestPlan.getChildren(testIdentifier).stream()
                .filter(child -> !wasStarted(child))
                .forEach(this::executionSkipped);
            if (testIdentifier.isTest()) {
                resultProcessor.completed(getId(testIdentifier), completeEvent(SKIPPED));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top