Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 399 for Child (0.05 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-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            then:
            1 * strategy.extract(_) >> { ModelSchemaExtractionContext extractionContext ->
                assert extractionContext.type == ModelType.of(CustomThing)
                extractionContext.child(ModelType.of(UnmanagedThing), "child")
                extractionContext.found(new ScalarValueSchema<CustomThing>(extractionContext.type))
            }
            1 * strategy.extract(_) >> { ModelSchemaExtractionContext extractionContext ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured.go

    	items, ok := field.([]interface{})
    	if !ok {
    		return fmt.Errorf("content is not a list: %T", field)
    	}
    	for _, item := range items {
    		child, ok := item.(map[string]interface{})
    		if !ok {
    			return fmt.Errorf("items member is not an object: %T", child)
    		}
    		if err := fn(&Unstructured{Object: child}); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DistributionFactoryTest.groovy

            def zipFile = createZip { }
            tmpDir.file('settings.gradle') << 'include "child"'
            def zipFileUri = zipFile.toURI().toASCIIString()
            tmpDir.file('gradle/wrapper/gradle-wrapper.properties') << "distributionUrl=$zipFileUri"
    
            expect:
            factory.getDefaultDistribution(tmpDir.testDirectory.createDir("child"), true).displayName == "Gradle distribution '$zipFileUri'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top