Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for transforming (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/transformer.go

    	return &prefixTransformers{
    		transformers: transformers,
    		err:          err,
    	}
    }
    
    // TransformFromStorage finds the first transformer with a prefix matching the provided data and returns
    // the result of transforming the value. It will always mark any transformation as stale that is not using
    // the first transformer.
    func (t *prefixTransformers) TransformFromStorage(ctx context.Context, data []byte, dataCtx Context) ([]byte, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

    }
    
    // Registers a pipeline builder function for TF TPU V1 bridge.
    mlir::PassPipelineRegistration<> replicated_clustering_bridge_v1(
        "tf-replicated-clustering-bridge-v1",
        "Run all the passes involved in transforming a TensorFlow V1 graph before "
        "execution so that it is suitable for targeting devices.",
        CreateReplicatedBridgePipelineV1);
    
    }  // namespace v1
    }  // namespace tf2xla
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformStepNode.java

            @UsedByScanPlugin("The string is used for filtering out artifact transform logs in Develocity")
            private static final String TRANSFORMING_PROGRESS_PREFIX = "Transforming ";
    
            @Override
            public final BuildOperationDescriptor.Builder description() {
                String transformStepName = transformStep.getDisplayName();
                String subjectName = describeSubject();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. docs/lambda/README.md

    # Object Lambda
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 04 19:15:28 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        @get:InputArtifact
        abstract val inputArtifact: Provider<FileSystemLocation>
    
        override fun transform(outputs: TransformOutputs) {
            val inputFile = inputArtifact.get().asFile
            println("Transforming ${inputFile.name}...")
            outputs.file("${inputFile.nameWithoutExtension}-summary.txt").run {
                writeText("${inputFile.name}: ${inputFile.length()}")
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    	out := &example.Pod{}
    	return rt.store.Create(ctx, key, obj, out, 0)
    }
    
    // failingTransformer is a custom test-only transformer that always returns
    // an error on transforming data from storage.
    type failingTransformer struct {
    }
    
    func (ft *failingTransformer) TransformFromStorage(ctx context.Context, data []byte, dataCtx value.Context) ([]byte, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  7. pkg/kube/krt/collection.go

    	// eventHandlers is a list of event handlers registered for the collection. On any changes, each will be notified.
    	eventHandlers *handlers[O]
    
    	transformation TransformationMulti[I, O]
    
    	// augmentation allows transforming an object into another for usage throughout the library. See WithObjectAugmentation.
    	augmentation func(a any) any
    	synced       chan struct{}
    	stop         <-chan struct{}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[sec:abm_artifact_transforms]]
    = Transforming dependency artifacts on resolution
    
    As described in <<declaring_dependencies.adoc#sec:resolvable-consumable-configs,different kinds of configurations>>, there may be different variants for the same dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    	}
    
    	// Try to start the kubelet service in case it's inactive
    	fmt.Println("[kubelet-start] Starting the kubelet")
    	kubeletphase.TryStartKubelet()
    
    	// Now the kubelet will perform the TLS Bootstrap, transforming /etc/kubernetes/bootstrap-kubelet.conf to /etc/kubernetes/kubelet.conf
    	// Wait for the kubelet to create the /etc/kubernetes/kubelet.conf kubeconfig file. If this process
    	// times out, display a somewhat user-friendly message.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_platform_info.cc

          xla::Compiler::GetForPlatform(platform.value());
      if (!compiler_for_platform.ok()) {
        // In some rare cases (usually in unit tests with very small clusters) we
        // may end up transforming an XLA cluster with at least one GPU operation
        // (which would normally force the cluster to be compiled using XLA:GPU)
        // into an XLA cluster with no GPU operations (i.e. containing only CPU
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 17:23:27 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top