Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 356 for captures (0.2 sec)

  1. src/runtime/metrics/sample.go

    // license that can be found in the LICENSE file.
    
    package metrics
    
    import (
    	_ "runtime" // depends on the runtime via a linkname'd function
    	"unsafe"
    )
    
    // Sample captures a single metric sample.
    type Sample struct {
    	// Name is the name of the metric sampled.
    	//
    	// It must correspond to a name in one of the metric descriptions
    	// returned by All.
    	Name string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/types/nodename.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package types
    
    // NodeName is a type that holds a api.Node's Name identifier.
    // Being a type captures intent and helps make sure that the node name
    // is not confused with similar concepts (the hostname, the cloud provider id,
    // the cloud provider name etc)
    //
    // To clarify the various types:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2K bytes
    - Viewed (0)
  3. hack/verify-e2e-test-ownership.sh

            text: \$text[\$i],
            # unused, but if we ever wanted to have policies based on other tags...
            # tags: \$text[\$i] | [match("(\\\[[^\\\]]+\\\])"; "g").string],
            line: \$code[\$i] | "\(.FileName):\(.LineNumber)"
          }] + [{
            sig: ((\$leafText | match("\\\[(sig-[^\\\]]+)\\\]") | .captures[0].string) // "unknown"),
            text: \$leafText,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.h

    #include "mlir/IR/Block.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h"
    
    namespace mlir::TF {
    
    // Cluster structure captures all the operations that are assigned to same
    // device and can form a legal strict cluster.
    // Ops must follow same ordering in their parent block. We rely on this
    // assumption to perform analysis.
    struct Cluster {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 22:33:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/SerializedLambdaParametersCheckingCodec.kt

                "serialize",
                // TODO: maybe introduce a separate section for the lambda serialization contract
                DocumentationSection.RequirementsDisallowedTypes
            ) {
                text(" a lambda that captures or accepts a parameter of type ")
                reference(baseType)
            }
        }
    
        private
        val unsupportedTypes: Map<Type, KClass<*>> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. common/config/.golangci-format.yml

      build-tags:
      - integ
      - integfuzz
    linters:
      disable-all: true
      enable:
      - goimports
      - gofumpt
      - gci
      fast: false
    linters-settings:
      gci:
        sections:
          - standard # Captures all standard packages if they do not match another section.
          - default # Contains all imports that could not be matched to another section type.
          - prefix(istio.io/) # Groups all imports with the specified Prefix.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 03:02:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. cmd/object-api-common.go

    package cmd
    
    import (
    	"sync"
    
    	"github.com/dustin/go-humanize"
    )
    
    const (
    	// Block size used for all internal operations version 1.
    
    	// TLDR..
    	// Not used anymore xl.meta captures the right blockSize
    	// so blockSizeV2 should be used for all future purposes.
    	// this value is kept here to calculate the max API
    	// requests based on RAM size for existing content.
    	blockSizeV1 = 10 * humanize.MiByte
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/process/internal/CancellationBuildOperationIntegrationTest.groovy

        BuildOperationsFixture operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor)
        @UnsupportedWithConfigurationCache(because = "captures worker threads in shared state")
        def "task operations are closed even when interrupting the execution workers"() {
            server.start()
            executer.withStackTraceChecksDisabled()
            def parallelTaskCount = 5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:46:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JavaToolchainBuildOperationsFixture.groovy

    import org.gradle.internal.operations.BuildOperationType
    import org.gradle.internal.operations.trace.BuildOperationRecord
    import org.gradle.jvm.toolchain.internal.operations.JavaToolchainUsageProgressDetails
    
    /**
     * Captures build operations and allows to make assertions about events related to Java Toolchains.
     * <p>
     * When using this fixture make sure to first call {@link JavaToolchainBuildOperationsFixture#captureBuildOperations captureBuildOperations}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/saved_model/saved_model.h

      llvm::ArrayRef<llvm::StringRef> output_names;
      llvm::ArrayRef<
          std::pair<tensorflow::DataType, tensorflow::PartialTensorShape>>
          output_specs;
    
      // The following are metadata for bound_inputs, ie. captures.
      llvm::ArrayRef<mlir::Operation*> bound_inputs;
    };
    
    // Apply `map_fn` on every exported function in the module with the
    // corresponding signature metadata populated in TFRTSavedModelSignatureInfo for
    // the function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 17:42:41 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top