Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 815 for fslock (0.12 sec)

  1. platforms/documentation/docs/src/snippets/plugins/dslWithBuildSrc/groovy/buildSrc/build.gradle

    // tag::main-block[]
    plugins {
        id 'java-gradle-plugin'
    }
    
    gradlePlugin {
        plugins {
            myPlugins {
                id = 'my-plugin'
                implementationClass = 'my.MyPlugin'
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 227 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	F_SETLKW                      = 0x7
    	F_SETLKW64                    = 0xd
    	F_SETOWN                      = 0x9
    	F_TEST                        = 0x3
    	F_TLOCK                       = 0x2
    	F_TSTLK                       = 0xf
    	F_ULOCK                       = 0x0
    	F_UNLCK                       = 0x3
    	F_WRLCK                       = 0x2
    	HUPCL                         = 0x400
    	IBSHIFT                       = 0x10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_arguments.cc

      // and return-as-yield CF don't belong to us.
      for (Block& block : region->getBlocks()) {
        for (Operation& op : block.getOperations()) {
          if (op.hasTrait<OpTrait::ReturnLike>()) result = &op;
        }
      }
      return result;
    }
    
    void EraseReturnOperands(Region* region, llvm::BitVector& erase) {
      for (Block& block : region->getBlocks()) {
        for (Operation& op : block.getOperations()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. pkg/filewatcher/worker.go

    	wk.mu.Lock()
    
    	ft := wk.watchedFiles[path]
    	if ft == nil {
    		wk.mu.Unlock()
    		return fmt.Errorf("path %s not found", path)
    	}
    
    	delete(wk.watchedFiles, path)
    	wk.mu.Unlock()
    
    	wk.retireTrackerCh <- ft
    	return nil
    }
    
    func (wk *worker) eventChannel(path string) chan fsnotify.Event {
    	wk.mu.RLock()
    	defer wk.mu.RUnlock()
    
    	if ft := wk.watchedFiles[path]; ft != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 22:31:06 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/looprotate.go

    	}
    
    	// Set of blocks we're moving, by ID.
    	move := map[ID]struct{}{}
    
    	// Map from block ID to the moving blocks that should
    	// come right after it.
    	after := map[ID][]*Block{}
    
    	// Check each loop header and decide if we want to move it.
    	for _, loop := range loopnest.loops {
    		b := loop.header
    		var p *Block // b's in-loop predecessor
    		for _, e := range b.Preds {
    			if e.b.Kind != BlockPlain {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/crypto/aes/modes_test.go

    // be picked up correctly.
    
    // testInterface can be asserted to check that a type originates
    // from this test group.
    type testInterface interface {
    	InAESPackage() bool
    }
    
    // testBlock implements the cipher.Block interface and any *Able
    // interfaces that need to be tested.
    type testBlock struct{}
    
    func (*testBlock) BlockSize() int      { return 0 }
    func (*testBlock) Encrypt(a, b []byte) {}
    func (*testBlock) Decrypt(a, b []byte) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 15:32:26 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/inlineFunctionUsageSource.ir.txt

          FUN name:run visibility:public modality:FINAL <> () returnType:kotlin.Unit
            EXPRESSION_BODY
              BLOCK type=kotlin.Unit origin=null
                CALL 'public final fun call (block: kotlin.Function1<kotlin.Int, kotlin.Int>): kotlin.Unit [inline] declared in <root>' type=kotlin.Unit origin=null
                  block: FUN_EXPR type=kotlin.Function1<kotlin.Int, kotlin.Int> origin=LAMBDA
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 30 10:27:47 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/Closer.java

     *   <li>If a {@code Throwable} is thrown in the try block, no exceptions that occur when attempting
     *       to close resources will be thrown from the finally block. The throwable from the try block
     *       will be thrown.
     *   <li>If no exceptions or errors were thrown in the try block, the <i>first</i> exception thrown
     *       by an attempt to close a resource will be thrown.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/inlineFunctionUsageSource.kt

    // MODULE: context
    
    // FILE: context.kt
    fun test() {
        <caret_context>val x = 0
    }
    
    inline fun call(block: (Int) -> Int) {
        System.out.println(block(5))
    }
    
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    // CODE_FRAGMENT_KIND: EXPRESSION
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 304 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/javaGradlePlugin/groovy/build.gradle

    plugins {
        id 'java-gradle-plugin'
    }
    // end::use-java-gradle-plugin-plugin[]
    
    // tag::gradle-plugin-block[]
    gradlePlugin {
        plugins {
            simplePlugin {
                id = 'org.gradle.sample.simple-plugin'
                implementationClass = 'org.gradle.sample.SimplePlugin'
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 369 bytes
    - Viewed (0)
Back to top