Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,563 for current7_ (0.14 sec)

  1. android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java

        return atomic == null ? 0L : atomic.get();
      }
    
      /**
       * Increments by one the value currently associated with {@code key}, and returns the new value.
       */
      @CanIgnoreReturnValue
      public long incrementAndGet(K key) {
        return addAndGet(key, 1);
      }
    
      /**
       * Decrements by one the value currently associated with {@code key}, and returns the new value.
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/runtime/tracestack.go

    			// capture here.
    			//
    			// (2) We're called against a gp that we're not currently executing on, but that isn't
    			// in a syscall, in which case it's currently not executing. gp.sched contains the most
    			// up-to-date information about where it stopped, and like case (1), we match gcallers
    			// here.
    			//
    			// (3) We're called against a gp that we're not currently executing on, but that is in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. cmd/leak-detect_test.go

    		for _, g := range leaked {
    			t.Errorf("Leaked goroutine: %v", g)
    		}
    		return
    	}
    }
    
    // DetectTestLeak -  snapshots the currently running goroutines and returns a
    // function to be run at the end of tests to see whether any
    // goroutines leaked.
    // Usage: `defer DetectTestLeak(t)()` in beginning line of benchmarks or unit tests.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. pkg/proxy/apis/config/types.go

    }
    
    // ProxyMode represents modes used by the Kubernetes proxy server.
    //
    // Currently, three modes of proxy are available on Linux platforms: 'iptables', 'ipvs',
    // and 'nftables'. One mode of proxy is available on Windows platforms: 'kernelspace'.
    //
    // If the proxy mode is unspecified, the best-available proxy mode will be used (currently this
    // is `iptables` on Linux and `kernelspace` on Windows). If the selected proxy mode cannot be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/query.go

    	if (query == "upgrade" || query == "patch") && current != "" && current != "none" {
    		// "upgrade" and "patch" may stay on the current version if allowed.
    		if err := allowed(ctx, module.Version{Path: path, Version: current}); errors.Is(err, ErrDisallowed) {
    			return revWithOrigin(nil), err
    		}
    		return lookup(current)
    	}
    
    	return revWithOrigin(nil), &NoMatchingVersionError{query: query, current: current}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  6. src/runtime/mgclimit.go

    }
    
    // update updates the bucket given runtime-specific information. now is the
    // current monotonic time in nanoseconds.
    //
    // This is safe to call concurrently with other operations, except *GCTransition.
    func (l *gcCPULimiterState) update(now int64) {
    	if !l.tryLock() {
    		// We failed to acquire the lock, which means something else is currently
    		// updating. Just drop our update, the next one to update will include
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/cache/internal/DefaultCrossBuildInMemoryCacheFactory.java

     * Note that this implementation should only be used to create global scoped services.
     * Note that this implementation currently retains strong references to keys and values during the whole lifetime of a build session.
     *
     * Uses a simple algorithm to collect unused values, by retaining strong references to all keys and values used during the current build session, and the previous build session. All other values are referenced only by soft references.
     */
    @ThreadSafe
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 11 20:23:28 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/reflect/Types.java

          if (ownerType != null && JavaVersion.CURRENT.jdkTypeDuplicatesOwnerName()) {
            builder.append(JavaVersion.CURRENT.typeName(ownerType)).append('.');
          }
          return builder
              .append(rawType.getName())
              .append('<')
              .append(COMMA_JOINER.join(transform(argumentsList, JavaVersion.CURRENT::typeName)))
              .append('>')
              .toString();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildWorkGraphController.java

        @Override
        public void resetState() {
            synchronized (lock) {
                if (currentOwner != null) {
                    throw new IllegalStateException("Cannot reset work graph state as another thread is currently using the work graph.");
                }
                nodesByPath.clear();
            }
            taskNodeFactory.resetState();
        }
    
        @Override
        public ExportedTaskNode locateTask(TaskIdentifier taskIdentifier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1beta1/types.go

    	// Note the following deviations from the "host" part of the
    	// URI as defined in RFC 3986:
    	// 1. IPs are not allowed. Currently an IngressRuleValue can only apply to
    	//    the IP in the Spec of the parent Ingress.
    	// 2. The `:` delimiter is not respected because ports are not allowed.
    	//	  Currently the port of an Ingress is implicitly :80 for http and
    	//	  :443 for https.
    	// Both these may change in the future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
Back to top