Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,231 for child1 (0.1 sec)

  1. 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)
  2. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls3-child.xml

      <artifactId>inheritance</artifactId><!-- same as directory name -->
      <name>Model urls inheritance test child</name>
    
      <scm child.scm.connection.inherit.append.path="true"
           child.scm.developerConnection.inherit.append.path="true"
           child.scm.url.inherit.append.path="true" />
      <distributionManagement>
        <site child.site.url.inherit.append.path="true" />
      </distributionManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-directory-urls-child.xml

      <parent>
        <groupId>inheritance</groupId>
        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>child-artifact-id</artifactId>
      <name>Model urls inheritance test child</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/inheritance/empty-urls-child.xml

      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>inheritance</groupId>
        <artifactId>empty</artifactId>
        <version>1</version>
      </parent>
      <artifactId>child</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/poms/inheritance/flat-urls-child.xml

        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>inheritance</artifactId><!-- same as directory name -->
      <name>Model urls inheritance test child</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls2-child.xml

      <name>Model urls inheritance test child</name>
    
      <scm>
        <url>https://domain.org/override</url><!-- check that this won't impact child.site.url.inherit.append.path attribute inheritance -->
      </scm>
      <distributionManagement>
        <site><!-- overriding 1 element will reset all elements, but not child.site.url.inherit.append.path attribute -->
          <name>reset</name>
        </site>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  7. maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-child.xml

        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>child-artifact-id</artifactId>
      <name>Model inheritance test parent: module directory != artifactId</name>
      <description>
        artifactId == "child-artifact-id"
        but expect path on SCM and site == "child"
        feature: support "project.directory" property, ressembling future model addition of "directory" element along "artifactId"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/scope_test.cc

      Scope root = Scope::NewRootScope();
      Scope child = root.NewSubScope("child");
      EXPECT_EQ(child.GetUniqueNameForOp("add"), "child/add");
      EXPECT_EQ(child.GetUniqueNameForOp("add"), "child/add_1");
      EXPECT_EQ(child.GetUniqueNameForOp("mul"), "child/mul");
    
      Scope child_1 = root.NewSubScope("child");
      EXPECT_EQ(child_1.GetUniqueNameForOp("add"), "child_1/add");
      EXPECT_EQ(child_1.GetUniqueNameForOp("add"), "child_1/add_1");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 08:17:37 UTC 2019
    - 5.5K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls-child.xml

        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>inheritance</artifactId><!-- same as directory name -->
      <name>Model urls inheritance test child</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-artifactId-urls-child.xml

      <parent>
        <groupId>inheritance</groupId>
        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>child-artifact-id</artifactId>
      <name>Model urls inheritance test child</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
Back to top