Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 399 for Child (0.05 sec)

  1. src/net/http/fcgi/fcgi_test.go

    },
    	nil)
    
    var cleanUpTests = []struct {
    	input []byte
    	err   error
    }{
    	// confirm that child.handleRecord closes req.pw after aborting req
    	{
    		bytes.Join([][]byte{
    			streamBeginTypeStdin,
    			makeRecord(typeAbortRequest, 1, nil),
    		},
    			nil),
    		ErrRequestAborted,
    	},
    	// confirm that child.serve closes all pipes after error reading record
    	{
    		bytes.Join([][]byte{
    			streamBeginTypeStdin,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

            given:
            createDirs("child")
            settingsFile << """
    include('child')
    """
            buildFile << """
    def artifactType = Attribute.of('artifactType', String)
    
    apply plugin: 'java-library'
    
    allprojects {
        repositories {
            maven { url "${mavenRepo.uri}" }
        }
    }
    
    project(':child') {
        configurations {
            runtimeOnly {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarPluginTest.groovy

        }
    
        def "depends on earlib config"() {
            when:
            project.pluginManager.apply(EarPlugin)
    
            and:
            def childProject = TestUtil.createChildProject(project, 'child')
            childProject.pluginManager.apply(JavaPlugin)
    
            and:
            project.dependencies {
                earlib project(path: childProject.path, configuration: 'archives')
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top