Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,040 for populator (0.14 sec)

  1. staging/src/k8s.io/api/certificates/v1/generated.proto

      // username contains the name of the user that created the CertificateSigningRequest.
      // Populated by the API server on creation and immutable.
      // +optional
      optional string username = 2;
    
      // uid contains the uid of the user that created the CertificateSigningRequest.
      // Populated by the API server on creation and immutable.
      // +optional
      optional string uid = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/unique/clone.go

    	}
    	var seq cloneSeq
    	switch typ.Kind() {
    	case abi.Struct:
    		buildStructCloneSeq(typ, &seq, 0)
    	case abi.Array:
    		buildArrayCloneSeq(typ, &seq, 0)
    	}
    	return seq
    }
    
    // buildStructCloneSeq populates a cloneSeq for an abi.Type that has Kind abi.Struct.
    func buildStructCloneSeq(typ *abi.Type, seq *cloneSeq, baseOffset uintptr) {
    	styp := typ.StructType()
    	for i := range styp.Fields {
    		f := &styp.Fields[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java

         * so that it may be included in the list of results. IOW we do
         * not want to create a new NbtAddress object for this particular
         * address from which the query is constructed, we want to populate
         * the data of the existing address that should be one of several
         * returned by the node status.
         */
    
        NodeStatusResponse( NbtAddress queryAddress ) {
            this.queryAddress = queryAddress;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 6K bytes
    - Viewed (0)
  4. releasenotes/notes/36465.yaml

    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/36456
    releaseNotes:
      - |
        **Fixed** an issue where scaling endpoint for a service from 0 to 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 21 19:54:23 UTC 2022
    - 295 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler_test.go

    	res2_initial, _, _ := fetchPath(manager2, "application/json", discoveryPath, "")
    
    	assert.NotEmpty(t, res1_initial.Header.Get("ETag"), "Etag should be populated")
    	assert.NotEmpty(t, res2_initial.Header.Get("ETag"), "Etag should be populated")
    	assert.Equal(t, res1_initial.Header.Get("ETag"), res2_initial.Header.Get("ETag"), "etag should be deterministic")
    
    	// Then add one service to only one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/taskgraph/DefaultTaskExecutionGraph.java

        @Override
        public ExecutionResult<Void> execute(FinalizedExecutionPlan plan) {
            assertIsThisGraphsPlan(plan);
            if (!hasFiredWhenReady) {
                throw new IllegalStateException("Task graph should be populated before execution starts.");
            }
            try (ProjectExecutionServiceRegistry projectExecutionServices = new ProjectExecutionServiceRegistry(globalServices)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    #include "absl/strings/string_view.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.pb.h"
    
    namespace stablehlo::quantization {
    
    // Returns a copy of `user_provided_config` with default values populated where
    // the user did not explicitly specify.
    QuantizationConfig PopulateDefaults(
        const QuantizationConfig& user_provided_config);
    
    // Returns a copy of `QuantizationConfig` where presets are expanded and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NodeStatusResponse.java

         * so that it may be included in the list of results. IOW we do
         * not want to create a new NbtAddress object for this particular
         * address from which the query is constructed, we want to populate
         * the data of the existing address that should be one of several
         * returned by the node status.
         */
    
        NodeStatusResponse ( Configuration cfg, NbtAddress queryAddress ) {
            super(cfg);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/math/Stats.java

      }
    
      /**
       * Returns the <a href="http://en.wikipedia.org/wiki/Variance#Sample_variance">unbiased sample
       * variance</a> of the values. If this dataset is a sample drawn from a population, this is an
       * unbiased estimator of the population variance of the population. The count must be greater than
       * one.
       *
       * <p>This is not guaranteed to return zero when the dataset consists of the same value multiple
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

    //  1) Build subgraphs
    //    1.1) Collect output subgraphs.
    //    1.2) Build `Subgraph` and their "alternative view" from FuncOp.
    //  2) Pick subgraphs
    //    2.1) Populate the "dp table" for (subgraph, hardware).
    //    2.2) Make decisions based on the populated dp table.
    //    2.3) Rewire the whole graph based on the desicions.
    //
    namespace mlir {
    namespace TFL {
    namespace tac {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
Back to top