Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,395 for implementMe (0.3 sec)

  1. guava/src/com/google/common/graph/AbstractNetwork.java

    import java.util.Set;
    import javax.annotation.CheckForNull;
    
    /**
     * This class provides a skeletal implementation of {@link Network}. It is recommended to extend
     * this class rather than implement {@link Network} directly.
     *
     * <p>The methods implemented in this class should not be overridden unless the subclass admits a
     * more efficient implementation.
     *
     * @author James Sexton
     * @param <N> Node parameter type
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/net/udpsock.go

    	"net/netip"
    	"syscall"
    )
    
    // BUG(mikio): On Plan 9, the ReadMsgUDP and
    // WriteMsgUDP methods of UDPConn are not implemented.
    
    // BUG(mikio): On Windows, the File method of UDPConn is not
    // implemented.
    
    // BUG(mikio): On JS, methods and functions related to UDPConn are not
    // implemented.
    
    // UDPAddr represents the address of a UDP end point.
    type UDPAddr struct {
    	IP   IP
    	Port int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/protobuf/protobuf.go

    		return errNotMarshalable{reflect.TypeOf(obj)}
    	}
    }
    
    // Identifier implements runtime.Encoder interface.
    func (s *Serializer) Identifier() runtime.Identifier {
    	return serializerIdentifier
    }
    
    // RecognizesData implements the RecognizingDecoder interface.
    func (s *Serializer) RecognizesData(data []byte) (bool, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:23 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  4. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/DefaultDependencyCoordinateResolverFactory.java

     * resolves dependencies using version mapping.
     */
    public class DefaultDependencyCoordinateResolverFactory implements DependencyCoordinateResolverFactory {
    
        /**
         * Determines whether we implement publication versionMapping with the legacy implementation
         * or the new dependency mapping implementation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/DefaultLoggingManager.java

                if (consoleAttachment.equals(this.consoleAttachment)) {
                    return;
                }
                if (this.consoleAttachment != null) {
                    throw new UnsupportedOperationException("Not implemented yet.");
                }
    
                if (originalState != null) {
                    // Already started
                    consoleAttachment.run();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

            to meet the notification object interfaces.
            Instead, the base types like BuildOperationDescriptor should implement them natively.
            However, this will require restructuring this type and associated things such as
            OperationStartEvent. This will happen later.
         */
        private static class Adapter implements BuildOperationListener {
    
            private final BuildOperationNotificationListener notificationListener;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

        }
    
        @ListenerService
        abstract class TestListenerService implements NotStatefulListener {
        }
    
        @EventScope(Scope.BuildTree)
        @StatefulListener
        interface TestListener {
            void something(String param)
        }
    
        abstract static class SubListener implements TestListener, Runnable {
        }
    
        @EventScope(Scope.BuildTree)
        @StatefulListener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorErrorHandlingIntegrationTest.groovy

        }
    
        def "produces a sensible error when the work action is not implemented properly"() {
            fixture.withWorkActionClassInBuildScript()
    
            buildFile << """
                abstract class BadWorkAction implements WorkAction<WorkParameters> {
                    @Inject
                    BadWorkAction() { }
    
                    void execute() { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/taskgraph/DefaultTaskExecutionGraph.java

                This is too drastic a change for the stage in the release cycle were exposing this information
                was necessary, therefore the minimal change solution was implemented.
             */
            return executionPlan.getContents().getFilteredTasks();
        }
    
        private void fireWhenReady() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/interface.go

    	Reject(pluginName, msg string)
    }
    
    // Plugin is the parent type for all the scheduling framework plugins.
    type Plugin interface {
    	Name() string
    }
    
    // PreEnqueuePlugin is an interface that must be implemented by "PreEnqueue" plugins.
    // These plugins are called prior to adding Pods to activeQ.
    // Note: an preEnqueue plugin is expected to be lightweight and efficient, so it's not expected to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top