Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 334 for Child (0.04 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/GroupingProgressLogEventGeneratorTest.groovy

            then:
            1 * downstreamListener.onOutput({ it.toString() == "[WARN] [category] Child task log message" })
            then:
            0 * downstreamListener._
        }
    
        def "groups logs for child operations of tasks when progress operations interleaved"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 23.9K 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. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/ProtocolToModelAdapterTest.groovy

        def "can have path to root view"() {
            TestProtocolProjectTree parent = Mock()
            TestProtocolProjectTree child = Mock()
            parent.child >> child
            child.parent >> parent
    
            expect:
            def model = adapter.adapt(TestProjectTree.class, parent)
            model.child.parent.is(model)
        }
    
        def "does not reuse views for different objects that are equal"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    	var present bool
    	var child String
    	if !s.ReadOptionalASN1(&child, &present, tag) {
    		return false
    	}
    	if outPresent != nil {
    		*outPresent = present
    	}
    	if present {
    		var oct String
    		if !child.ReadASN1(&oct, asn1.OCTET_STRING) || !child.Empty() {
    			return false
    		}
    		*out = oct
    	} else {
    		*out = nil
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiIntegrationTest.groovy

            settingsFile << "include 'child'"
            buildFile << """
            wrapper { distributionUrl = '${otherVersion.binDistribution.toURI()}' }
            allprojects {
                task check { doLast { assert gradle.gradleVersion == '${otherVersion.version.version}' } }
            }
            """
            projectDir.file('child').createDir()
            otherVersion.binDistribution.makeReadable()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelMapIntegrationTest.groovy

                @Managed
                interface Parent {
                    String getName();
                    void setName(String string)
    
                    ModelMap<Child> getChildren();
                }
    
                @Managed
                interface Child extends Named {
                    ModelSet<GrandChild> getChildren();
                }
    
                @Managed
                interface GrandChild {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top