Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 584 for indicators (0.38 sec)

  1. src/internal/abi/rangefuncconsts.go

    // license that can be found in the LICENSE file.
    
    package abi
    
    type RF_State int
    
    // These constants are shared between the compiler, which uses them for state functions
    // and panic indicators, and the runtime, which turns them into more meaningful strings
    // For best code generation, RF_DONE and RF_READY should be 0 and 1.
    const (
    	RF_DONE          = RF_State(iota) // body of loop has exited in a non-panic way
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:04:30 UTC 2024
    - 940 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    // en-US.
    func RegionalID(t Tag) (id ID, exact bool) {
    	return t.locale, t.full == nil
    }
    
    // LanguageTag returns t stripped of regional variant indicators.
    //
    // At the moment this means it is stripped of a regional and variant subtag "rg"
    // and "va" in the "u" extension.
    func (t Tag) LanguageTag() Tag {
    	if t.full == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/sig/sig_amd64.s

    // These functions are no-ops, but you can search for their implementations
    // to find out whether they are linked into a particular binary.
    //
    // Each function consists of a two-byte jump over the next 29-bytes,
    // then a 5-byte indicator sequence unlikely to occur in real x86 instructions,
    // then a randomly-chosen 24-byte sequence, and finally a return instruction
    // (the target of the jump).
    //
    // These sequences are known to rsc.io/goversion.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:58:43 UTC 2017
    - 2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/NtlmFlags.java

     */
    public interface NtlmFlags {
    
        /**
         * Indicates whether Unicode strings are supported or used.
         */
        public static final int NTLMSSP_NEGOTIATE_UNICODE = 0x00000001;
    
        /**
         * Indicates whether OEM strings are supported or used.
         */
        public static final int NTLMSSP_NEGOTIATE_OEM = 0x00000002;
    
        /**
         * Indicates whether the authentication target is requested from
         * the server.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionSelector.java

     */
    public interface VersionSelector {
        /**
         * Indicates if the given version selector is dynamic.
         */
        boolean isDynamic();
    
        /**
         * Indicates if module metadata is required to determine if the
         * selector matches a candidate version.
         */
        boolean requiresMetadata();
    
        /**
         * Indicates if the selector implies that it matches only a single version.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    [[catalog_file_does_not_exist]]
    == Catalog file doesn't exist
    
    This error indicates that you tried to import a catalog file, but the file doesn't exist.
    
    Make sure that it's not a typo, and if not, that the catalog file exists _before_ importing it.
    
    [[invalid_alias_notation]]
    == Invalid alias or bundle notation
    
    This error indicates that you have used an alias (or bundle) name which isn't supported by Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/attributes/Bundling.java

     *     <li>
     *         Jar component:
     *         <ul>
     *             <li>{@code external} indicates that transitive dependencies are themselves component jars</li>
     *             <li>{@code embedded} indicates that transitive dependencies have been included inside the component jar, without modifying their packages</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  8. src/runtime/metrics/value.go

    // ValueKind is a tag for a metric [Value] which indicates its type.
    type ValueKind int
    
    const (
    	// KindBad indicates that the Value has no type and should not be used.
    	KindBad ValueKind = iota
    
    	// KindUint64 indicates that the type of the Value is a uint64.
    	KindUint64
    
    	// KindFloat64 indicates that the type of the Value is a float64.
    	KindFloat64
    
    	// KindFloat64Histogram indicates that the type of the Value is a *Float64Histogram.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

     */
    public interface NtlmFlags {
    
        /**
        * Indicates whether Unicode strings are supported or used.
        */
        public static final int NTLMSSP_NEGOTIATE_UNICODE = 0x00000001;
    
        /**
        * Indicates whether OEM strings are supported or used.
        */
        public static final int NTLMSSP_NEGOTIATE_OEM = 0x00000002;
    
        /**
        * Indicates whether the authentication target is requested from
        * the server.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  10. pkg/controller/endpointslicemirroring/events.go

    package endpointslicemirroring
    
    const (
    	// FailedToListEndpointSlices indicates the controller has failed to list
    	// EndpointSlices.
    	FailedToListEndpointSlices = "FailedToListEndpointSlices"
    	// FailedToUpdateEndpointSlices indicates the controller has failed to
    	// update EndpointSlices.
    	FailedToUpdateEndpointSlices = "FailedToUpdateEndpointSlices"
    	// InvalidIPAddress indicates that an IP address found in an Endpoints
    	// resource is invalid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 06 19:43:35 UTC 2020
    - 1.3K bytes
    - Viewed (0)
Back to top