Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 428 for Primitive (0.43 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationType.java

     * As such, these objects should be designed for serialization to non Java formats (e.g. JSON).
     *
     * - Should be practically immutable
     * - Should only expose primitive(ish) JDK types, or other structured types only exposing JDK types
     * - Collection like structures should have deterministic order - either sorted, or meaningful
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/common/equality.go

    	// If old and new are not the same type, they are not equal
    	if (oldIsArray != newIsArray) || oldIsMap != newIsMap {
    		return false
    	}
    
    	// Objects are known to be same type of (map, slice, or primitive)
    	switch {
    	case oldIsArray:
    		// Both arrays case. oldIsArray == newIsArray
    		if len(oldAsArray) != len(newAsArray) {
    			return false
    		}
    
    		for i := range newAsArray {
    			child := r.Index(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 21:53:21 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.cc

        Type spec = typeAttr.getValue();
        if (mlir::isa<TensorType, VectorType>(spec)) return false;
    
        // The spec should be either a quantized type which is compatible to the
        // expressed type, or a primitive type which is as same as the
        // (element type of) the expressed type.
        if (auto quantizedType = mlir::dyn_cast<QuantizedType>(spec))
          return quantizedType.isCompatibleExpressedType(expressed);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.cc

        Type spec = typeAttr.getValue();
        if (mlir::isa<TensorType, VectorType>(spec)) return false;
    
        // The spec should be either a quantized type which is compatible to the
        // expressed type, or a primitive type which is as same as the
        // (element type of) the expressed type.
        if (auto quantizedType = mlir::dyn_cast<QuantizedType>(spec))
          return quantizedType.isCompatibleExpressedType(expressed);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/MathPreconditionsTest.java

          assertThat(expected).hasMessageThat().contains("testCheckNoOverflow_failure(0, 0)");
        }
      }
    
      public void testNulls() {
        /*
         * Don't bother testing. All non-primitive parameters are used only to construct error messages.
         * We never want to pass null for them, so we haven't annotated them to say that null is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClasspathInferer.java

                        while (type.getSort() == Type.ARRAY) {
                            type = type.getElementType();
                        }
                        if (type.getSort() != Type.OBJECT) {
                            // A primitive type
                            continue;
                        }
                        String className = type.getClassName();
                        if (className.equals(target.getName())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            private int primitive;
            private boolean bool;
            private String finalGetter;
            private Integer writeOnly;
            private String overloaded;
    
            public int getPrimitive() {
                return primitive;
            }
    
            public void setPrimitive(int primitive) {
                this.primitive = primitive;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelGroovyScalarConfigurationIntegrationTest.groovy

            'theLong'       | Long
            'thelong'       | long
            'theshort'      | short
            'theShort'      | Short
            'thebyte'       | byte
            'theByte'       | Byte
        }
    
        void 'primitive types cannot accept null values'() {
            when:
            buildFile << CLASSES
            buildFile << """
                model {
                    props {
                        $varname = null
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     *  <p>A codec implementation will, generally:
     *  <ul>
     *      <li>encode the primitive/non-object values directly by invoking some of the various {@link org.gradle.internal.serialize.Encoder Encoder}'s <code>write*</code> variants</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolveConfigurationResolutionBuildOperationResult.java

                                stringValue = ((Named) attributeValue).getName();
                            } else if (attributeValue instanceof Object[]) { // don't bother trying to handle primitive arrays specially
                                stringValue = Arrays.toString((Object[]) attributeValue);
                            } else {
                                stringValue = attributeValue.toString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top