Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 174 for Transformed (0.22 sec)

  1. android/guava/src/com/google/common/reflect/TypeResolver.java

       * List<A extends String>}, we need to compare that {@code <A extends B>} is unequal to {@code <A
       * extends String>} in order to decide to use the transformed type instead of the original type.
       */
      static final class TypeVariableKey {
        private final TypeVariable<?> var;
    
        TypeVariableKey(TypeVariable<?> var) {
          this.var = checkNotNull(var);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    		StrictDomainName(true)(o)
    		ValidateLabels(true)(o)
    		VerifyDNSLength(true)(o)
    		BidiRule()(o)
    	}
    }
    
    // MapForLookup sets validation and mapping options such that a given IDN is
    // transformed for domain name lookup according to the requirements set out in
    // Section 5 of RFC 5891. The mappings follow the recommendations of RFC 5894,
    // RFC 5895 and UTS 46. It does not add the Bidi Rule. Use the BidiRule option
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/TypeResolver.java

       * List<A extends String>}, we need to compare that {@code <A extends B>} is unequal to {@code <A
       * extends String>} in order to decide to use the transformed type instead of the original type.
       */
      static final class TypeVariableKey {
        private final TypeVariable<?> var;
    
        TypeVariableKey(TypeVariable<?> var) {
          this.var = checkNotNull(var);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  4. docs/LICENSE

      a. Adapted Material means material subject to Copyright and Similar
         Rights that is derived from or based upon the Licensed Material
         and in which the Licensed Material is translated, altered,
         arranged, transformed, or otherwise modified in a manner requiring
         permission under the Copyright and Similar Rights held by the
         Licensor. For purposes of this Public License, where the Licensed
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 10 16:50:06 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      return std::nullopt;
    }
    
    // Checks if a convoluton can apply SpaceToDepth transform.
    // Only the first convolution in the graph whose batch size smaller than 8
    // and its input feature size smaller than 8 can be transformed.
    std::optional<BlockArgumentInfo> GetConv2DInputArgNum(TF::Conv2DOp conv2d) {
      if (conv2d.getDataFormat() != "NHWC" || conv2d.getStrides().size() != 4) {
        return std::nullopt;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    		StrictDomainName(true)(o)
    		ValidateLabels(true)(o)
    		VerifyDNSLength(true)(o)
    		BidiRule()(o)
    	}
    }
    
    // MapForLookup sets validation and mapping options such that a given IDN is
    // transformed for domain name lookup according to the requirements set out in
    // Section 5 of RFC 5891. The mappings follow the recommendations of RFC 5894,
    // RFC 5895 and UTS 46. It does not add the Bidi Rule. Use the BidiRule option
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Collections2.java

       * fromCollection} supports them.
       *
       * <p>The returned collection isn't threadsafe or serializable, even if {@code fromCollection} is.
       *
       * <p>When a live view is <i>not</i> needed, it may be faster to copy the transformed collection
       * and use the copy.
       *
       * <p>If the input {@code Collection} is known to be a {@code List}, consider {@link
       * Lists#transform}. If only an {@code Iterable} is available, use {@link Iterables#transform}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    the link:{javadocPath}/org/gradle/api/artifacts/ResolvableDependencies.html#artifactView-org.gradle.api.Action-[artifact view API] provides an advanced, filtered view of artifacts, possibly <<artifact_transforms.adoc#sec:abm_artifact_transforms,transformed>>.
    
    NOTE: See the documentation on <<incremental_build.adoc#sec:task_input_using_dependency_resolution_results, using dependency resolution results>> for more details on how to consume the results in a task....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	if transformer := transformerOverrides[resource]; transformer != nil {
    		return transformer
    	}
    
    	if transformer := transformerOverrides[schema.GroupResource{
    		Group:    resource.Group,
    		Resource: "*",
    	}]; transformer != nil {
    		return transformer
    	}
    
    	if transformer := transformerOverrides[anyGroupAnyResource]; transformer != nil {
    		return transformer
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    	// typeToGVK allows one to find metadata for a given go object.
    	// The reflect.Type we index by should *not* be a pointer.
    	typeToGVK map[reflect.Type][]schema.GroupVersionKind
    
    	// unversionedTypes are transformed without conversion in ConvertToVersion.
    	unversionedTypes map[reflect.Type]schema.GroupVersionKind
    
    	// unversionedKinds are the names of kinds that can be created in the context of any group
    	// or version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
Back to top