Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 194 for Headless (0.13 sec)

  1. CONTRIBUTING.md

    ``MinIO`` community welcomes your contribution. To make the process as seamless as possible, we recommend you read this contribution guide.
    
    ## Development Workflow
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

    # Tensorflow SavedModel to StableHLO (tf-to-stablehlo-translate)
    
    Converts TensorFlow models (SavedModel or MLIR module) to StableHLO MLIR
    modules, preserving model structure and signatures. It enables seamless
    integration of TensorFlow models into MLIR-based compiler frameworks for further
    optimization and deployment.
    
    ## C++ APIs
    
    ```bash
    tf-to-stablehlo-translate \
        --input-path=/path/to/model \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_goroot_symlink.txt

    # to a subdirectory of $WORK/share. This mimics the directory structure reported
    # in https://go.dev/issue/57754.
    #
    # Symlink everything else to the original $GOROOT to avoid needless copying work.
    
    mkdir $WORK/lib/goroot
    mkdir $WORK/share/goroot
    symlink $WORK/share/goroot/src -> $GOROOT${/}src
    symlink $WORK/lib/goroot/src -> ../../share/goroot/src
    symlink $WORK/lib/goroot/pkg -> $GOROOT${/}pkg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/go/doc/testdata/e.go

    func (*T4) M() {}
    
    type T5 struct {
    	T4
    }
    
    // ----------------------------------------------------------------------------
    // Recursive type declarations must not lead to endless recursion.
    
    type U1 struct {
    	*U1
    }
    
    // U1.M should appear as method of U1.
    func (*U1) M() {}
    
    type U2 struct {
    	*U3
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.8K bytes
    - Viewed (0)
  5. src/html/template/attr.go

    	"rows":        contentTypePlain,
    	"rowspan":     contentTypePlain,
    	"sandbox":     contentTypeUnsafe,
    	"spellcheck":  contentTypePlain,
    	"scope":       contentTypePlain,
    	"scoped":      contentTypePlain,
    	"seamless":    contentTypePlain,
    	"selected":    contentTypePlain,
    	"shape":       contentTypePlain,
    	"size":        contentTypePlain,
    	"sizes":       contentTypePlain,
    	"span":        contentTypePlain,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/xcode_plugin.adoc

    | <<xctest_plugin.adoc#xctest_plugin,XCTest>>
    | Adds a target representing the XCTest bundle to the project file.
    | The tested target is also configured to enable a seamless workflow from the IDE.
    |===
    
    [[sec:xcode_usage]]
    == Usage
    
    .Applying the Xcode Plugin
    ====
    include::sample[dir="snippets/ide/xcode/kotlin",files="build.gradle.kts[tags=apply-plugin]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/init/uploadconfig.go

    )
    
    var (
    	uploadKubeadmConfigLongDesc = fmt.Sprintf(cmdutil.LongDesc(`
    		Upload the kubeadm ClusterConfiguration to a ConfigMap called %s in the %s namespace.
    		This enables correct configuration of system components and a seamless user experience when upgrading.
    
    		Alternatively, you can use kubeadm config.
    		`), kubeadmconstants.KubeadmConfigConfigMap, metav1.NamespaceSystem)
    
    	uploadKubeadmConfigExample = cmdutil.Examples(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    transformations will operate on.
    
    We make use of two different dialects to model TensorFlow graphs in MLIR: first
    the `tf_executor` dialect that represents the execution model of the TensorFlow
    executor (e.g. control dependencies, deadness propagation) and the `tf` dialect
    which represent the regular operations in a TensorFlow graph (the ones that
    don’t have special contract with the executor).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/deadness_analysis.cc

      // node in `should_revisit` denotes that the deadness flowing out from any
      // output from said node may have changed.  This is fine; only switches
      // propagate different deadness along different output edges, and since the
      // delta is solely due to the input *values* (and not input deadness), the
      // delta should not change in the second iteration.
      std::vector<bool> should_revisit;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.23.md

    - Handle Generic Ephemeral Volumes properly in the node limits scheduler filter and the kubelet `hostPath` check. ([#100482](https://github.com/kubernetes/kubernetes/pull/100482), [@pohly](https://github.com/pohly))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
Back to top