Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 608 for perror (0.09 sec)

  1. pkg/volume/noop_expandable_plugin.go

    	return newSize, nil
    }
    
    func (n *noopExpandableVolumePluginInstance) Init(host VolumeHost) error {
    	return nil
    }
    
    func (n *noopExpandableVolumePluginInstance) GetPluginName() string {
    	return n.spec.KubeletExpandablePluginName()
    }
    
    func (n *noopExpandableVolumePluginInstance) GetVolumeName(spec *Spec) (string, error) {
    	return n.spec.Name(), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubtypingComponent.kt

    /**
     * [KaSubtypingErrorTypePolicy] determines the treatment of error types in type equality and subtyping checks.
     */
    public enum class KaSubtypingErrorTypePolicy {
        /**
         * Error types are not considered equal to or subtypes of any other type.
         *
         * [STRICT] is the default policy for the following reasons:
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoPlugins/PluginsDemo.kt

        @Test
        fun `type mismatch in assignments is reported as an error`() {
            val result = schema.resolve(
                """
                plugins {
                    val i = id("test")
                    i.version = 1
                }
                """.trimIndent()
            )
            val error = result.errors.singleOrNull()
            assertNotNull(error)
            val reason = error.errorReason
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/hash/fnv/fnv.go

    	if len(b) < len(magic32) || string(b[:len(magic32)]) != magic32 {
    		return errors.New("hash/fnv: invalid hash state identifier")
    	}
    	if len(b) != marshaledSize32 {
    		return errors.New("hash/fnv: invalid hash state size")
    	}
    	*s = sum32(byteorder.BeUint32(b[4:]))
    	return nil
    }
    
    func (s *sum32a) UnmarshalBinary(b []byte) error {
    	if len(b) < len(magic32a) || string(b[:len(magic32a)]) != magic32a {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/OverlayRoutedDataContainers.kt

    internal
    class OverlayRoutedNodeDataContainer<DNode, DElement : DNode, DProperty : DNode, DError : DNode>(
        private val overlayOriginContainer: OverlayOriginContainer,
        private val underlay: NodeDataContainer<DNode, DElement, DProperty, DError>,
        private val overlay: NodeDataContainer<DNode, DElement, DProperty, DError>
    ) : NodeDataContainer<DNode, DElement, DProperty, DError> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/config/v1alpha1/zz_generated.conversion.go

    // RegisterConversions adds conversion functions to the given scheme.
    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    	if err := s.AddGeneratedConversionFunc((*v1alpha1.GroupResource)(nil), (*v1.GroupResource)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1alpha1_GroupResource_To_v1_GroupResource(a.(*v1alpha1.GroupResource), b.(*v1.GroupResource), scope)
    	}); err != nil {
    		return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. src/net/iprawsock_posix.go

    	}
    	return syscall.AF_INET6
    }
    
    func (a *IPAddr) sockaddr(family int) (syscall.Sockaddr, error) {
    	if a == nil {
    		return nil, nil
    	}
    	return ipToSockaddr(family, a.IP, 0, a.Zone)
    }
    
    func (a *IPAddr) toLocal(net string) sockaddr {
    	return &IPAddr{loopbackIP(net), a.Zone}
    }
    
    func (c *IPConn) readFrom(b []byte) (int, *IPAddr, error) {
    	// TODO(cw,rsc): consider using readv if we know the family
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/os/exec_unix.go

    func convertESRCH(err error) error {
    	if err == syscall.ESRCH {
    		return ErrProcessDone
    	}
    	return err
    }
    
    func (p *Process) release() error {
    	// We clear the Pid field only for API compatibility. On Unix, Release
    	// has always set Pid to -1. Internally, the implementation relies
    	// solely on statusReleased to determine that the Process is released.
    	p.Pid = pidReleased
    
    	switch p.mode {
    	case modeHandle:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. test/fixedbugs/issue28268.go

    func _() {
    	var x T
    	_ = x.a
    	_ = x.b // no follow-on error here
    	x.b()   // no follow-on error here
    	_ = x.c
    	_ = x.E // no follow-on error here
    	x.E()   // no follow-on error here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 764 bytes
    - Viewed (0)
  10. pkg/test/framework/components/namespace/kube.go

    	return nil
    }
    
    func (n *kubeNamespace) forEachCluster(fn func(i int, c cluster.Cluster) error) error {
    	errG := multierror.Group{}
    	for i, c := range n.ctx.AllClusters() {
    		i, c := i, c
    		errG.Go(func() error {
    			return fn(i, c)
    		})
    	}
    	return errG.Wait().ErrorOrNil()
    }
    
    func (n *kubeNamespace) addCleanup(fn func() error) {
    	n.cleanupMutex.Lock()
    	defer n.cleanupMutex.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top