Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,034 for indicators (0.17 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/time/zoneinfo_read.go

    		case '2':
    			version = 2
    		case '3':
    			version = 3
    		default:
    			return nil, errBadData
    		}
    	}
    
    	// six big-endian 32-bit integers:
    	//	number of UTC/local indicators
    	//	number of standard/wall indicators
    	//	number of leap seconds
    	//	number of transition times
    	//	number of local time zones
    	//	number of characters of time zone abbrev strings
    	const (
    		NUTCLocal = iota
    		NStdWall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. 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)
  4. src/image/gif/reader.go

    	gcTransparentColorSet = 1 << 0
    	gcDisposalMethodMask  = 7 << 2
    )
    
    // Disposal Methods.
    const (
    	DisposalNone       = 0x01
    	DisposalBackground = 0x02
    	DisposalPrevious   = 0x03
    )
    
    // Section indicators.
    const (
    	sExtension       = 0x21
    	sImageDescriptor = 0x2C
    	sTrailer         = 0x3B
    )
    
    // Extensions.
    const (
    	eText           = 0x01 // Plain Text
    	eGraphicControl = 0xF9 // Graphic Control
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. pkg/model/proxy.go

    	// IstioProxySHA is the SHA of the proxy version.
    	IstioProxySHA string `json:"ISTIO_PROXY_SHA,omitempty"`
    }
    
    // TrafficInterceptionMode indicates how traffic to/from the workload is captured and
    // sent to Envoy. This should not be confused with the CaptureMode in the API that indicates
    // how the user wants traffic to be intercepted for the listener. TrafficInterceptionMode is
    // always derived from the Proxy metadata
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/kubelet/container/testing/runtime_mock.go

    func (m *MockVersion) Compare(other string) (int, error) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "Compare", other)
    	ret0, _ := ret[0].(int)
    	ret1, _ := ret[1].(error)
    	return ret0, ret1
    }
    
    // Compare indicates an expected call of Compare.
    func (mr *MockVersionMockRecorder) Compare(other any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. pkg/kubelet/server/stats/testing/mock_stats_provider.go

    	ret := m.ctrl.Call(m, "GetCgroupCPUAndMemoryStats", cgroupName, updateStats)
    	ret0, _ := ret[0].(*v1alpha1.ContainerStats)
    	ret1, _ := ret[1].(error)
    	return ret0, ret1
    }
    
    // GetCgroupCPUAndMemoryStats indicates an expected call of GetCgroupCPUAndMemoryStats.
    func (mr *MockProviderMockRecorder) GetCgroupCPUAndMemoryStats(cgroupName, updateStats any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. 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)
Back to top