Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,124 for reprocess (0.2 sec)

  1. maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurationValuePreprocessor.java

         * unmarshalled into that type. The preprocessor is not required to perform any type conversion but should rather
         * filter out incompatible values from its result.
         *
         * @param value The configuration value to preprocess, must not be {@code null}.
         * @param type The target type of the value, may be {@code null}.
         * @return The processed configuration value or {@code null} if none.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/preprocess_op.mlir

    // RUN: tf-quant-opt %s -split-input-file -quant-preprocess-op | FileCheck %s
    
    module {
      // For UniformQuantized depthwise convolution, tensor shape should have
      // transformed from [H,W,C,M] to [H,W,1,CxM],
      func.func @depthwise_conv(%arg0: tensor<1x3x4x3xf32>) -> (tensor<*xf32>) {
        %cst_0 = "tf.Const"() {value = dense<0.000000e+00> : tensor<6xf32>} : () -> tensor<6xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. src/syscall/fs_js.go

    	return err
    }
    
    func Getcwd(buf []byte) (n int, err error) {
    	defer recoverErr(&err)
    	cwd := jsProcess.Call("cwd").String()
    	n = copy(buf, cwd)
    	return
    }
    
    func Chdir(path string) (err error) {
    	if err := checkPath(path); err != nil {
    		return err
    	}
    	defer recoverErr(&err)
    	jsProcess.Call("chdir", path)
    	return
    }
    
    func Fchdir(fd int) error {
    	f, err := fdToFile(fd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrExecuter.java

                }
            }
    
            public final AntlrResult process(AntlrSpec spec) {
                try {
                    return doProcess(spec);
                } catch (ClassNotFoundException e) {
                    //this shouldn't happen if you call check availability with #available first
                    throw new GradleException("Cannot process antlr sources", e);
                }
            }
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. cmd/metrics-v3-system-process.go

    	processIOReadBytesMD              = NewCounterMD(processIOReadBytes, "Total bytes read by the process from the underlying storage system, /proc/[pid]/io read_bytes")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 16:07:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/quantize_preprocess.h

    // Default MLIR dump file prefix for TensorFlow quantization passes.
    inline constexpr absl::string_view kDefaultTfQuantMlirDumpFilePrefix =
        "tf_quant";
    
    // Preprocesses the `module_op` for quantization. The preprocess steps include
    // freezing the variables in the graph into constants. `is_inliner_run`
    // determines whether the `InlinerPass` should be run after unfreezing.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/runtime/runtime-lldb_test.go

      if main_bp:
        print "Created breakpoint"
      process = target.LaunchSimple(None, None, os.getcwd())
      if process:
        print "Process launched"
        listener = debugger.GetListener()
        process.broadcaster.AddListener(listener, lldb.SBProcess.eBroadcastBitStateChanged)
        while True:
          event = lldb.SBEvent()
          if listener.WaitForEvent(TIMEOUT_SECS, event):
            if lldb.SBProcess.GetRestartedFromEvent(event):
              continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/java-sourcesets-process-resources.png

    java-sourcesets-process-resources.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 36K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    	} else if dswp.podHasBeenSeenOnce(uniquePodName) {
    		// For the Pod which has been processed at least once, even though some volumes
    		// may not have been reprocessed successfully this round, we still mark it as processed to avoid
    		// processing it at a very high frequency. The pod will be reprocessed when volume manager calls
    		// ReprocessPod() which is triggered by SyncPod.
    		dswp.markPodProcessed(uniquePodName)
    	}
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/prepare_quantize_drq_per_channel.mlir

    // RUN: tf-quant-opt %s -split-input-file -quant-preprocess-op -quant-prepare-quantize-drq='enable-per-channel-quantization=true' | 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: Mon Oct 30 06:52:55 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top