Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,564 for currentCA (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/runtime/metrics/doc.go

    		whether or not it is currently in-use. Currently, this
    		represents all stack memory for goroutines. It also includes all
    		OS thread stacks in non-cgo programs. Note that stacks may be
    		allocated differently in the future, and this may change.
    
    	/memory/classes/heap/unused:bytes
    		Memory that is reserved for heap objects but is not currently
    		used to hold heap objects.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    	// current contains the current value for the given metric
    	Current MetricValueStatus `json:"current" protobuf:"bytes,2,name=current"`
    }
    
    // ContainerResourceMetricStatus indicates the current value of a resource metric known to
    // Kubernetes, as specified in requests and limits, describing a single container in each pod in the
    // current scale target (e.g. CPU or memory).  Such metrics are built in to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  7. pkg/monitoring/monitoring.go

    	// Increment records a value of 1 for the current measure. For Sums,
    	// this is equivalent to adding 1 to the current value. For Gauges,
    	// this is equivalent to setting the value to 1. For Distributions,
    	// this is equivalent to making an observation of value 1.
    	Increment()
    
    	// Decrement records a value of -1 for the current measure. For Sums,
    	// this is equivalent to subtracting -1 to the current value. For Gauges,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_experimental.h

    // Sets a custom Executor for the current thread. All nodes created by this
    // thread will be added to this Executor. It will override the current executor.
    TF_CAPI_EXPORT extern void TFE_ContextSetExecutorForThread(TFE_Context*,
                                                               TFE_Executor*);
    
    // Returns the Executor for the current thread.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/config/cluster.go

    	if !newControlPlane {
    		// gets the nodeRegistration for the current from the node object
    		kubeconfigFile := filepath.Join(kubeconfigDir, constants.KubeletKubeConfigFileName)
    		if err := GetNodeRegistration(kubeconfigFile, client, &initcfg.NodeRegistration); err != nil {
    			return nil, errors.Wrap(err, "failed to get node registration")
    		}
    		// gets the APIEndpoint for the current node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

            def currentOs = OperatingSystem.current()
            if (currentOs.macOsX) {
                // macOS coalesces the changes if the are in short succession
                return numberOfChangedFiles * numberOfChangesPerFile * LOST_EVENTS_RATIO_MAC_OS
            } else if (currentOs.linux) {
                // the JDK watchers only capture one event per watched path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top