Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,701 for converts (0.47 sec)

  1. 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)
  2. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformTestFixture.groovy

        }
    
        /**
         * Each project produces a 'blue' variant, and has a `resolve` task that resolves the 'green' variant and a transform that converts 'blue' to 'red'
         * and another transform that converts 'red' to 'green'.
         * By default the 'blue' variant will contain a single file, and the transform will produce a single 'green' file from this.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 15:06:39 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // the module.
    std::unique_ptr<OperationPass<ModuleOp>> CreateStripNoinlineAttributePass();
    
    // Converts tensor list operations into operations on buffers and sizes. Needs
    // static shapes and known max element count.
    std::unique_ptr<OperationPass<ModuleOp>> CreateTensorListOpsDecompositionPass();
    
    // Converts tensor array ops into operations on local variables, which can later
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K 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. staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/webhook.go

    		converted := []runtime.RawExtension{}
    		errMsgs := []string{}
    		for _, obj := range review.Request.Objects {
    			convertedObj, err := converterFunc(review.Request.DesiredAPIVersion, obj)
    			if err != nil {
    				errMsgs = append(errMsgs, err.Error())
    			}
    
    			converted = append(converted, convertedObj)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 01:38:09 UTC 2022
    - 10.2K bytes
    - Viewed (0)
Back to top