Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 840 for constructs (0.23 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFileCollectionFactoryTest.groovy

            0 * _
        }
    
        def "constructs a configurable collection"() {
            expect:
            def collection = factory.configurableFiles("some collection")
            collection.files.empty
            collection.buildDependencies.getDependencies(null).empty
            collection.toString() == "some collection"
        }
    
        def "constructs an empty collection"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/value.h

      /// TaggedValue constructor for type FLOAT32.
      explicit TaggedValue(float f32) : type_(FLOAT32), data_(Float32(f32)) {}
      /// TaggedValue constructor for type INT64.
      explicit TaggedValue(int64_t i64) : type_(INT64), data_(Int64(i64)) {}
      /// TaggedValue constructor for type FLOAT32.
      explicit TaggedValue(Float32 f32) : type_(FLOAT32), data_(f32) {}
      /// TaggedValue constructor for type INT64.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/object.h

    };
    
    /// @brief The Float class for holding TaggedValues of type FLOAT.
    class Float final : public Handle {
     public:
      /// Constructs a Float handle that wraps a FLOAT TaggedValue.
      explicit Float(Handle h) : Handle(h.value_) {}
      /// Constructs a Float handle that wraps a FLOAT TaggedValue.
      explicit Float(float i) : Handle(TaggedValue(i)) {}
      /// Retrieves the underlying float value.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    	if declType == nil {
    		return nil, fmt.Errorf("unable to convert structural schema to CEL declarations")
    	}
    	return &CELTypeInfo{structural, declType}, nil
    }
    
    // RootCELContext constructs CELSchemaContext for the given root schema.
    func RootCELContext(schema *apiextensions.JSONSchemaProps) *CELSchemaContext {
    	rootCardinality := uint64(1)
    	r := &CELSchemaContext{
    		jsonSchema:                schema,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  5. pilot/pkg/security/model/authentication.go

    	// entire listener/cluster in these cases.
    	ResourceApiVersion: core.ApiVersion_V3,
    }
    
    // ConstructSdsSecretConfigForCredential constructs SDS secret configuration used
    // from certificates referenced by credentialName in DestinationRule or Gateway.
    // Currently this is served by a local SDS server, but in the future replaced by
    // Istiod SDS server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

                                   detail::SideEffectAnalysisInfo> {
     public:
      // Constructs analysis by analyzing the given module operation. Because no
      // parallel_ids are given, the program has sequential memory semantics.
      explicit SideEffectAnalysis(ModuleOp module_op);
    
      // Constructs analysis by analyzing the given module operation where
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/arch/arm64.go

    		if 0 <= n && n <= 30 { // not 31
    			return arm64.REG_R0 + n, true
    		}
    	case "V":
    		if 0 <= n && n <= 31 {
    			return arm64.REG_V0 + n, true
    		}
    	}
    	return 0, false
    }
    
    // ARM64RegisterShift constructs an ARM64 register with shift operation.
    func ARM64RegisterShift(reg, op, count int16) (int64, error) {
    	// the base register of shift operations must be general register.
    	if reg > arm64.REG_R31 || reg < arm64.REG_R0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 09:04:58 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

                    builder.append("->").append(transformed);
                }
                first = false;
            }
            builder.append("]");
            return builder.toString();
        }
    
        /**
         * Constructs a TransformedClassPath out of the ordinary JAR/directory list, strict produced by the instrumenting ArtifactTransform.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. internal/bucket/object/lock/lock.go

    	RetainUntilDate RetentionDate `xml:"RetainUntilDate,omitempty"`
    }
    
    // Maximum 4KiB size per object retention config.
    const maxObjectRetentionSize = 1 << 12
    
    // ParseObjectRetention constructs ObjectRetention struct from xml input
    func ParseObjectRetention(reader io.Reader) (*ObjectRetention, error) {
    	ret := ObjectRetention{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

        }
    
        /**
         * Constructs JVM details by inspecting the current JVM.
         */
        Jvm(OperatingSystem os) {
            this(os, FileUtils.canonicalize(new File(System.getProperty("java.home"))), System.getProperty("java.version"), JavaVersionParser.parseMajorVersion(System.getProperty("java.version")), false);
        }
    
        /**
         * Constructs JVM details from the given values
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top