Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 653 for construction (0.16 sec)

  1. guava/src/com/google/common/collect/DenseImmutableTable.java

      @SuppressWarnings("Immutable") // We don't modify this after construction.
      private final int[] rowCounts;
    
      @SuppressWarnings("Immutable") // We don't modify this after construction.
      private final int[] columnCounts;
    
      @SuppressWarnings("Immutable") // We don't modify this after construction.
      private final @Nullable V[][] values;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. tensorflow/c/kernels.h

    // places it into *val. *status is set to TF_OK.
    //
    // If the attribute could not be found or could not be interpreted as
    // bool, *status is populated with an error.
    TF_CAPI_EXPORT extern void TF_OpKernelConstruction_GetAttrBool(
        TF_OpKernelConstruction* ctx, const char* attr_name, TF_Bool* val,
        TF_Status* status);
    
    // Interprets the named kernel construction attribute as string and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/DenseImmutableTable.java

      @SuppressWarnings("Immutable") // We don't modify this after construction.
      private final int[] rowCounts;
    
      @SuppressWarnings("Immutable") // We don't modify this after construction.
      private final int[] columnCounts;
    
      @SuppressWarnings("Immutable") // We don't modify this after construction.
      private final @Nullable V[][] values;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/ObjectExtensionInstantiationIntegrationTest.groovy

            expect:
            fails()
            failure.assertHasCause("Could not create an instance of type Thing.")
            failure.assertHasCause("Unable to determine constructor argument #2: value 12 not assignable to type String")
        }
    
        def "fails when mismatched construction parameters provided when there are multiple constructors"() {
            buildFile """
                class Thing {
                    Thing(String a, String b) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 16.9K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/certificates.go

    	// if only one is specified, it will error later during construction
    	return len(config.KubeletServingSignerConfiguration.CertFile) > 0 || len(config.KubeletServingSignerConfiguration.KeyFile) > 0
    }
    func areKubeletClientSignerFilesSpecified(config csrsigningconfig.CSRSigningControllerConfiguration) bool {
    	// if only one is specified, it will error later during construction
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

        private static final Attributes.Name AUTO_MODULE_NAME = new Attributes.Name("Automatic-Module-Name");
    
        /**
         * Filename of the path specified at construction time.
         */
        private final String filename;
    
        /**
         * Module information for the path specified at construction time.
         * This map is usually either empty if no module was found, or a singleton map.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_executable_persistor.h

      // Saves the cache entry in the file directory supplied during the
      // construction of this class. Overwrites existing entries.
      Status SaveSerializedEntry(const XlaSerializedCacheEntry& entry) const;
    
      // Tries to read a cache entry given a `key` by searching the file directory
      // supplied during the construction of this class. Returns std::nullopt if no
      // cache entry is found.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. tensorflow/c/eager/parallel_device/parallel_device_lib.h

      std::vector<TensorHandlePtr> tensors_;
      // Parallel tensors are immutable but compute their shape lazily unless it is
      // provided on construction. The optional has a value if the lazy computation
      // has been completed or the shape was provided on construction.
      mutable absl::optional<std::vector<int64_t>> shape_;
      const TF_DataType dtype_;
    };
    
    template <typename DataType>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 25 15:21:13 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

    // on the user provided policy. If an operation can be clustered (one of the
    // user provided policies accepts it under given constraints), it will become
    // a "member" that will participate in the union-find cluster construction.
    //
    // A block argument can also become a member (or even a root member), however
    // only operations will become a part of the outline `tf_device.cluster`, block
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningExtension.java

        }
    
        /**
         * Provides the signature type provider. Called once during construction.
         */
        protected SignatureTypeProvider createSignatureTypeProvider() {
            return new DefaultSignatureTypeProvider();
        }
    
        /**
         * Provides the signatory provider. Called once during construction.
         */
        protected SignatoryProvider<?> createSignatoryProvider() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 22.3K bytes
    - Viewed (0)
Back to top