Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for calculateId (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/descriptor/UrlRepositoryDescriptor.java

                this.authenticationSchemes = ImmutableList.copyOf(authenticationSchemes);
                return self();
            }
    
            protected String calculateId(
                Class<? extends ExternalResourceResolver> implementation,
                List<ResourcePattern> metadataResources,
                List<ResourcePattern> artifactResources,
                List<String> metadataSources,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainerFactory.java

            this.projectLeaseRegistry = projectLeaseRegistry;
            this.globalContext = buildScopeServices::get;
        }
    
        /**
         * Create a calculated value that may have dependencies or that may need to access mutable model state.
         */
        public <T, S extends ValueCalculator<? extends T>> CalculatedValueContainer<T, S> create(DisplayName displayName, S supplier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    ```
    modifiedFiles.finalizeValueOnRead()
    ```
    
    In other words, this method calculates the final value lazily as required, whereas `finalizeValue()` calculates the final value eagerly.
    This method can be used when the value may be expensive to calculate or may not have been configured yet.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  4. cmd/streaming-signature-v4.go

    	// Calculate signature.
    	newSignature := getSignature(signingKey, stringToSign)
    
    	// Verify if signature match.
    	if !compareSignatureV4(newSignature, signV4Values.Signature) {
    		return cred, "", "", time.Time{}, ErrSignatureDoesNotMatch
    	}
    
    	// Return calculated signature.
    	return cred, newSignature, region, date, ErrNone
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValueFactory.java

    @ServiceScope(Scope.BuildSession.class)
    public interface CalculatedValueFactory {
        /**
         * Creates a calculated value that has no dependencies and that does not access any mutable model state.
         */
        <T> CalculatedValue<T> create(DisplayName displayName, Supplier<? extends T> supplier);
    
        /**
         * A convenience to create a calculated value that has already been produced.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

    }
    
    }  // namespace
    
    // If input spatial sizes are dynamic (unknown) and padding is same, add ops to
    // dynamically calculate padding size and add input_zp value Pad op with the
    // padding.
    // Otherwise, calculates padding with known numbers, and only for non-zero
    // padding (input_zp != 0), adds Pad op before convolution.
    Value CalculatePaddingAndPadIfNeeded(OpBuilder &builder, Location loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-kubeapiserver.sh

      fi
    }
    
    # Starts kubernetes apiserver.
    # It prepares the log file, loads the docker image, calculates variables, sets them
    # in the manifest file, and then copies the manifest file to /etc/kubernetes/manifests.
    #
    # Assumed vars (which are calculated in function compute-master-manifest-variables)
    #   CLOUD_CONFIG_OPT
    #   CLOUD_CONFIG_VOLUME
    #   CLOUD_CONFIG_MOUNT
    #   DOCKER_REGISTRY
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

      ) -> Optional[tuple[float, float]]:
        """Calculates min and max values from statistics.
    
        Args:
          calibration_statistics_serialized: Serialized `CalibrationStatistics`.
            This will be the source to calculate min and max values from.
          calibration_options_serialized: Serialized `CalibrationOptions`. Specifies
            how the min / max should be calculated.
    
        Returns:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

                                              PatternRewriter& rewriter) const {
        auto lhs = op->getOperand(0);
        auto rhs = op->getOperand(1);
        auto out = op->getResult(0);
    
        // Calculates symbolic broadcast shape that is only used in types.
        SmallVector<int64_t, 4> symbolic_broadcast_shape;
        // Matches fail when lhs or rhs is unranked tensor.
        // TODO(b/176202543): Support unranked tensor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. cmd/signature-v4.go

    	}
    
    	r.Header.Set("x-amz-signature-age", strconv.FormatInt(UTCNow().Sub(pSignValues.Date).Milliseconds(), 10))
    
    	return ErrNone
    }
    
    // doesSignatureMatch - Verify authorization header with calculated header in accordance with
    //   - http://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html
    //
    // returns ErrNone if signature matches.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top