Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 399 for Child (0.48 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/api/pod/warnings.go

    		}
    		if v.CephFS != nil {
    			warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.28, non-functional in v1.31+", fieldPath.Child("spec", "volumes").Index(i).Child("cephfs")))
    		}
    		if v.RBD != nil {
    			warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.28, non-functional in v1.31+", fieldPath.Child("spec", "volumes").Index(i).Child("rbd")))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/cryptobyte/builder.go

    	if b.child == nil {
    		return
    	}
    	b.child.flushChild()
    	child := b.child
    	b.child = nil
    
    	if child.err != nil {
    		b.err = child.err
    		return
    	}
    
    	length := len(child.result) - child.pendingLenLen - child.offset
    
    	if length < 0 {
    		panic("cryptobyte: internal error") // result unexpectedly shrunk
    	}
    
    	if child.pendingIsASN1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/TreeFormatterTest.groovy

            formatter.node("child 1")
            formatter.startChildren()
            formatter.node("child 1.1")
            formatter.node("child 1.2")
            formatter.endChildren()
            formatter.node("child 2")
            formatter.endChildren()
    
            then:
            formatter.toString() == toPlatformLineSeparators("""Some things:
      - child 1:
          - child 1.1
          - child 1.2
      - child 2""")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. pkg/apis/autoscaling/validation/validation.go

    	allErrs = append(allErrs, validateMetricIdentifier(src.Metric, fldPath.Child("metric"))...)
    	allErrs = append(allErrs, validateMetricTarget(src.Target, fldPath.Child("target"))...)
    
    	if src.Target.Value == nil && src.Target.AverageValue == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConfigurationBuildDependenciesIntegrationTest.groovy

                }
                dependencies {
                    compile project(':child')
                    compile files('main-lib.jar') { builtBy lib }
                }
                project(':child') {
                    artifacts {
                        compile file: file('child.jar'), builtBy: jar
                    }
                    dependencies {
                        compile files('child-lib.jar') { builtBy lib }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top