Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 972 for darkred (0.22 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // An optimization pass that groups nodes marked with a common
    // kXlaClusterAttr into functions, and replaces the original nodes by
    // calls. The calls are annotated with kXlaCompiledKernelAttr.
    
    #ifndef TENSORFLOW_COMPILER_JIT_ENCAPSULATE_SUBGRAPHS_PASS_H_
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/ImmutableSupplier.java

     */
    
    package com.google.common.hash;
    
    import com.google.common.base.Supplier;
    import com.google.errorprone.annotations.Immutable;
    
    /**
     * Explicitly named subinterface of {@link Supplier} that can be marked {@literal @}{@link
     * Immutable}.
     */
    // TODO(cpovirk): Should we just use ChecksumType directly instead of defining this type?
    @Immutable
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 1K bytes
    - Viewed (0)
  3. .github/workflows/invalid_question.yml

          ACTIONS_STEP_DEBUG: true
        steps:
        - name: Close Stale Issues
          uses: actions/stale@v8
          with:
            repo-token: ${{ secrets.GITHUB_TOKEN }}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 02:27:05 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleSelectorsTest.groovy

        int dynCount = 1
    
        def 'empty by default'() {
            expect:
            verifyEmpty(selectors)
        }
    
        def 'can add a selector not marked as deferring'() {
            given:
            def selector = Mock(ResolvableSelectorState)
    
            when:
            selectors.add(selector, false)
    
            then:
            selectors.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    		// the gcMarkDone barrier. However, since the barrier
    		// ensured all reachable objects were marked, all of
    		// these must be pointers to black objects. Hence we
    		// can just discard the write barrier buffer.
    		if debug.gccheckmark > 0 {
    			// For debugging, flush the buffer and make
    			// sure it really was all marked.
    			wbBufFlush1(p)
    		} else {
    			p.wbBuf.reset()
    		}
    
    		gcw := &p.gcw
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/ImmutableSupplier.java

     */
    
    package com.google.common.hash;
    
    import com.google.common.base.Supplier;
    import com.google.errorprone.annotations.Immutable;
    
    /**
     * Explicitly named subinterface of {@link Supplier} that can be marked {@literal @}{@link
     * Immutable}.
     */
    // TODO(cpovirk): Should we just use ChecksumType directly instead of defining this type?
    @Immutable
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/par/queue_test.go

    	started := make(chan struct{})
    	unblock := make(chan struct{})
    	q.Add(func() {
    		close(started)
    		<-unblock
    	})
    
    	<-started
    	idle := q.Idle()
    	select {
    	case <-idle:
    		t.Errorf("NewQueue(1) is marked idle while processing work.")
    	default:
    	}
    
    	close(unblock)
    	<-idle // Should be closed as soon as the Add callback returns.
    }
    
    func TestQueueBacklog(t *testing.T) {
    	const (
    		maxActive = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 24 21:08:46 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  8. .github/workflows/missing_playground.yml

        steps:
        - name: Close Stale Issues
          uses: actions/stale@v8
          with:
            repo-token: ${{ secrets.GITHUB_TOKEN }}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 02:27:05 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/runtime/os_openbsd_syscall.go

    func newosproc(mp *m) {
    	stk := unsafe.Pointer(mp.g0.stack.hi)
    	if false {
    		print("newosproc stk=", stk, " m=", mp, " g=", mp.g0, " id=", mp.id, " ostk=", &mp, "\n")
    	}
    
    	// Stack pointer must point inside stack area (as marked with MAP_STACK),
    	// rather than at the top of it.
    	param := tforkt{
    		tf_tcb:   unsafe.Pointer(&mp.tls[0]),
    		tf_tid:   nil, // minit will record tid
    		tf_stack: uintptr(stk) - goarch.PtrSize,
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 20:44:45 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/stat_unix.go

    // set even if the current user is root.
    func hasWritePerm(path string, fi fs.FileInfo) bool {
    	if os.Getuid() == 0 {
    		// The root user can access any file, but we still want to default to
    		// read-only mode if the go.mod file is marked as globally non-writable.
    		// (If the user really intends not to be in readonly mode, they can
    		// pass -mod=mod explicitly.)
    		return fi.Mode()&0222 != 0
    	}
    
    	const W_OK = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 963 bytes
    - Viewed (0)
Back to top