Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,144 for Allows (0.19 sec)

  1. src/go/types/util.go

    // different between go/types and types2. Factoring
    // out this code allows more of the rest of the code
    // to be shared.
    
    package types
    
    import (
    	"go/ast"
    	"go/constant"
    	"go/token"
    )
    
    const isTypes2 = false
    
    // cmpPos compares the positions p and q and returns a result r as follows:
    //
    // r <  0: p is before q
    // r == 0: p and q are the same position (but may not be identical)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/runtime/time_nofake.go

    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname nanotime
    //go:nosplit
    func nanotime() int64 {
    	return nanotime1()
    }
    
    // overrideWrite allows write to be redirected externally, by
    // linkname'ing this and set it to a write function.
    //
    // overrideWrite should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// alternative and allows upgrading to an alpha/beta/release candidate version of Kubernetes.
    	// Default: false
    	// +optional
    	AllowExperimentalUpgrades *bool `json:"allowExperimentalUpgrades,omitempty"`
    
    	// Enable AllowRCUpgrades will show release candidate versions of Kubernetes as an upgrade alternative and
    	// allows upgrading to a release candidate version of Kubernetes.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionProvider.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.resolve.extensions
    
    import com.intellij.openapi.extensions.ExtensionPointName
    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    /**
     * Allows extending Kotlin resolution by generating additional declarations.
     *
     * Those declarations will be analyzed the same way as they were just regular source files inside the project.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1/types.go

    	// (and cluster policy otherwise allows the traffic), OR if the traffic source is
    	// the pod's local node, OR if the traffic matches at least one ingress rule
    	// across all of the NetworkPolicy objects whose podSelector matches the pod. If
    	// this field is empty then this NetworkPolicy does not allow any traffic (and serves
    	// solely to ensure that the pods it selects are isolated by default)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/Choice.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.userinput;
    
    import java.util.function.Function;
    
    /**
     * Asks the user to select an option from a list of options. Allows the choice to be configured in various ways.
     *
     * @param <T> The type of the options of this choice.
     */
    public interface Choice<T> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelCache.java

     * formed by a combination of group id, artifact id, version and tag. The first three components generally refer to the
     * identity of a model. The tag allows for further classification of the associated data on the sole discretion of the
     * model builder.
     *
     */
    public interface ModelCache {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/ConfigurationMetadataFactory.java

    import java.util.Set;
    import java.util.function.Consumer;
    
    /**
     * Constructs {@link LocalConfigurationGraphResolveMetadata} instances advertised by a
     * {@link DefaultLocalComponentGraphResolveState} instance. This allows the component state to
     * source configuration data from multiple sources, both lazy and eager.
     */
    public interface ConfigurationMetadataFactory {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/util.go

    // different between go/types and types2. Factoring
    // out this code allows more of the rest of the code
    // to be shared.
    
    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"go/constant"
    	"go/token"
    )
    
    const isTypes2 = true
    
    // cmpPos compares the positions p and q and returns a result r as follows:
    //
    // r <  0: p is before q
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Mojo.java

    @FunctionalInterface
    @Consumer
    public interface Mojo {
        /**
         * Perform whatever build-process behavior this {@code Mojo} implements.
         * This is the main trigger for the {@code Mojo} inside the Maven system,
         * and allows the {@code Mojo} to communicate errors.
         *
         * @throws MojoException if a problem occurs
         */
        void execute();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top