Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 246 for retractions (0.4 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionFile.kt

         * 2. All classifier names should be contained in the [getTopLevelClassifierNames].
         * 3. All callable names should be contained in the [getTopLevelCallableNames].
         *
         * Additional restrictions on the file text:
         * 1. The File should not contain the `kotlin.jvm.JvmMultifileClass` and `kotlin.jvm.JvmName` annotations on the file level.
         * 2. All declaration types should be specified explicitly.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/ListenableFuture.java

    import jsinterop.annotations.JsType;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Java super source for ListenableFuture, implementing a structural thenable via a default method.
     * For restrictions, please refer to the documentation of the then() method.
     */
    @ElementTypesAreNonnullByDefault
    public interface ListenableFuture<V extends @Nullable Object> extends Future<V>, IThenable<V> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 24 18:27:19 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. docs/ftp/README.md

      use basic "readwrite" canned policy to test all the operations before you finalize on what level
      of restrictions are needed for a user.
    
    - No "admin:*" operations are needed for FTP/SFTP access to the bucket(s) and object(s), so you may
      skip them for restrictions.
    
    ## Usage
    
    Start MinIO in a distributed setup, with 'ftp/sftp' enabled.
    
    ```
    minio server http://server{1...4}/disk{1...4}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSetNodeInitializerExtractionStrategy.java

            public ModelSetNodeInitializer(CollectionSchema<T, E> schema) {
                this.schema = schema;
            }
    
            @Override
            public Multimap<ModelActionRole, ModelAction> getActions(ModelReference<?> subject, ModelRuleDescriptor descriptor) {
                return ImmutableSetMultimap.<ModelActionRole, ModelAction>builder()
                    .put(ModelActionRole.Discover, AddProjectionsAction.of(subject, descriptor,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. src/crypto/x509/boring_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	cert, err := ParseCertificate(der)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Tell isBoringCertificate to enforce FIPS restrictions for this check.
    	fipstls.Force()
    	defer fipstls.Abandon()
    
    	fipsOK := mode&boringCertFIPSOK != 0
    	if boringAllowCert(cert) != fipsOK {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 17:38:47 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. src/go/types/under.go

    // type set contains only unrestricted and restricted channel types (with
    // identical element types), the single underlying type is the restricted
    // channel type if the restrictions are always the same, or nil otherwise.
    func coreType(t Type) Type {
    	t = Unalias(t)
    	tpar, _ := t.(*TypeParam)
    	if tpar == nil {
    		return under(t)
    	}
    
    	var su Type
    	if tpar.underIs(func(u Type) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/optimize_no_verify.mlir

    // Run optimize pass only and check the results.
    // Tests in this file for optimization patterns that doesn't match
    // TFLite runtime restrictions.
    // RUN: tf-opt %s -tfl-optimize | FileCheck %s
    
    // CHECK-LABEL: fuseScalarAddIntoConv2dHalf
    func.func @fuseScalarAddIntoConv2dHalf(%arg0: tensor<256x32x32x3xf16>, %arg1: tensor<16x3x3x3xf16>) -> tensor<256x8x7x16xf16> {
      %cst = arith.constant dense<1.5> : tensor<f16>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/types.go

    		if err != nil {
    			return true // invalid type (possibly an empty type set)
    		}
    
    		if len(terms) == 0 {
    			// No restrictions on the underlying of typ. Type parameters implementing
    			// error, fmt.Formatter, or fmt.Stringer were handled above, and %v and
    			// %T was handled in matchType. We're about to check restrictions the
    			// underlying; if the underlying type is unrestricted there must be an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. pkg/apis/rbac/validation/validation.go

    		}
    
    	case rbac.UserKind:
    		// TODO(ericchiang): What other restrictions on user name are there?
    		if subject.APIGroup != rbac.GroupName {
    			allErrs = append(allErrs, field.NotSupported(fldPath.Child("apiGroup"), subject.APIGroup, []string{rbac.GroupName}))
    		}
    
    	case rbac.GroupKind:
    		// TODO(ericchiang): What other restrictions on group name are there?
    		if subject.APIGroup != rbac.GroupName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:48:21 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers.go

    		t.Reset(nil)
    		gzipPool.Put(t)
    	}
    	return err
    }
    
    // WriteObjectNegotiated renders an object in the content type negotiated by the client.
    func WriteObjectNegotiated(s runtime.NegotiatedSerializer, restrictions negotiation.EndpointRestrictions, gv schema.GroupVersion, w http.ResponseWriter, req *http.Request, statusCode int, object runtime.Object, listGVKInContentType bool) {
    	stream, ok := object.(rest.ResourceStreamer)
    	if ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top