Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 516 for implying (0.15 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemLocationProperty.java

        /**
         * Returns the location of the file system element, and discards details of the task that produces its content. This allows the location, or a value derived from it, to be used as an input to some other task without implying any dependency on the producing task. This should only be used when the task does, in fact, not use the content of this file system element.
         *
         * @since 5.6
         */
        Provider<T> getLocationOnly();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 12:28:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. ci/official/utilities/rename_and_verify_wheels.sh

    fi
    # VERY basic check to ensure the [and-cuda] package variant is installable.
    # Checks TFCI_BAZEL_COMMON_ARGS for "gpu" or "cuda", implying that the test is
    # relevant. All of the GPU test machines have CUDA installed via other means,
    # so I am not sure how to verify that the dependencies themselves are valid for
    # the moment.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 21:16:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/LocalTaskNode.java

         *
         * @param dependency a non-successful successor node in the execution plan
         * @return true if the successor node dependency was declared with an explicit dependsOn relationship, false otherwise (implying task output -> task input relationship)
         */
        @Override
        protected boolean dependsOnOutcome(Node dependency) {
            return lifecycleSuccessors.contains(dependency);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions_with_quantization_specs.mlir

    // EMPTY: %[[XLA_CALL_MODULE:.+]] = "tf.XlaCallModule"(%arg0, %[[CONST]])
    
    // Check that the `_quantization_method` attribute doesn't contain the
    // quantization method, implying "no_quantization".
    // EMPTY-SAME: _entry_function = @composite_dot_general_fn_1
    // EMPTY-SAME: _original_entry_function
    // EMPTY-NOT: _quantization_method
    // EMPTY-SAME: _tfl_quant_trait = "fully_quantizable"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 18:09:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            when:
            fails("compileJava")
    
            then:
            // 2 warnings + 1 special error
            // The compiler will report a single error, implying that the warnings were treated as errors
            verifyAll(receivedProblem(0)) {
                assertProblem(it, "ERROR", false)
                fqid == 'compilation:java:java-compilation-error'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. src/crypto/tls/cipher_suites.go

    	// TLS 1.3
    	TLS_AES_128_GCM_SHA256: true,
    	TLS_AES_256_GCM_SHA384: true,
    }
    
    // aesgcmPreferred returns whether the first known cipher in the preference list
    // is an AES-GCM cipher, implying the peer has hardware support for it.
    func aesgcmPreferred(ciphers []uint16) bool {
    	for _, cID := range ciphers {
    		if c := cipherSuiteByID(cID); c != nil {
    			return aesgcmCiphers[cID]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      // non-negative integer and the limit is calculated as follows.
      //
      // BorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )
      //
      // The value of this field can be more than 100, implying that this
      // priority level can borrow a number of seats that is greater than
      // its own nominal concurrency limit (NominalCL).
      // When this field is left `nil`, the limit is effectively infinite.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // non-negative integer and the limit is calculated as follows.
      //
      // BorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )
      //
      // The value of this field can be more than 100, implying that this
      // priority level can borrow a number of seats that is greater than
      // its own nominal concurrency limit (NominalCL).
      // When this field is left `nil`, the limit is effectively infinite.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // non-negative integer and the limit is calculated as follows.
      //
      // BorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )
      //
      // The value of this field can be more than 100, implying that this
      // priority level can borrow a number of seats that is greater than
      // its own nominal concurrency limit (NominalCL).
      // When this field is left `nil`, the limit is effectively infinite.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/StandardTable.java

        return (result == null) ? columnMap = new ColumnMap() : result;
      }
    
      @WeakOuter
      private class ColumnMap extends ViewCachingAbstractMap<C, Map<R, V>> {
        // The cast to C occurs only when the key is in the map, implying that it
        // has the correct type.
        @SuppressWarnings("unchecked")
        @Override
        @CheckForNull
        public Map<R, V> get(@CheckForNull Object key) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 30.6K bytes
    - Viewed (0)
Back to top