Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for north (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Now that you have seen both the annotations and the runtime API, you may be wondering which API you should be using. Our recommendation is to use the annotations wherever possible, and it’s sometimes worth creating a custom task class just so that you can make use of them. The runtime API is more for situations in which you can’t use the annotations.
    
    [[sec:runtime_api_for_custom_tasks]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/TypeToken.java

          return collectTypes(ImmutableList.of(type));
        }
    
        ImmutableList<K> collectTypes(Iterable<? extends K> types) {
          // type -> order number. 1 for Object, 2 for anything directly below, so on so forth.
          Map<K, Integer> map = Maps.newHashMap();
          for (K type : types) {
            collectTypes(type, map);
          }
          return sortKeysByValue(map, Ordering.natural().reverse());
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"text/x-cobol",
    				"text/x-coldfusion",
    				"text/x-common-lisp",
    				"text/x-diff",
    				"text/x-eiffel",
    				"text/x-emacs-lisp",
    				"text/x-erlang",
    				"text/x-expect",
    				"text/x-forth",
    				"text/x-fortran",
    				"text/x-go",
    				"text/x-groovy",
    				"text/x-haskell",
    				"text/x-idl",
    				"text/x-ini",
    				"text/x-java-source",
    				"text/x-jsp",
    				"text/x-less",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/TypeToken.java

          return collectTypes(ImmutableList.of(type));
        }
    
        ImmutableList<K> collectTypes(Iterable<? extends K> types) {
          // type -> order number. 1 for Object, 2 for anything directly below, so on so forth.
          Map<K, Integer> map = Maps.newHashMap();
          for (K type : types) {
            collectTypes(type, map);
          }
          return sortKeysByValue(map, Ordering.natural().reverse());
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    	// are included in the MAC. Otherwise, an attacker that could
    	// distinguish MAC failures from padding failures could mount an attack
    	// similar to POODLE in SSL 3.0: given a good ciphertext that uses a
    	// full block's worth of padding, replace the final block with another
    	// block. If the MAC check passed but the padding check failed, the
    	// last byte of that block decrypted to the block size.
    	//
    	// See also macAndPaddingGood logic below.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    		print("scanning async preempted goroutine ", gp.goid, " stack [", hex(gp.stack.lo), ",", hex(gp.stack.hi), ")\n")
    	}
    
    	// Scan the saved context register. This is effectively a live
    	// register that gets moved back and forth between the
    	// register and sched.ctxt without a write barrier.
    	if gp.sched.ctxt != nil {
    		scanblock(uintptr(unsafe.Pointer(&gp.sched.ctxt)), goarch.PtrSize, &oneptrmask[0], gcw, &state)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    			// No point in considering the other branch.
    			// (It *is* possible for both to be
    			// unsatisfiable since the fact table is
    			// incomplete. We could turn this into a
    			// BlockExit, but it doesn't seem worth it.)
    			break
    		}
    	}
    }
    
    func removeBranch(b *Block, branch branch) {
    	c := b.Controls[0]
    	if b.Func.pass.debug > 0 {
    		verb := "Proved"
    		if branch == positive {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    
    	// Generic Invalid-Request error. Should be used for response errors only for unlikely
    	// corner case errors for which introducing new APIErrorCode is not worth it. LogIf()
    	// should be used to log the error at the source of the error for debugging purposes.
    	ErrInvalidRequest: {
    		Code:           "InvalidRequest",
    		Description:    "Invalid Request",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    			// strategy, first sending SIGQUIT (if appropriate for the
    			// OS in question) to try to trigger a stack trace, then
    			// finally much later SIGKILL. If timeouts prove to be a
    			// common problem here, it would be worth porting over
    			// that code as well. See https://do.dev/issue/50973
    			// for more discussion.
    			if err == nil {
    				tick := time.NewTimer(time.Duration(tim) * time.Second)
    				done := make(chan error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	// we're actually giving more than X bytes of headroom back, because the heap goal is in
    	// terms of heap objects, but it takes more than X bytes (e.g. due to fragmentation) to store
    	// X bytes worth of objects.
    	//
    	// The final adjustment (marker 3) reduces the maximum possible memory limit heap goal by
    	// memoryLimitHeapGoalPercent. As the name implies, this is to provide additional headroom in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top