Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 237 for Prepare (0.12 sec)

  1. prepare-svg.sh

    Hervé Boutemy <******@****.***> 1711297148 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 24 18:29:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/prepare-tf-with-allowing-bf16-and-f16-type-legalization.mlir

    // RUN: tf-opt -tfl-prepare-tf=allow-bf16-and-f16-type-legalization=true %s | FileCheck %s
    
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
    
    // CHECK-LABEL: conv_2d_bf16
    func.func @conv_2d_bf16(%arg0 : tensor<256x32x32x3xbf16>, %arg1 : tensor<3x3x3x16xbf16>) -> tensor<256x8x7x16xbf16> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 26 23:53:32 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. prepare_stmt.go

    		db.Mux.Unlock()
    		// wait for other goroutines prepared
    		<-stmt.prepared
    		if stmt.prepareErr != nil {
    			return Stmt{}, stmt.prepareErr
    		}
    
    		return *stmt, nil
    	}
    
    	// cache preparing stmt first
    	cacheStmt := Stmt{Transaction: isTransaction, prepared: make(chan struct{})}
    	db.Stmts[query] = &cacheStmt
    	db.Mux.Unlock()
    
    	// prepare completed
    	defer close(cacheStmt.prepared)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 28 08:47:39 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/BUILD

        size_override = {
            "optimize.mlir": "medium",
            "prepare-tf.mlir": "medium",
            "prepare-tf-fake-quant.mlir": "medium",
            "prepare-tf-fake-quant-4bit.mlir": "medium",
            "raise-custom-ops.mlir": "medium",
        },
        tags_override = {
            "legalize-tf.mlir": ["no_rocm"],
            "optimize.mlir": ["no_rocm"],
            "prepare-tf.mlir": ["no_rocm"],
            "const-fold.mlir": ["no_mac_arm64"],
        },
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/BadPomFileResolveIntegrationTest.groovy

                    maven { url "${mavenRepo().uri}" }
                }
                configurations { compile }
                dependencies {
                    compile "group:artifact:1.0"
                }
            """
            resolve.prepare()
    
            expect:
            succeeds ":checkDeps"
            resolve.expectGraph {
                root(":", ":test:") {
                    module("group:artifact:1.0")
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:31:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/FlatDirJvmLibraryArtifactResolutionIntegrationTest.groovy

            fixture.prepare()
    
            expect:
            succeeds("verify")
        }
    
        def "resolve partially missing artifacts"() {
            file("repo/some-artifact-1.0.jar").createFile()
            file("repo/some-artifact-1.0-sources.jar").createFile()
    
            fixture.expectSourceArtifact("sources")
                    .prepare()
    
            expect:
            succeeds("verify")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top