Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for checkMod (0.14 sec)

  1. cmd/metrics-v2.go

    			},
    			{
    				Description: MetricDescription{
    					Namespace: nodeMetricNamespace,
    					Subsystem: ilmSubsystem,
    					Name:      "versions_scanned",
    					Help:      "Total number of object versions checked for ilm actions since server uptime",
    					Type:      counterMetric,
    				},
    				Value: float64(globalScannerMetrics.lifetime(scannerMetricILM)),
    			},
    		}
    		for i := range globalScannerMetrics.actions {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        This pass checks that the IR has valid input to TPU TF/XLA bridge.
        It checks the relations of multiple ops. Properties of single ops are
        checked by the 'verify' method of ops.
      }];
    
      let constructor = "TFTPU::CreateTPUValidateInputsPass()";
    }
    
    def ClusterConstantSinkingPass : Pass<"tf-device-constant-sinking", "mlir::func::FuncOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

                Maven required to use the resulting plugin.<br>
                In Maven 2, this was also specifying the minimum version of Maven required to build a
                project, but this usage is <b>deprecated</b> in Maven 3 and not checked any more: use
                the <a href="https://maven.apache.org/enforcer/enforcer-rules/requireMavenVersion.html">Maven Enforcer Plugin's
                {@code requireMavenVersion} rule</a> instead.
                ]]>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ClosingFuture.java

                   * RuntimeException and IOException because `closeable` has type `Closeable`—except
                   * that we have to account for sneaky checked exception.
                   */
                  restoreInterruptIfIsInterruptedException(e);
                  logger.get().log(WARNING, "thrown by close()", e);
                }
              });
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    }
    
    // runtimeHandlerSupportsRecursiveReadOnlyMounts checks whether the runtime handler supports recursive read-only mounts.
    // The kubelet feature gate is not checked here.
    func runtimeHandlerSupportsRecursiveReadOnlyMounts(runtimeHandlerName string, runtimeHandlers []kubecontainer.RuntimeHandler) bool {
    	if len(runtimeHandlers) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            (kernel_input_channels != 1)) {
          return rewriter.notifyMatchFailure(
              conv_op, "Not a supported detphwise transposed convolution");
        }
    
        // This needs to be checked because the TFLite runtime generated incorrect
        // results for depthwise transpose convolutions with non-1 channel
        // multiplier.
        if ((kernel_output_channels / feature_group_count) != 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  7. src/net/http/server.go

    	// request body before starting to write a response.
    	fullDuplex bool
    
    	// requestBodyLimitHit is set by requestTooLarge when
    	// maxBytesReader hits its max size. It is checked in
    	// WriteHeader, to make sure we don't consume the
    	// remaining request body to try to advance to the next HTTP
    	// request. Instead, when this is set, we stop reading
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    			if rows != nil {
    				var name string
    				// Call Next to test Issue 21117 and check for races.
    				for rows.Next() {
    					// Scan the buffer so it is read and checked for races.
    					rows.Scan(&name)
    				}
    				rows.Close()
    			}
    			// This call will race with the context cancel rollback to complete
    			// if the rollback itself isn't guarded.
    			tx.Rollback()
    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. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    scalar, all sparse indices are set to this single value.
    
    Indices should be sorted in lexicographic order, and indices must not
    contain any repeats. If `validate_indices` is true, these properties
    are checked during execution.
      }];
    
      let arguments = (ins
        TFL_I32OrI64Tensor:$sparse_indices,
        TFL_I32OrI64Tensor:$output_shape,
        TFL_TensorOf<[I32, I64, I8, QI8, UI8, QUI8, TFL_Quint8, F32]>:$sparse_values,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //
    // When 'go get' checks out or updates a git repository, it now also
    // updates submodules.
    //
    // Vendor directories do not affect the placement of new repositories
    // being checked out for the first time by 'go get': those are always
    // placed in the main GOPATH, never in a vendor subtree.
    //
    // See https://golang.org/s/go15vendor for details.
    //
    // # Module proxy protocol
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top