Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 831 for Prepare (0.28 sec)

  1. src/internal/poll/fd_poll_js.go

    	if pd.fd != nil {
    		syscall.StopIO(pd.fd.Sysfd)
    	}
    }
    
    func (pd *pollDesc) prepare(mode int, isFile bool) error {
    	if pd.closing {
    		return errClosing(isFile)
    	}
    	return nil
    }
    
    func (pd *pollDesc) prepareRead(isFile bool) error { return pd.prepare('r', isFile) }
    
    func (pd *pollDesc) prepareWrite(isFile bool) error { return pd.prepare('w', isFile) }
    
    func (pd *pollDesc) wait(mode int, isFile bool) error {
    	if pd.closing {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:12:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

            buildFile << """
    group = 'org.gradle'
    version = '1.0'
    repositories { ivy { url "${ivyRepo.uri}" } }
    configurations { compile }
    dependencies {
        compile "org.gradle:test:1.45"
    }
    """
            resolve.prepare()
    
            when:
            succeeds "checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", "org.gradle:test:1.0") {
                    module("org.gradle:test:1.45") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/DependencyResolveRulesIntegrationTest.groovy

                            it.useVersion('1.3')
                            assert it.target.toString() == 'org.gradle.test:a:1.3'
                        }
                    }
                }
    """
            resolve.prepare("conf")
    
            expect:
            succeeds(":b:checkDeps")
            resolve.expectGraph {
                root(":b", "test:b:") {
                    edge("project :a", "org.gradle.test:a:1.3") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    	# Prepares the machine for serving a control plane
    	kubeadm join phase control-plane-prepare all
    `)
    
    // NewControlPlanePreparePhase creates a kubeadm workflow phase that implements the preparation of the node to serve a control plane
    func NewControlPlanePreparePhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "control-plane-prepare",
    		Short:   "Prepare the machine for serving a control plane",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. docs/releasing.md

        ```
    
    4. Tag the release and push to GitHub.
    
        ```
        git commit -am "Prepare for release $RELEASE_VERSION."
        git tag -a parent-$RELEASE_VERSION -m "Version $RELEASE_VERSION"
        git push && git push --tags
        ```
    
    5. Wait for [GitHub Actions][github_actions] to start the publish job.
    
    6. Prepare for ongoing development and push to GitHub.
    
        ```
        sed -i "" \
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Dec 26 22:07:16 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/AbstractCompositeBuildIntegrationTest.groovy

        protected void execute(BuildTestFile build, String[] tasks, Iterable<String> arguments = []) {
            prepare(arguments)
            succeeds(build, tasks)
            assertSingleBuildOperationsTreeOfType(RunBuildBuildOperationType)
        }
    
        protected void execute(BuildTestFile build, String task, Iterable<String> arguments = []) {
            prepare(arguments)
            succeeds(build, task)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 19 21:32:57 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.h

     public:
      explicit RuntimeFallbackExecutor(int64_t num_threads);
    
      // Prepare() needs to be called once before calling Execute(). It sets up all
      // things necessary to execute the given 'mlir_input' with the fallback to
      // tensorflow.
      void Prepare(llvm::StringRef mlir_input);
    
      // Execute() can be called several times after the call to Prepare() (e.g. for
      // benchmarking).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 14 22:40:40 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    	}
    
    	if prepares := numPrepares(t, db) - prepares0; prepares != 1 {
    		t.Errorf("executed %d Prepare statements; want 1", prepares)
    	}
    }
    
    func TestTxStmtClosedRePrepares(t *testing.T) {
    	db := newTestDB(t, "")
    	defer closeDB(t, db)
    	exec(t, db, "CREATE|t1|name=string,age=int32")
    
    	prepares0 := numPrepares(t, db)
    
    	// db.Prepare increments numPrepares.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/antMigration/importBuild/kotlin/build.xml

        <target name="cleanAll">
            <delete dir="${build.dir}"/>
        </target>
    
        <target name="prepare">
            <tstamp>
                <format property="now" pattern="yyyy-MM-dd hh:mm:ss"/>
            </tstamp>
        </target>
    
        <target name="build" depends="prepare">
            <mkdir dir="${classes.dir}"/>
            <javac srcdir="${src.dir}" destdir="${classes.dir}" debug="true"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 958 bytes
    - Viewed (0)
  10. docker/Dockerfile.distroless

    # prepare a distroless source context to copy files from
    FROM cgr.dev/chainguard/static@sha256:873e9709e2a83acc995ff24e71c100480f9c0368e0d86eaee9c3c7cb8fb5f0e0 as distroless_source
    
    # prepare a base dev to modify file contents
    FROM ubuntu:noble as ubuntu_source
    
    # Modify contents of container
    COPY --from=distroless_source /etc/ /home/etc
    COPY --from=distroless_source /home/nonroot /home/nonroot
    RUN echo istio-proxy:x:1337: >> /home/etc/group
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 828 bytes
    - Viewed (0)
Back to top