Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 171 for wads (0.04 sec)

  1. src/cmd/go/internal/modload/load.go

    				var unused bool
    				if ld.requirements.pruning == unpruned {
    					// m is unused if it was dropped from the module graph entirely. If it
    					// was only demoted from direct to indirect, it may still be in use via
    					// a transitive import.
    					unused = mg.Selected(m.Path) == "none"
    				} else {
    					// m is unused if it was dropped from the roots. If it is still present
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    		m = cache.iamSTSAccountsMap
    	default:
    		m = cache.iamUsersMap
    	}
    	err := store.loadUser(ctx, accessKey, userType, m)
    
    	if err == errNoSuchUser {
    		// User was deleted - we update the cache.
    		delete(m, accessKey)
    
    		// Since cache was updated, we update the timestamp.
    		defer func() {
    			cache.updatedAt = time.Now()
    		}()
    
    		// 1. Start with updating user-group memberships
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ppc64/asm.go

    // restore callee-saved registers (as defined in the PPC64 ELF ABIs) from registers n or m to 31 of
    // the named type. R12 and R0 are sometimes used in exceptional ways described in the ABI.
    //
    // Final note, this is only needed when linking internally. The external linker will generate these
    // functions if they are used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            expressionInScope: KtExpression,
        ): Boolean {
            /**
             * Avoid shortening reference to enum companion used in enum entry initialization there is no guarantee that the companion object
             * was initialized in advance.
             * For example, When we shorten the following code:
             *     enum class C(val i: Int) {
             *         ONE(<expr>C.K</expr>)  // shorten C.K to K
             *         ;
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        try {
          Iterators.getOnlyElement(iterator);
          fail();
        } catch (IllegalArgumentException expected) {
          assertThat(expected).hasMessageThat().isEqualTo("expected one element but was: <one, two>");
        }
      }
    
      public void testGetOnlyElement_noDefault_fiveElements() {
        Iterator<String> iterator = asList("one", "two", "three", "four", "five").iterator();
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:task_input_using_dependency_resolution_results]]
    === Using dependency resolution results
    
    Dependency resolution results can be consumed as task inputs in two ways.
    First by consuming the graph of the resolved metadata using link:{javadocPath}/org/gradle/api/artifacts/result/ResolvedComponentResult.html[ResolvedComponentResult].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer.go

    	// because the idle mark workers already soak up idle CPU resources.
    	// These two values are still kept separate however because they are
    	// distinct conceptually, and in previous iterations of the pacer the
    	// distinction was more important.
    	gcBackgroundUtilization = 0.25
    
    	// gcCreditSlack is the amount of scan work credit that can
    	// accumulate locally before updating gcController.heapScanWork and,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    	// connection so far. If renegotiation is disabled then this is either
    	// zero or one.
    	handshakes       int
    	extMasterSecret  bool
    	didResume        bool // whether this connection was a session resumption
    	didHRR           bool // whether a HelloRetryRequest was sent/received
    	cipherSuite      uint16
    	curveID          CurveID
    	ocspResponse     []byte   // stapled OCSP response
    	scts             [][]byte // signed certificate timestamps from server
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers.go

    	nodeLowMessageFmt = "The node was low on resource: %v. "
    	// nodeConditionMessageFmt is the message for evictions due to resource pressure.
    	nodeConditionMessageFmt = "The node had condition: %v. "
    	// containerMessageFmt provides additional information for containers exceeding requests
    	containerMessageFmt = "Container %s was using %s, request is %s, has larger consumption of %v. "
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    	sfreeindex = result + 1
    
    	if sfreeindex%64 == 0 && sfreeindex != snelems {
    		// We just incremented s.freeindex so it isn't 0.
    		// As each 1 in s.allocCache was encountered and used for allocation
    		// it was shifted away. At this point s.allocCache contains all 0s.
    		// Refill s.allocCache so that it corresponds
    		// to the bits at s.allocBits starting at s.freeindex.
    		whichByte := sfreeindex / 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top