Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,008 for Child (0.03 sec)

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

    	r.Flush()
    	return r.w.Close()
    }
    
    type child struct {
    	conn    *conn
    	handler http.Handler
    
    	requests map[uint16]*request // keyed by request ID
    }
    
    func newChild(rwc io.ReadWriteCloser, handler http.Handler) *child {
    	return &child{
    		conn:     newConn(rwc),
    		handler:  handler,
    		requests: make(map[uint16]*request),
    	}
    }
    
    func (c *child) serve() {
    	defer c.conn.Close()
    	defer c.cleanUp()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/net/http/cgi/child.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements CGI from the perspective of a child
    // process.
    
    package cgi
    
    import (
    	"bufio"
    	"crypto/tls"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"net/http"
    	"net/url"
    	"os"
    	"strconv"
    	"strings"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.png

    exploded-war-child-copy-spec-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 126.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.graffle

    exploded-war-child-copy-spec-example.graffle ApplicationVersionco.omnigroup.OmniGraffle7.MacAppStore186.3ColorProfilesdataAA/gAAAAUbWVhcwAABAwAAA+wEBAQcBDQETARkBHwElA+gIDAgwCFAIdAiYCLwI4A+wD+QQGBBMEIAQtBDsESARVB+BIwEmgSoBLYExATTBOEE+BQ0FHAUrBToFSQVYBWcF/B9IH5Qf4CAsIHwgyCEYI+EL+QwSDCoMQwxcDHUMjgynD/DpsOtg7SDu4PCQ8lD0EP/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExExEU8R+UUBhQnFEkUahSLFK0Uzh/cYGxhAGGUYihivGNUY+hkgGUUZaxmRGbcZ3RoEG+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHC/HL/4wNTBsMKQw2zESMUoxgj/E0KzRlNJ402DUTN...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecResolutionTest.groovy

            DefaultCopySpec child = copySpec()
            child.include('child-include')
            child.exclude('child-exclude')
            child.include(childInclude)
            child.exclude(childExclude)
    
            PatternSet patterns = child.buildResolverRelativeToParent(parentSpec.buildRootResolver()).patternSet
    
            then:
            patterns.includes == ['parent-include', 'child-include'] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/VersionHierarchyRootTest.groovy

            ['/my/some/child']                                     | '/my/some'                      | ['/my/some/child']                          | ['/my/other', '/my/other/child']
            ['/my/some/child', '/my/other/child']                  | '/my/some'                      | ['/my/some/child']                          | ['/my/other', '/my/other/child']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. pkg/util/iptree/iptree.go

    	if n.child[0] == nil &&
    		n.child[1] == nil {
    		return
    	}
    	// find the child and merge it
    	var child *node[T]
    	if n.child[0] != nil {
    		child = n.child[0]
    	} else if n.child[1] != nil {
    		child = n.child[1]
    	}
    	n.prefix = child.prefix
    	n.public = child.public
    	n.val = child.val
    	n.child = child.child
    	// remove any references from the deleted node
    	// to avoid memory leak
    	child.child[0] = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  8. pkg/apis/flowcontrol/validation/validation.go

    			allErrs = append(allErrs, field.Invalid(fldPath.Child("priorityLevelConfiguration").Child("name"), spec.PriorityLevelConfiguration.Name, msg))
    		}
    	} else {
    		allErrs = append(allErrs, field.Required(fldPath.Child("priorityLevelConfiguration").Child("name"), "must reference a priority level"))
    	}
    	for i, rule := range spec.Rules {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/plan/ValuedVfsHierarchyTest.groovy

            "some/location/intermediate/child"              | ['intermediate/child': [1]]
            "some/location/intermediate/child/sub1/leaf1"   | ['intermediate/child/sub1/leaf1': [1], 'sub1/leaf1': [4, 3]]
            "some/location/intermediate/child/sub1/leaf2"   | ['intermediate/child/sub1/leaf2': [1], 'sub1/leaf2': [4, 3]]
            "some/location/intermediate/child/sub3/leaf"    | ['sub3/leaf': [4, 3], 'intermediate/child/sub3/leaf': [1]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 17:21:57 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  10. pkg/apis/networking/validation/validation.go

    					allErrs = append(allErrs, field.Invalid(portPath.Child("endPort"), port.Port.IntVal, "must be greater than or equal to `port`"))
    				}
    				for _, msg := range validation.IsValidPortNum(int(*port.EndPort)) {
    					allErrs = append(allErrs, field.Invalid(portPath.Child("endPort"), *port.EndPort, msg))
    				}
    			}
    		} else {
    			if port.EndPort != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top