Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 818 for a_child (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

        def "does not configure all projects when excluded task path is not qualified and is exact match for task in default project"() {
            createDirs("a", "a/child", "b", "b/child", "c")
            settingsFile << "include 'a', 'a:child', 'b', 'b:child', 'c'"
            file('a').mkdirs()
            file('b').mkdirs()
            buildFile << """
    allprojects {
        task one
        task two
        task three
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/net/http/routing_tree.go

    		panic("non-nil leaf fields")
    	}
    	n.pattern = p
    	n.handler = h
    }
    
    // addChild adds a child node with the given key to n
    // if one does not exist, and returns the child.
    func (n *routingNode) addChild(key string) *routingNode {
    	if key == "" {
    		if n.emptyChild == nil {
    			n.emptyChild = &routingNode{}
    		}
    		return n.emptyChild
    	}
    	if c := n.findChild(key); c != nil {
    		return c
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

            for (ClassNode child : classNode.getChildren()) {
                writeLibraryAccessorClass(child, deprecated);
                writeLibrarySubClasses(child, deprecated);
            }
        }
    
        private void writeVersionSubClasses(ClassNode classNode) throws IOException {
            for (ClassNode child : classNode.getChildren()) {
                writeVersionAccessorClass(child);
                writeVersionSubClasses(child);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporterSpec.groovy

            }
    
            void hasChild(String name, Closure<?> spec) {
                def child = actual.children.find { it.name == name }
                assert child != null: "Unable to find child named $name. Known children to ${actual.name} = ${actual.children.name}"
                checkedChildren << child
                verify(child, spec)
            }
    
            void noMoreChildren() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ProcessFixture.groovy

                // this script is tested on Linux and MacOSX
                def killScript = '''
    killtree() {
        local _pid=$1
        for _child in $(ps -o pid,ppid -ax | awk "{ if ( \\$2 == ${_pid} ) { print \\$1 }}"); do
            killtree ${_child}
        done
        kill -9 ${_pid}
    }
    '''
                killScript += killTree ? "\nkilltree $pid\n" : "\nkill -9 $pid\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/nodes/DefaultSection.java

        public String getDescription() {
            return description;
        }
    
        @Override
        public List<Section> getChildren() {
            return children;
        }
    
        public void addChild(Section child) {
            children.add(child);
        }
    
        @Override
        public String toString() {
            return description;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. utils/tests/models.go

    	Desc      string
    }
    
    type Order struct {
    	gorm.Model
    	Num      string
    	Coupon   *Coupon
    	CouponID string
    }
    
    type Parent struct {
    	gorm.Model
    	FavChildID uint
    	FavChild   *Child
    	Children   []*Child
    }
    
    type Child struct {
    	gorm.Model
    	Name     string
    	ParentID *uint
    	Parent   *Parent
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:36:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top