Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for Primitive (0.24 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                    type('MyTask').property('primitive')
                        .primitive(primitiveType)
                }, "validation_problems", "cannot_use_optional_on_primitive_types"),
            ])
    
            and:
            if (isProblemsApiCheckEnabled()) {
                verifyAll(receivedProblem) {
                    fqid == 'validation:property-validation:cannot-use-optional-on-primitive-types'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/CollectSpliterators.java

      }
    
      /**
       * Implementation of {@link Stream#flatMap} with a primitive spliterator output type.
       *
       * @param <InElementT> the element type of the input spliterator
       * @param <OutElementT> the (boxed) element type of the output spliterators
       * @param <OutConsumerT> the specialized consumer type for the primitive output type
       * @param <OutSpliteratorT> the primitive spliterator type associated with {@code OutElementT}
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

      let summary = "Decompose composite resource variable operations into primitive Read/AssignVariableOp and raw computation.";
    
      let description = [{
        A pass that decomposes composite resource operations into primitive ones like
        ReadVariableOp, AssignVariableOp and other computations to facilitate
        transformations like resource op lifting.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

            }
    
        /**
         * Returns whether the given [KaType] is an array or a primitive array type or not.
         */
        public fun KaType.isArrayOrPrimitiveArray(): Boolean =
            withValidityAssertion { analysisSession.typeInfoProvider.isArrayOrPrimitiveArray(this) }
    
        /**
         * Returns whether the given [KaType] is an array or a primitive array type and its element is also an array type or not.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/helpers_test.go

    		}
    	}
    }
    
    // allPrimitiveFieldPaths returns the set of field paths in type `tp`, rooted at `path`.
    // It recursively descends into the definition of type `tp` accumulating paths to primitive leaf fields or paths in `skipRecurseList`.
    func allPrimitiveFieldPaths(t *testing.T, skipRecurseList sets.Set[string], tp reflect.Type, path *field.Path) sets.Set[string] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

                .and(not(inGradlePublicApiPackages()))
                .and(not(inTestFixturePackages()))
                .as("in Gradle internal API packages");
        }
    
        DescribedPredicate<JavaClass> primitive = new DescribedPredicate<JavaClass>("primitive") {
            @Override
            public boolean test(JavaClass input) {
                return input.isPrimitive();
            }
        };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.configuration.inputs;
    
    import com.google.common.primitives.Primitives;
    
    import javax.annotation.Nullable;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.io.PrintStream;
    import java.io.PrintWriter;
    import java.io.Reader;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/ir/UniformSupport.h

    namespace mlir::quantfork {
    
    // Performs type conversion from an arbitrary input type to a type
    // that is expressed by a QuantizedType.
    //
    // This handles cases where the inputType is a supported primitive type
    // (i.e. f32, bf16, etc) or a vector/tensor type based on a supported
    // elemental type.
    //
    // Since conversion often involves introspecting some attributes of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            where:
            [operator, orElseKind] << [
                ['systemProperty', 'environmentVariable'],
                ['primitive', 'provider', 'task output']
            ].combinations()
            orElseArgument = orElseKind == 'primitive'
                ? '"absent"'
                : orElseKind == 'provider'
                ? 'providers.provider { "absent" }'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/quantize_preprocess.cc

      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::mhlo::createLegalizeEinsumToDotGeneralPass());
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::mhlo::createLegalizeDotToDotGeneralPass());
      // Unfuse mhlo BatchNorm to primitive ops.
      pm.addNestedPass<mlir::func::FuncOp>(mlir::odml::createUnfuseBatchNormPass());
      // Fuse Conv + Mul to Conv.
      pm.addNestedPass<mlir::func::FuncOp>(mlir::odml::createFuseConvolutionPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top