Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 642 for Prepare (0.33 sec)

  1. pkg/kubelet/cm/dra/types.go

    	// This will ensure that all claims are unprepared even if pods get deleted unexpectedly.
    	Start(activePods ActivePodsFunc, sourcesReady config.SourcesReady) error
    
    	// PrepareResources prepares resources for a pod.
    	// It communicates with the DRA resource plugin to prepare resources.
    	PrepareResources(pod *v1.Pod) error
    
    	// UnprepareResources calls NodeUnprepareResource GRPC from DRA plugin to unprepare pod resources
    	UnprepareResources(pod *v1.Pod) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/groovy/GroovyJavaLibraryInteractionIntegrationTest.groovy

            given:
            resolve = new ResolveTestFixture(buildFile, "compileClasspath")
            resolve.prepare()
            if (compileClasspathPackaging) {
                propertiesFile << """
                    systemProp.org.gradle.java.compile-classpath-packaging=true
                """.trim()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. src/database/sql/driver/driver.go

    // by multiple goroutines.
    //
    // Conn is assumed to be stateful.
    type Conn interface {
    	// Prepare returns a prepared statement, bound to this connection.
    	Prepare(query string) (Stmt, error)
    
    	// Close invalidates and potentially stops any current
    	// prepared statements and transactions, marking this
    	// connection as no longer in use.
    	//
    	// Because the sql package maintains a free pool of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

                    }
                    dependencies {
                        'default'('com.acme.external:external:1.0')
                    }
                }
            '''
            resolve.prepare {
                config('_compileFreeDebug', 'checkDebug')
                config('_compileFreeRelease', 'checkRelease')
            }
    
            file('includedBuild/build.gradle') << """
    
                group = 'com.acme.external'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultConfigurationTimeBarrier.java

     */
    
    package org.gradle.api.internal.provider;
    
    public class DefaultConfigurationTimeBarrier implements ConfigurationTimeBarrier {
    
        private volatile boolean atConfigurationTime = false;
    
        public void prepare() {
            atConfigurationTime = true;
        }
    
        public void cross() {
            if (!atConfigurationTime) {
                throw new IllegalStateException("Configuration time barrier can only be crossed once.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/passes.td

                 "Whether the source graph is a QDQ model intended for conversion only.">,
      ];
    }
    
    def PrepareDynamicRangeQuantizePass : Pass<"tfl-prepare-quantize-dynamic-range", "mlir::func::FuncOp"> {
      let summary = "Prepare TFL dialect for dynamic range quantization.";
      let constructor = "CreatePrepareDynamicRangeQuantizePass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/toolchain/ToolchainFactory.java

     * under the License.
     */
    package org.apache.maven.toolchain;
    
    import org.apache.maven.toolchain.model.ToolchainModel;
    
    /**
     * Internal toolchain factory, to prepare toolchains instances.
     *
     * @since 2.0.9
     */
    public interface ToolchainFactory {
        /**
         * Create instance of toolchain.
         **/
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_drq.mlir

    // RUN: tf-quant-opt %s -split-input-file -quant-lift-quantizable-spots-as-functions -quant-prepare-quantize-drq -quant-quantize='weight-quantization=true' -verify-each=false | FileCheck %s
    
    // -----
    
    module {
      func.func @matmul(%arg0: tensor<1x2x2x3xf32>) -> (tensor<*xf32>) {
        %cst_0 = "tf.Const"() {value = dense<0.000000e+00> : tensor<2x1024xf32>} : () -> tensor<2x1024xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:32:28 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. cluster/gce/upgrade.sh

          exit 1
        fi
      fi
    fi
    
    print-node-version-info "Pre-Upgrade"
    
    if [[ "${local_binaries}" == "false" ]]; then
      set_binary_version "${1}"
    fi
    
    prepare-upgrade
    
    if [[ "${node_prereqs}" == "true" ]]; then
      prepare-node-upgrade
      exit 0
    fi
    
    if [[ "${master_upgrade}" == "true" ]]; then
      upgrade-master
    fi
    
    if [[ "${node_upgrade}" == "true" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/prepare_quantize/prepare_quantize_int4.mlir

    // RUN: stablehlo-quant-opt %s -split-input-file -stablehlo-prepare-quantize=bit-width=4 -verify-diagnostics | FileCheck %s
    
    // CHECK-LABEL: func @dot_int4
    // CHECK-SAME: (%[[ARG_0:.*]]: tensor<?x3xf32>) -> tensor<?x2xf32>
    func.func @dot_int4(%arg0: tensor<?x3xf32>) -> tensor<?x2xf32> {
      // CHECK: %[[cst:.*]] = stablehlo.constant
      // CHECK: %[[q1:.*]] = "quantfork.qcast"(%[[cst]])
      // CHECK-SAME: quant.uniform<i8:f32, 0.0040316890267764818:127>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 22:40:14 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top