Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,265 for converts (0.37 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/test_cluster_ops_by_policy.cc

        if (auto result_constraint = results.GetConstraint(op->getResult(0))) {
          // `test.OpA` converts shape constraint to rank constraint.
          if (is_op_a && *result_constraint == ValueConstraint::kShape)
            operands.Insert(op->getOperand(0), ValueConstraint::kRank);
    
          // `test.OpB` converts value constraint to shape constraint.
          if (*result_constraint == ValueConstraint::kValue)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 09:19:38 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/converter.go

    		converter:        converter,
    		selectableFields: selectableFields,
    	}
    	return &safeConverterWrapper{unsafe}, unsafe, nil
    }
    
    // crConverterInterface is the interface all cr converters must implement
    type crConverterInterface interface {
    	// Convert converts in object to the given gvk and returns the converted object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/PathTest.groovy

            path('a:b').child("c") == path("a:b:c")
        }
    
        def "converts relative path to absolute path"() {
            when:
            def path = path(':')
    
            then:
            path.absolutePath('path') == ':path'
    
            when:
            path = Path.path(':sub')
    
            then:
            path.absolutePath('path') == ':sub:path'
        }
    
        def "converts absolute path to absolute path"() {
            def path = path(':')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 12:54:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. pkg/kubectl/cmd/convert/convert.go

    		# Convert 'pod.yaml' to latest version and print to stdout.
    		kubectl convert -f pod.yaml
    
    		# Convert the live state of the resource specified by 'pod.yaml' to the latest version
    		# and print to stdout in JSON format.
    		kubectl convert -f pod.yaml --local -o json
    
    		# Convert all files under current directory to latest version and create them all.
    		kubectl convert -f . | kubectl create -f -`))
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:21:17 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/conversion.go

    	// Dirty indicates VersionedObject has been modified since being converted from Attributes.Object
    	Dirty bool
    }
    
    // GetObject overrides the Attributes.GetObject()
    func (v *VersionedAttributes) GetObject() runtime.Object {
    	if v.VersionedObject != nil {
    		return v.VersionedObject
    	}
    	return v.Attributes.GetObject()
    }
    
    // ConvertToGVK converts object to the desired gvk.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/export_utils.h

    absl::StatusOr<llvm::StringRef> GetTensorFlowOpName(llvm::StringRef);
    
    // Converts an MLIR operation to TensorFlow NodeDef with given node name. This
    // name should be unique to the graph it is being inserted into.
    absl::StatusOr<std::unique_ptr<NodeDef>> GetOperationNodeDef(
        mlir::Operation* inst, llvm::StringRef name);
    
    // Converts MLIR attributes with values to their tensorflow equivalent.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.td

    }
    
    def ConvertSessionInitializerToFunctionPass : Pass<"tf-saved-model-convert-session-initializer-to-function", "ModuleOp"> {
      let summary = "Converts the session initializer to a function.";
      let description = [{
          This converts
            "tf_saved_model.session_initializer"() {initializers = [@a, @b, @c]} : () -> ()
          to
    	func.func @session_initializer() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/toolingApi-processing.puml

    	participant LoggingBridging
    	participant DaemonBuild
    	participant DaemonClient
    end box
    ProviderConnection -> LoggingBridging: execute()
    LoggingBridging -> DaemonBuild: execute()
    note left
    converts provider parameters to build action parameters
    end note
    DaemonBuild -> DaemonClient: execute()
    note left
    manages connection to daemon and communication using our own protocol
    end note
    activate DaemonClient
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildConverter.java

    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.plugins.jvm.internal.JvmPluginServices;
    
    /**
     * Converts some existing build to a Gradle build.
     */
    public interface BuildConverter extends BuildInitializer {
        /**
         * Can this converter be applied to the contents of the current directory?
         */
        boolean canApplyToCurrentDirectory(Directory current);
    
        String getSourceBuildDescription();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/util/NumberUtilTest.groovy

            100L * 1000**5      | "88.8 PiB"
        }
    
        def "converts to 1024 based human readable format (#bytes -> #humanReadableString)"() {
            expect:
            formatBytes(bytes) == humanReadableString
    
            where:
            bytes | humanReadableString
            0     | '0 B'
            null  | 'unknown size'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top