Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for Headless (0.15 sec)

  1. docs/orchestration/README.md

    While containers provide isolated application execution environment, orchestration platforms allow seamless scaling by helping replicate and manage containers. MinIO extends this by adding isolated storage environment for each tenant.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/eventspy/internal/EventSpyDispatcher.java

        private final List<EventSpy> eventSpies;
    
        @Inject
        public EventSpyDispatcher(List<EventSpy> eventSpies) {
            // make copy to get rid of needless overhead for dynamic lookups
            this.eventSpies = new ArrayList<>(eventSpies);
        }
    
        public ExecutionListener chainListener(ExecutionListener listener) {
            if (eventSpies.isEmpty()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. src/net/write_unix_test.go

    //go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
    
    package net
    
    import (
    	"bytes"
    	"syscall"
    	"testing"
    	"time"
    )
    
    // Test that a client can't trigger an endless loop of write system
    // calls on the server by shutting down the write side on the client.
    // Possibility raised in the discussion of https://golang.org/cl/71973.
    func TestEndlessWrite(t *testing.T) {
    	t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h

    // This file defines the tf_executor dialect: it models the TensorFlow executor
    // semantics and can represent arbitrary TensorFlow graphs. As such it follows
    // the existing execution model that includes deadness propagation, concurrent
    // semantics, and control dependencies.
    
    #ifndef TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_EXECUTOR_H_
    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_EXECUTOR_H_
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis.h

      // only.
      virtual void Print() const = 0;
      virtual ~DeadnessAnalysis();
    
      string DebugString(DeadnessPredicate predicate) const;
    
      // Run the deadness analysis over `graph` and returns an error or a populated
      // instance of DeadnessAnalysis in `result`.
      static Status Run(const Graph& graph,
                        std::unique_ptr<DeadnessAnalysis>* result);
    
     protected:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top