Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 9,567 for Implements (0.56 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/process/internal/ErrorInWorkerSocketIntegrationTest.groovy

        def "worker won't hang when error occurs in socket connection"() {
            given:
            requireOwnGradleUserHomeDir()
    
            file('buildSrc/src/main/java/Param.java') << """
    import java.io.*;
    public class Param implements Serializable {
        private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
            throw new IllegalStateException("$MESSAGE");
        }
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

    import static org.apache.maven.internal.impl.Lifecycles.plugin;
    
    /**
     * TODO: this is session scoped as SPI can contribute.
     */
    @Named
    @Singleton
    public class DefaultLifecycleRegistry implements LifecycleRegistry {
    
        private final List<LifecycleProvider> providers;
    
        public DefaultLifecycleRegistry() {
            this(Collections.emptyList());
        }
    
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGMultiVersionTest.groovy

                // TODO implement this if needed
                throw new UnsupportedOperationException()
            }
    
            @Override
            String getExcludeCategoryOrTagConfigurationElement() {
                // TODO implement this if needed
                throw new UnsupportedOperationException()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/ManagedFactories.java

    import org.gradle.internal.Cast;
    import org.gradle.internal.state.ManagedFactory;
    
    import java.io.File;
    
    public class ManagedFactories {
    
        public static class RegularFileManagedFactory implements ManagedFactory {
            private static final Class<?> PUBLIC_TYPE = RegularFile.class;
            public static final int FACTORY_ID = Objects.hashCode(PUBLIC_TYPE.getName());
            private final FileFactory fileFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. pkg/registry/flowcontrol/prioritylevelconfiguration/storage/storage.go

    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // PriorityLevelConfigurationStorage implements storage for priority level configuration.
    type PriorityLevelConfigurationStorage struct {
    	PriorityLevelConfiguration *REST
    	Status                     *StatusREST
    }
    
    // REST implements a RESTStorage for priority level configuration against etcd
    type REST struct {
    	*genericregistry.Store
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 15:11:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/route/interface.go

    	Version int    // message version
    	Type    int    // message type
    	Flags   int    // interface flags
    	Index   int    // interface index
    	Addrs   []Addr // addresses
    
    	raw []byte // raw message
    }
    
    // Sys implements the Sys method of Message interface.
    func (m *InterfaceAddrMessage) Sys() []Sys { return nil }
    
    // An InterfaceMulticastAddrMessage represents an interface multicast
    // address message.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/fake.go

    limitations under the License.
    */
    
    package responsewriter
    
    import (
    	"bufio"
    	"net"
    	"net/http"
    )
    
    var _ http.ResponseWriter = &FakeResponseWriter{}
    
    // FakeResponseWriter implements http.ResponseWriter,
    // it is used for testing purpose only
    type FakeResponseWriter struct{}
    
    func (fw *FakeResponseWriter) Header() http.Header          { return http.Header{} }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 01 19:58:11 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v1_gen.go

    import (
    	"github.com/tinylib/msgp/msgp"
    )
    
    // DecodeMsg implements msgp.Decodable
    func (z *BitrotAlgorithm) DecodeMsg(dc *msgp.Reader) (err error) {
    	{
    		var zb0001 uint
    		zb0001, err = dc.ReadUint()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = BitrotAlgorithm(zb0001)
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  9. pkg/registry/apps/replicaset/storage/storage.go

    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"rs"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. internal/grid/grid_types_msgp_test.go

    package grid
    
    // Code generated by github.com/tinylib/msgp DO NOT EDIT.
    
    import (
    	"github.com/tinylib/msgp/msgp"
    )
    
    // DecodeMsg implements msgp.Decodable
    func (z *testRequest) DecodeMsg(dc *msgp.Reader) (err error) {
    	var field []byte
    	_ = field
    	var zb0001 uint32
    	zb0001, err = dc.ReadMapHeader()
    	if err != nil {
    		err = msgp.WrapError(err)
    		return
    	}
    	for zb0001 > 0 {
    		zb0001--
    		field, err = dc.ReadMapKeyPtr()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top