Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,288 for converts (0.15 sec)

  1. 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)
  2. 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)
  3. pkg/test/echo/common/util.go

    func GetHeaders(request *proto.ForwardEchoRequest) http.Header {
    	return ProtoToHTTPHeaders(request.Headers)
    }
    
    // MicrosToDuration converts the given microseconds to a time.Duration.
    func MicrosToDuration(micros int64) time.Duration {
    	return time.Duration(micros) * time.Microsecond
    }
    
    // DurationToMicros converts the given duration to microseconds.
    func DurationToMicros(d time.Duration) int64 {
    	return int64(d / time.Microsecond)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 01 01:05:45 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/json/json.go

    			err = ConvertSliceNumbers(v, depth+1)
    		}
    		if err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    // convertNumber converts a json.Number to an int64 or float64, or returns an error
    func convertNumber(n json.Number) (interface{}, error) {
    	// Attempt to convert to an int64 first
    	if i, err := n.Int64(); err == nil {
    		return i, nil
    	}
    	// Return a float64 (default json.Decode() behavior)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 16:49:23 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  5. 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)
  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/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. fess-crawler-lasta/src/main/resources/crawler/urlconverter.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    	<include path="crawler/container.xml" />
    
    	<!-- Converts child links to normalize it. -->
    	<component name="urlConvertHelper" class="org.codelibs.fess.crawler.helper.UrlConvertHelper">
    	</component>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 394 bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/v1/conversion.go

    	if err := autoConvert_v1_KubeSchedulerConfiguration_To_config_KubeSchedulerConfiguration(in, out, s); err != nil {
    		return err
    	}
    	return convertToInternalPluginConfigArgs(out)
    }
    
    // convertToInternalPluginConfigArgs converts PluginConfig#Args into internal
    // types using a scheme, after applying defaults.
    func convertToInternalPluginConfigArgs(out *config.KubeSchedulerConfiguration) error {
    	scheme := GetPluginArgConversionScheme()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 29 00:47:48 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  10. 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)
Back to top