Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for submodule2 (0.31 sec)

  1. okhttp-hpacktests/src/test/java/okhttp3/internal/http2/HpackRoundTripTest.kt

      @ParameterizedTest
      @ArgumentsSource(StoriesTestProvider::class)
      fun testRoundTrip(story: Story) {
        assumeFalse(
          story === Story.MISSING,
          "Test stories missing, checkout git submodule",
        )
    
        val newCases = mutableListOf<Case>()
        for (case in story.cases) {
          hpackWriter.writeHeaders(case.headersList)
          newCases += case.copy(wire = bytesOut.readByteString())
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. settings.gradle.kts

      include(":okhttp-android")
      include(":android-test")
      include(":android-test-app")
    }
    
    enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
    
    /**
     * Avoid a crash in IntelliJ triggered by Android submodules.
     *
     * ```
     * java.lang.AssertionError: Can't find built-in class kotlin.Cloneable
     *   at org.jetbrains.kotlin.builtins.KotlinBuiltIns.getBuiltInClassByFqName(KotlinBuiltIns.java:217)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Apr 14 14:24:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_moved.txt

    env GO111MODULE=on
    [short] skip
    
    # A 'go get' that worked at a previous version should continue to work at that version,
    # even if the package was subsequently moved into a submodule.
    go mod init example.com/foo
    go get example.com/split/subpkg@v1.0.0
    go list -m all
    stdout 'example.com/split v1.0.0'
    
    # A 'go get' that simultaneously upgrades away conflicting package definitions is not ambiguous.
    go get example.com/split/subpkg@v1.1.0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. hack/update-vendor-licenses.sh

      if [[ -z "$(find "${DEPS_DIR}/${PACKAGE}" -mindepth 1 -maxdepth 1 -type f)" ]]; then
        # and we have at least the same number of submodules as subdirectories...
        if [[ "$(find "${DEPS_DIR}/${PACKAGE}/" -mindepth 1 -maxdepth 1 -type d | wc -l)" -le "$(echo "${modules}" | grep -cE "^${PACKAGE}/")" ]]; then
          echo "Only submodules of ${PACKAGE} are vendored, skipping" >&2
          continue
        fi
      fi
    
      echo "${PACKAGE}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_buildvcs_auto.txt

    exec git add sub.go
    exec git commit -m 'initial state'
    cd ..
    
    exec git init
    exec git config user.name 'Nameless Gopher'
    exec git config user.email '******@****.***'
    exec git submodule add ./sub
    exec git add go.mod example.go
    exec git commit -m 'initial state'
    
    
    # Control case: with a git binary in $PATH,
    # 'go build' on a package in the same git repo
    # succeeds and stamps VCS metadata by default.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

    +--- org.sample:number-utils:1.0 -> project :number-utils
    \--- org.sample:string-utils:1.0
         \--- org.apache.commons:commons-lang3:3.12.0
    ```
    
    == Including an external library as a submodule
    
    The power of this configuration can be demonstrated by adding the external 'commons-lang' build directly to the composite.
    
    ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. docs/em/docs/tutorial/bigger-applications.md

    │   │   ├── items.py     # "items" submodule, e.g. import app.routers.items
    │   │   └── users.py     # "users" submodule, e.g. import app.routers.users
    │   └── internal         # "internal" is a "Python subpackage"
    │       ├── __init__.py  # makes "internal" a "Python subpackage"
    │       └── admin.py     # "admin" submodule, e.g. import app.internal.admin
    ```
    
    ## `APIRouter`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/vcs/vcs_test.go

    		{
    			"hub.jazz.net/git/user1/pkgname",
    			&RepoRoot{
    				VCS:  vcsGit,
    				Repo: "https://hub.jazz.net/git/user1/pkgname",
    			},
    		},
    		{
    			"hub.jazz.net/git/user1/pkgname/submodule/submodule/submodule",
    			&RepoRoot{
    				VCS:  vcsGit,
    				Repo: "https://hub.jazz.net/git/user1/pkgname",
    			},
    		},
    		{
    			"hub.jazz.net",
    			nil,
    		},
    		{
    			"hubajazz.net",
    			nil,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 17K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/ProjectBuilder.java

         * Builds the projects for the specified POM files and optionally their children.
         *
         * @param pomFiles The POM files to build, must not be {@code null}.
         * @param recursive {@code true} to recursively build submodules referenced by the POM files, {@code false} to
         *            build only the specified POM files.
         * @param request The project builder configuration that provides further parameters, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    	cf, _, _ := checkFiles(files)
    	return cf, cf.Err()
    }
    
    // checkFiles implements CheckFiles and also returns lists of valid files and
    // their sizes, corresponding to cf.Valid. It omits files in submodules, files
    // in vendored packages, symlinked files, and various other unwanted files.
    //
    // The lists returned are used in Create to avoid repeated calls to File.Lstat.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
Back to top