Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,395 for implementMe (0.26 sec)

  1. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * as {@code execute} and {@code invokeAny}, are implemented in terms of calls to {@code
       * delegate.execute}. All other methods are forwarded unchanged to the delegate. This implies that
       * the returned {@code ListeningExecutorService} never calls the delegate's {@code submit}, {@code
       * invokeAll}, and {@code invokeAny} methods, so any special handling of tasks must be implemented
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/issues_test.go

    	}
    	if !Comparable(comparableType) {
    		t.Error("comparable is not a comparable type")
    	}
    
    	if Implements(anyType, comparableType.Underlying().(*Interface)) {
    		t.Error("any implements comparable")
    	}
    	if !Implements(comparableType, anyType.(*Interface)) {
    		t.Error("comparable does not implement any")
    	}
    
    	if AssignableTo(anyType, comparableType) {
    		t.Error("any assignable to comparable")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DeclarativeDslTestProjectGenerator.groovy

                import org.gradle.api.experimental.jvm.HasJvmApplication;
                import org.gradle.declarative.dsl.model.annotations.Restricted;
    
                /**
                 * An application implemented using a single version of Java.
                 */
                @Restricted
                public interface JavaApplication extends HasJavaTarget, HasJvmApplication {
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/Types.java

       * AnnotatedElement}, which {@code TypeVariable} began to extend only in Java 8. Those methods
       * refer only to types present in Java 7, so we could implement them in {@code TypeVariableImpl}
       * today. (We could probably then make {@code TypeVariableImpl} implement {@code AnnotatedElement}
       * so that we get partial compile-time checking.)
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. src/crypto/internal/mlkem768/mlkem768.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package mlkem768 implements the quantum-resistant key encapsulation method
    // ML-KEM (formerly known as Kyber).
    //
    // Only the recommended ML-KEM-768 parameter set is provided.
    //
    // The version currently implemented is the one specified by [NIST FIPS 203 ipd],
    // with the unintentional transposition of the matrix A reverted to match the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  6. pkg/registry/core/namespace/storage/storage.go

    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // rest implements a RESTStorage for namespaces
    type REST struct {
    	store  *genericregistry.Store
    	status *genericregistry.Store
    }
    
    // StatusREST implements the REST endpoint for changing the status of a namespace.
    type StatusREST struct {
    	store *genericregistry.Store
    }
    
    // FinalizeREST implements the REST endpoint for finalizing a namespace.
    type FinalizeREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/meta/meta.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/klog/v2"
    )
    
    // errNotList is returned when an object implements the Object style interfaces but not the List style
    // interfaces.
    var errNotList = fmt.Errorf("object does not implement the List interfaces")
    
    var errNotCommon = fmt.Errorf("object does not implement the common interface for accessing the SelfLink")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 16.5K bytes
    - Viewed (0)
  8. pkg/controller/replication/conversion.go

    	return nil, errors.New("Watch() is not implemented for conversionClient")
    }
    
    func (c conversionClient) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *apps.ReplicaSet, err error) {
    	// This is not used by RSC.
    	return nil, errors.New("Patch() is not implemented for conversionClient")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 18:43:33 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  9. src/encoding/xml/read.go

    //
    //   - A struct field with tag "-" is never unmarshaled into.
    //
    // If Unmarshal encounters a field type that implements the Unmarshaler
    // interface, Unmarshal calls its UnmarshalXML method to produce the value from
    // the XML element.  Otherwise, if the value implements
    // [encoding.TextUnmarshaler], Unmarshal calls that value's UnmarshalText method.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  10. cmd/ftp-server-driver.go

    	"github.com/minio/pkg/v3/mimedb"
    	ftp "goftp.io/server/v2"
    )
    
    var _ ftp.Driver = &ftpDriver{}
    
    // ftpDriver implements ftpDriver to store files in minio
    type ftpDriver struct {
    	endpoint string
    }
    
    // NewFTPDriver implements ftp.Driver interface
    func NewFTPDriver() ftp.Driver {
    	return &ftpDriver{endpoint: fmt.Sprintf("127.0.0.1:%s", globalMinioPort)}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top