Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 475 for allDone (0.36 sec)

  1. docs/distributed/README.md

    ## Get started
    
    If you're aware of stand-alone MinIO set up, the process remains largely the same. MinIO server automatically switches to stand-alone or distributed mode, depending on the command line parameters.
    
    ### 1. Prerequisites
    
    Install MinIO either on Kubernetes or Distributed Linux.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/syscall/rlimit.go

    // best approach was for Go to raise the limit unconditionally for itself,
    // and then leave old software to set the limit back as needed.
    // Code that really wants Go to leave the limit alone can set the hard limit,
    // which Go of course has no choice but to respect.
    func init() {
    	var lim Rlimit
    	if err := Getrlimit(RLIMIT_NOFILE, &lim); err == nil && lim.Cur != lim.Max {
    		origRlimitNofile.Store(&lim)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestOptionsIntegrationSpec.groovy

            and:
            succeeds ":integTest"
            assertIntegTestsExecuted()
    
            then:
            executedAndNotSkipped ":integTest"
        }
        // endregion all suites
    
        // region stand-alone test tasks
        def "can toggle framework multiple times on custom test task unrelated to suites"() {
            given:
            buildFile << """
            tasks.register('integTest', Test) {
               useJUnitPlatform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue47127.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Embedding of stand-alone type parameters is not permitted.
    
    package p
    
    type (
            _[P any] interface{ *P | []P | chan P | map[string]P }
            _[P any] interface{ P /* ERROR "term cannot be a type parameter" */ }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/net/port_split.go

    		// Must include three segments to specify scheme
    		return scheme + ":" + name + ":" + port
    	}
    	if len(port) > 0 {
    		// Must include two segments to specify port
    		return name + ":" + port
    	}
    	// Return name alone
    	return name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/union.go

    				}
    
    				if !Identical(u, t.typ) {
    					check.errorf(tlist[i], InvalidUnion, "invalid use of ~ (underlying type of %s is %s)", t.typ, u)
    					continue
    				}
    			}
    
    			// Stand-alone embedded interfaces are ok and are handled by the single-type case
    			// in the beginning. Embedded interfaces with tilde are excluded above. If we reach
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.cc

        if (is_ignored_op(&op)) {
          continue;
        }
        std::string target_name = get_target(&op);
    
        // If no cluster of same target has been formed yet, create a new cluster
        // with op alone.
        auto it = nearest_clusters.find(target_name);
        if (it == nearest_clusters.end()) {
          SetVector<Operation*> new_cluster_op_set;
          new_cluster_op_set.insert(&op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 28 00:32:55 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. src/go/types/union.go

    				}
    
    				if !Identical(u, t.typ) {
    					check.errorf(tlist[i], InvalidUnion, "invalid use of ~ (underlying type of %s is %s)", t.typ, u)
    					continue
    				}
    			}
    
    			// Stand-alone embedded interfaces are ok and are handled by the single-type case
    			// in the beginning. Embedded interfaces with tilde are excluded above. If we reach
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/funcinference.go

    	f := f1[int]
    	f(int(0), new(int))
    	f1(int(0), new(int))
    }
    
    func f2[A any, B interface{[]A}](A, B) {}
    func _() {
    	f := f2[byte]
    	f(byte(0), []byte{})
    	f2(byte(0), []byte{})
    }
    
    // Embedding stand-alone type parameters is not permitted for now. Disabled.
    // func f3[A any, B interface{~C}, C interface{~*A}](A, B, C)
    // func _() {
    // 	f := f3[int]
    // 	var x int
    // 	f(x, &x, &x)
    // 	f3(x, &x, &x)
    // }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 21:01:45 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/internal/types/testdata/examples/constraints.go

    	// Tilde is not permitted on defined types or interfaces.
    	foo int
    	bar any
    	_ interface{foo}
    	_ interface{~ /* ERROR "invalid use of ~" */ foo }
    	_ interface{~ /* ERROR "invalid use of ~" */ bar }
    )
    
    // Stand-alone type parameters are not permitted as elements or terms in unions.
    type (
    	_[T interface{ *T } ] struct{}        // ok
    	_[T interface{ int | *T } ] struct{}  // ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top