Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,221 for blockn (0.19 sec)

  1. src/image/gif/writer.go

    		e.buf[2] = 0x0b // Block Size.
    		e.write(e.buf[:3])
    		_, err := io.WriteString(e.w, "NETSCAPE2.0") // Application Identifier.
    		if err != nil && e.err == nil {
    			e.err = err
    			return
    		}
    		e.buf[0] = 0x03 // Block Size.
    		e.buf[1] = 0x01 // Sub-block Index.
    		byteorder.LePutUint16(e.buf[2:4], uint16(e.g.LoopCount))
    		e.buf[4] = 0x00 // Block Terminator.
    		e.write(e.buf[:5])
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/value.go

    	AuxInt int64
    	Aux    Aux
    
    	// Arguments of this value
    	Args []*Value
    
    	// Containing basic block
    	Block *Block
    
    	// Source position
    	Pos src.XPos
    
    	// Use count. Each appearance in Value.Args and Block.Controls counts once.
    	Uses int32
    
    	// wasm: Value stays on the WebAssembly stack. This value will not get a "register" (WebAssembly variable)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. src/runtime/netpoll_aix.go

    	write(uintptr(wrwake), unsafe.Pointer(&b[0]), 1)
    }
    
    // netpoll checks for ready network connections.
    // Returns list of goroutines that become runnable.
    // delay < 0: blocks indefinitely
    // delay == 0: does not block, just polls
    // delay > 0: block for up to that many nanoseconds
    //
    //go:nowritebarrierrec
    func netpoll(delay int64) (gList, int32) {
    	var timeout uintptr
    	if delay < 0 {
    		timeout = ^uintptr(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    A `{ }` block is called a _lambda_ in Kotlin or a _closure_ in Groovy.
    
    Simply put, the `plugins{ }` block is a method invocation in which a Kotlin _lambda_ object or Groovy _closure_ object is passed as the argument.
    It is the short form for:
    
    [source,kotlin]
    ----
    plugins(function() {
        id("plugin")
    })
    ----
    
    Blocks are mapped to Gradle API methods.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

      results.clear();
    
      // Collect all of the blocks within each of the island operations, these will
      // be used to detect when an operation has a use within one of the merged
      // islands.
      llvm::SmallPtrSet<Block*, 8> islandBlocks;
      for (IslandOp island : merged_island.islands)
        island->walk([&](Block* block) { islandBlocks.insert(block); });
    
      for (IslandOp island : merged_island.islands) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerTest.groovy

                sleep 1000
                // Try to get broadcaster, should not block
                def broadcaster = manager.getBroadcaster(TestBazListener)
                // Notify broadcaster, should not block
                broadcaster.baz()
            } as TestFooListener
            def listener2 = {
                sleep 20
                // Try to remove listener, should be blocked until listener 1 is done
                manager.removeListener(listener1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlocksCheck.kt

                        specialBlockKind -> duplicates += node
                        else -> error("unexpected mixed kinds of special blocks in one resolved DOM")
                    }
    
                    seenBlock == null -> outOfOrderNodes += node
                }
            }
            return seenBlock?.let { seen ->
                outOfOrderNodes.map { asIllegalOrderFailure(seen, it) } +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceProjectLockTest.groovy

                    workerLeaseService.blocking {
                        assert !lockIsHeld(lease)
                        assert lockIsHeld(projectLock)
                    }
                    assert lockIsHeld(lease)
                    assert lockIsHeld(projectLock)
                }
            }
        }
    
        def "releases and reacquires project locks in blocking action when changes to locks are allowed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  9. tests/integration/helm/install_test.go

    				if !strings.Contains(err.Error(), msg) {
    					t.Errorf("Expected error %q to contain %q", err.Error(), msg)
    				}
    			}
    
    			// Now test field-level blocks with Telemetry
    			err = t.ConfigIstio().Eval("default", nil, extendedTelemetry).Apply()
    			if err == nil {
    				t.Error("Did not receive an error while applying extended Telemetry resource with stable admission policy")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkerExecutor.java

         *
         * @since 5.6
         */
        WorkQueue processIsolation(Action<? super ProcessWorkerSpec> action);
    
        /**
         * Blocks until all work associated with the current build operation is complete.  Note that when using this method inside
         * a task action, it will block completion of the task action until all submitted work is complete.  This means that other
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top