Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 272 for facility (0.2 sec)

  1. src/runtime/coro.go

    package runtime
    
    import "unsafe"
    
    // A coro represents extra concurrency without extra parallelism,
    // as would be needed for a coroutine implementation.
    // The coro does not represent a specific coroutine, only the ability
    // to do coroutine-style control transfers.
    // It can be thought of as like a special channel that always has
    // a goroutine blocked on it. If another goroutine calls coroswitch(c),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

     *       However, utilities that <i>use</i> that executor have the ability to interrupt tasks
     *       running on it. This class, by contrast, does not expose an {@code Executor} API.)
     * </ul>
     *
     * <p>If you don't need the features of this class, you may prefer {@code newSequentialExecutor} for
     * its simplicity and ability to accommodate interruption.
     *
     * @since 26.0
     */
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/DomainObjectCollection.java

    import org.gradle.api.provider.Provider;
    import org.gradle.api.specs.Spec;
    
    import java.util.Collection;
    
    /**
     * <p>A {@code DomainObjectCollection} is a specialised {@link Collection} that adds the ability to receive modification notifications and use live filtered sub collections.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 31 01:48:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  4. pkg/kubelet/certificate/kubelet.go

    			},
    		},
    		SignerName: certificates.KubeAPIServerClientKubeletSignerName,
    		GetUsages:  certificate.DefaultKubeletClientGetUsages,
    		// For backwards compatibility, the kubelet supports the ability to
    		// provide a higher privileged certificate as initial data that will
    		// then be rotated immediately. This code path is used by kubeadm on
    		// the masters.
    		BootstrapCertificatePEM: bootstrapCertData,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

         * a no-op. We could log, but if that's what we really want, we should modify
         * AbstractFuture.executeListener to do so, since that method would have the ability to continue
         * to execute other listeners.
         *
         * What about RuntimeException? If there is a bug in set()/setValue() that produces one, it will
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. src/syscall/security_windows.go

    // The token identifies the user, the user's groups, and the user's
    // privileges. The system uses the token to control access to securable
    // objects and to control the ability of the user to perform various
    // system-related operations on the local computer.
    type Token Handle
    
    // OpenCurrentProcessToken opens the access token
    // associated with current process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. src/encoding/gob/decoder.go

    // If r does not also implement [io.ByteReader], it will be wrapped in a
    // [bufio.Reader].
    func NewDecoder(r io.Reader) *Decoder {
    	dec := new(Decoder)
    	// We use the ability to read bytes as a plausible surrogate for buffering.
    	if _, ok := r.(io.ByteReader); !ok {
    		r = bufio.NewReader(r)
    	}
    	dec.r = r
    	dec.wireType = make(map[typeId]*wireType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    }
    ----
    =====
    
    Let's apply a plugin to our project that is maintained and distributed by Gradle called the <<publishing_maven#publishing_maven,Maven Publish Plugin>>.
    The Maven Publish Plugin provides the ability to publish build artifacts to an https://maven.apache.org/[Apache Maven repository].
    It can also publish to Maven local which is a repository located on your machine.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    		case "system:aggregate-to-view":
    			ret.view = &role
    		}
    	}
    	return ret
    }
    
    // viewEscalatingNamespaceResources is the list of rules that would allow privilege escalation attacks based on
    // ability to view (GET) them
    var viewEscalatingNamespaceResources = []rbacv1.PolicyRule{
    	rbacv1helpers.NewRule(bootstrappolicy.Read...).Groups("").Resources("pods/attach").RuleOrDie(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/plugins/IvyPublishPlugin.java

    import org.gradle.model.Path;
    
    import javax.inject.Inject;
    import java.util.Set;
    import java.util.concurrent.atomic.AtomicBoolean;
    
    import static org.apache.commons.lang.StringUtils.capitalize;
    
    /**
     * Adds the ability to publish in the Ivy format to Ivy repositories.
     *
     * @see <a href="https://docs.gradle.org/current/userguide/publishing_ivy.html">Ivy Publishing reference</a>
     * @since 1.3
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.1K bytes
    - Viewed (1)
Back to top