Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 428 for Primitive (0.33 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "has-tostringtag": "^1.0.0"
          },
          "engines": {
            "node": ">= 0.4"
          }
        },
        "node_modules/es-to-primitive": {
          "version": "1.2.1",
          "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
          "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
          "dev": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'empty-segments' : 'Empty segments',
            'validation:property-validation:annotation-invalid-in-context' : 'Invalid annotation in context',
            'validation:property-validation:cannot-use-optional-on-primitive-types' : 'Property should be annotated with @Optional',
            'validation:property-validation:cannot-write-output' : 'Property is not writable',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            !propertyNames.contains("notString")
        }
    
        /**
         * See <a href="https://issues.apache.org/jira/browse/GROOVY-10708">GROOVY-10708</a>
         */
        def "is methods with non-primitive boolean return type are not considered properties by Gradle, Groovy nor Java"() {
            assumeTrue('This test requires bundled Groovy 4 or later', VersionNumber.parse(GroovySystem.version).major >= 4)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/crypto/crypto.go

    type Decrypter interface {
    	// Public returns the public key corresponding to the opaque,
    	// private key.
    	Public() PublicKey
    
    	// Decrypt decrypts msg. The opts argument should be appropriate for
    	// the primitive used. See the documentation in each implementation for
    	// details.
    	Decrypt(rand io.Reader, msg []byte, opts DecrypterOpts) (plaintext []byte, err error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaPropertyReflectionUtilTest.groovy

            then:
            //we do not know which 'myProperty' setter is picked, as both fit equally well
            noExceptionThrown()
        }
    
        def "cannot write primitive type properties if type is unknown"() {
            when:
            writeableProperty(JavaTestSubject, "myBooleanProperty", null)
    
            then:
            def e = thrown(NoSuchPropertyException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/reflect/TypeToken.java

        if (isPrimitive()) {
          @SuppressWarnings("unchecked") // this is a primitive class
          Class<T> type = (Class<T>) runtimeType;
          return of(Primitives.wrap(type));
        }
        return this;
      }
    
      private boolean isWrapper() {
        return Primitives.allWrapperTypes().contains(runtimeType);
      }
    
      /**
       * Returns the corresponding primitive type if this is a wrapper type; otherwise returns {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributes.java

        }
    
        @Override
        public Object get() {
            return value.isolate();
        }
    
        @Nullable
        private String desugar() {
            // We support desugaring for all non-primitive types supported in GradleModuleMetadataWriter.writeAttributes(), which are:
            // - Named
            // - Enum
            if (Named.class.isAssignableFrom(attribute.getType())) {
                return ((Named) get()).getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top