Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 112 for transforming (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    	// It does not include the time incurred in admission, or validation.
    	StorageTracker DurationTracker
    
    	// TransformTracker tracks the latency incurred in transforming the
    	// response object(s) returned from the underlying storage layer.
    	// This includes transforming the object to user's desired form
    	// (ie. as Table), and also setting appropriate API level fields.
    	// This does not include the latency incurred in serialization
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    			originalText := []byte(testText)
    
    			transformedData, err := transformer.TransformToStorage(ctx, originalText, dataCtx)
    			if err != nil {
    				t.Fatalf("envelopeTransformer: error while transforming data to storage: %s", err)
    			}
    			untransformedData, _, err := transformer.TransformFromStorage(ctx, transformedData, dataCtx)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    // defaultUpdatedObjectInfo implements UpdatedObjectInfo
    type defaultUpdatedObjectInfo struct {
    	// obj is the updated object
    	obj runtime.Object
    
    	// transformers is an optional list of transforming functions that modify or
    	// replace obj using information from the context, old object, or other sources.
    	transformers []TransformFunc
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/cases/cases.go

    // form implemented by c.
    func (c Caser) Bytes(b []byte) []byte {
    	b, _, _ = transform.Bytes(c.t, b)
    	return b
    }
    
    // String returns a string with the result of transforming s to the case form
    // implemented by c.
    func (c Caser) String(s string) string {
    	s, _, _ = transform.String(c.t, s)
    	return s
    }
    
    // Reset resets the Caser to be reused for new input after a previous call to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    absl::StatusOr<std::optional<tensorflow::SaverDef>> CreateSaverDef(
        const std::vector<std::string>& control_ret_node_names,
        const tensorflow::GraphDef& graph_def);
    
    // Adds passes for transforming the MLIR module op so that it can be exported
    // back to GraphDef. Roughly, this consists of:
    //   1) Inserting the @main function, which will become the main Graph.
    //   2) Duplicating shape-determining constants.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.cc

          /*result=*/"success");
    
      return absl::OkStatus();
    }
    
    mlir::PassPipelineRegistration<> replicated_clustering_bridge_v2(
        "tf-replicated-clustering-bridge-v2",
        "Run all the passes involved in transforming a TensorFlow 2 graph before "
        "execution so that it is suitable for targeting devices.",
        CreateReplicatedClusteringPipelineV2);
    
    }  // namespace v2
    }  // namespace tf2xla
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. README.md

        - **Pilot** - Responsible for configuring the proxies at runtime.
    
        - **Citadel** - Responsible for certificate issuance and rotation.
    
        - **Galley** - Responsible for validating, ingesting, aggregating, transforming and distributing config within Istio.
    
    - **Operator** - The component provides user friendly options to operate the Istio service mesh.
    
    ## Repositories
    
    The Istio project is divided across a few GitHub repositories:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

                    @InputArtifact
                    abstract Provider<FileSystemLocation> getInputArtifact()
    
                    @Override
                    void transform(TransformOutputs outputs) {
                        println "Transforming printed to System.out"
                        outputs.file(inputArtifact)
                    }
                }
            """
            file('src/main/java/artifact/transform/sample/App.java') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/nowb.go

    	// Find all systemstack calls and record their targets. In
    	// general, flow analysis can't see into systemstack, but it's
    	// important to handle it for this check, so we model it
    	// directly. This has to happen before transforming closures in walk since
    	// it's a lot harder to work out the argument after.
    	for _, n := range typecheck.Target.Funcs {
    		c.curfn = n
    		if c.curfn.ABIWrapper() {
    			// We only want "real" calls to these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

      // canonicalize/optimizer.
      static mlir::PassPipelineRegistration<StandardPipelineOptions> pipeline(
          "tf-standard-pipeline",
          "Run all the passes involved in transforming/optimizing the graph after "
          "importing into MLIR, without any target specialization.",
          CreateTFStandardPipeline);
    }
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top