Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for asminit (0.17 sec)

  1. cmd/batch-replicate.go

    	switch t {
    	case BatchJobReplicateResourceMinIO:
    	case BatchJobReplicateResourceS3:
    	default:
    		return errInvalidArgument
    	}
    	return nil
    }
    
    func (t BatchJobReplicateResourceType) isMinio() bool {
    	return t == BatchJobReplicateResourceMinIO
    }
    
    // Different types of batch jobs..
    const (
    	BatchJobReplicateResourceMinIO BatchJobReplicateResourceType = "minio"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 18:51:46 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainTest.groovy

                getVendor() >> DefaultJvmVendorSpec.any().toString()
                getImplementation() >> JvmImplementation.VENDOR_SPECIFIC.toString()
            }, false)
            then:
            javaToolchain.languageVersion.asInt() == languageVersion
            javaToolchain.javaRuntimeVersion == runtimeVersion
            javaToolchain.jvmVersion == jvmVersion
    
            where:
            javaVersion | runtimeVersion  | jvmVersion   | languageVersion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

        }
    
        if (failed(
                VerifySessionInitOp(*session_initializers.begin(), symbol_table))) {
          return failure();
        }
      }
    
      auto is_init = [&session_initializers](mlir::func::FuncOp func) {
        if (session_initializers.empty()) return false;
        auto init_syms = (*session_initializers.begin()).getInitializers();
        return std::any_of(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. src/runtime/signal_unix.go

    }
    
    // sigsetAllExiting is used by sigblock(true) when a thread is
    // exiting.
    var sigsetAllExiting = func() sigset {
    	res := sigset_all
    
    	// Apply GOOS-specific overrides here, rather than in osinit,
    	// because osinit may be called before sigsetAllExiting is
    	// initialized (#51913).
    	if GOOS == "linux" && iscgo {
    		// #42494 glibc and musl reserve some signals for
    		// internal use and require they not be blocked by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. src/crypto/aes/gcm_ppc64x.s

    	P8_STXVB16X(V1,blk_out,R0); \
    	P8_STXVB16X(V2,blk_out,R16); \
    	P8_STXVB16X(V3,blk_out,R17); \
    	P8_STXVB16X(V4,blk_out,R18); \
    	ADD $64, blk_out
    
    // func gcmInit(productTable *[256]byte, h []byte)
    TEXT ·gcmInit(SB), NOSPLIT, $0-32
    	MOVD productTable+0(FP), XIP
    	MOVD h+8(FP), HTBL
    
    	MOVD   $0x10, R8
    	MOVD   $0x20, R9
    	MOVD   $0x30, R10
    	LXVD2X (HTBL)(R0), VH // Load H
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    					ctxt.Diag("asmins: illegal in 64-bit mode: %v", p)
    				}
    
    			case Py: // 64-bit only, no prefix
    				if ctxt.Arch.Family != sys.AMD64 {
    					ctxt.Diag("asmins: illegal in %d-bit mode: %v", ctxt.Arch.RegSize*8, p)
    				}
    
    			case Py1: // 64-bit only if z < 1, no prefix
    				if z < 1 && ctxt.Arch.Family != sys.AMD64 {
    					ctxt.Diag("asmins: illegal in %d-bit mode: %v", ctxt.Arch.RegSize*8, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. cmd/batch-handlers.go

    	var (
    		walkCh = make(chan itemOrErr[ObjectInfo], 100)
    		slowCh = make(chan itemOrErr[ObjectInfo], 100)
    	)
    
    	if !*r.Source.Snowball.Disable && r.Source.Type.isMinio() && r.Target.Type.isMinio() {
    		go func() {
    			// Snowball currently needs the high level minio-go Client, not the Core one
    			cl, err := miniogo.New(u.Host, &miniogo.Options{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/AbstractScalaCompile.java

            return spec;
        }
    
        private void configureCompatibilityOptions(DefaultScalaJavaJointCompileSpec spec) {
            String toolchainVersion = JavaVersion.toVersion(getToolchain().getLanguageVersion().asInt()).toString();
            String sourceCompatibility = getSourceCompatibility();
            if (sourceCompatibility == null) {
                sourceCompatibility = toolchainVersion;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/runtime/os_linux.go

    // Called on the new thread, cannot allocate memory.
    func minit() {
    	minitSignals()
    
    	// Cgo-created threads and the bootstrap m are missing a
    	// procid. We need this for asynchronous preemption and it's
    	// useful in debuggers.
    	getg().m.procid = uint64(gettid())
    }
    
    // Called from dropm to undo the effect of an minit.
    //
    //go:nosplit
    func unminit() {
    	unminitSignals()
    	getg().m.procid = 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. docs/tr/docs/async.md

    Kasiyer 💁 size bir sıra numarası verir.
    
    Beklerken askınla 😍 bir masaya oturur ve uzun bir süre konuşursunuz(Burgerleriniz çok çılgın olduğundan ve hazırlanması biraz zaman alıyor ✨🍔✨).
    
    Hamburgeri beklerkenki zamanı 🍔, aşkının ne kadar zeki ve tatlı olduğuna hayran kalarak harcayabilirsin ✨😍✨.
    
    Aşkınla 😍 konuşurken arada sıranın size gelip gelmediğini kontrol ediyorsun.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top