Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for afterward (0.14 sec)

  1. util/gradle_integration_tests.sh

    # TODO(cpovirk): Find a better way to give them that information.
    cp pom.xml "${GRADLE_TEMP}"
    
    for version in 5.6.4 7.0.2; do
      # Enter a subshell so that we return to the current directory afterward.
      (
        cp -r integration-tests "${GRADLE_TEMP}/${version}"
        cd "${GRADLE_TEMP}/${version}/gradle"
        ./gradlew wrapper --gradle-version="${version}"
        ./gradlew testClasspath
      )
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/showjoincommand.go

    		As a safeguard, uploaded-certs will be deleted in two hours; If necessary, you can use
    		"kubeadm init phase upload-certs --upload-certs" to reload certs afterward.
    
    		{{else -}}
    		You can now join any number of control-plane nodes by copying certificate authorities
    		and service account keys on each node and then running the following as root:
    
    		  {{.joinControlPlaneCommand}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/addmod.go

    //
    // Usage:
    //
    //	go run addmod.go path@version...
    //
    // It should only be used for very small modules - we do not want to check
    // very large files into testdata/mod.
    //
    // It is acceptable to edit the archive afterward to remove or shorten files.
    // See mod/README for more information.
    package main
    
    import (
    	"bytes"
    	"cmd/go/internal/str"
    	"flag"
    	"fmt"
    	"internal/txtar"
    	"io/fs"
    	"log"
    	"os"
    	"os/exec"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      BasicComponentConfigurator.
    
    * Other
    
      We may need to define a new lifecycle/phase to contextualize a mojo right
      before it's used, and reset it's state afterward. Up to now, the approach
      of most plexus components has been to avoid instance state like the plague.
      With the current parameter passing model of mojos, this will not be possible,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 30 15:20:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginAdapter.java

     * Then the adapter is stored on the {@link org.gradle.internal.enterprise.core.GradleEnterprisePluginManager}.
     * <p>
     * There is some custom logic to store the adapter from the manager in the configuration cache and restore it afterward.
     * The pluginServices need to be recreated when loading from the configuration cache.
     * <p>
     * This must not be a service, since the configuration cache will not serialize services with state to the configuration cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/cycle_state.go

    // It is the recommended pattern used in all in-tree plugins - plugin-specific state is written once in PreFilter/PreScore and afterward read many times in Filter/Score.
    type CycleState struct {
    	// storage is keyed with StateKey, and valued with StateData.
    	storage sync.Map
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 06:48:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. README.md

    You can download the release source from our [download page][maven-download].
    
    Contributing
    ------------
    
    If you are interested in the development of Maven, please consult the
    documentation first and afterward you are welcome to join the developers
    mailing list to ask questions or discuss new ideas/features/bugs etc.
    
    Take a look into the [contribution guidelines](CONTRIBUTING.md).
    
    License
    -------
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

                    // NB: this intentionally swallows the exception, hence fail-safe.
                    // Skipping subtree doesn't make any sense, since this is not a directory.
                    // Skipping sibling may drop valid file paths afterward, so we just continue.
                    return FileVisitResult.CONTINUE
                }
            }
        )
        return result
    }
    
    internal fun Path.hasSuitableExtensionToAnalyse(): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. src/internal/xcoff/ar.go

    	// Read members
    	for {
    		// Read Member Header
    		// The member header is normally 2 bytes larger. But it's easier
    		// to read the name if the header is read without _ar_nam.
    		// However, AIAFMAG must be read afterward.
    		if _, err := sr.Seek(off, io.SeekStart); err != nil {
    			return nil, err
    		}
    
    		var mhdr bigarMemberHeader
    		if err := binary.Read(sr, binary.BigEndian, &mhdr); err != nil {
    			return nil, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:51 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/cmd/distpack/archive.go

    func (i fileInfo) String() string {
    	return fs.FormatFileInfo(i)
    }
    
    // NewArchive returns a new Archive containing all the files in the directory dir.
    // The archive can be amended afterward using methods like Add and Filter.
    func NewArchive(dir string) (*Archive, error) {
    	a := new(Archive)
    	err := fs.WalkDir(os.DirFS(dir), ".", func(name string, d fs.DirEntry, err error) error {
    		if err != nil {
    			return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 17:37:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top