Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 354 for populator (0.59 sec)

  1. 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)
  2. pkg/controller/serviceaccount/tokens_controller.go

    	tokenData := secret.Data[v1.ServiceAccountTokenKey]
    	needsToken := len(tokenData) == 0
    
    	return needsCA, needsNamespace, needsToken
    }
    
    // generateTokenIfNeeded populates the token data for the given Secret if not already set
    func (e *TokensController) generateTokenIfNeeded(logger klog.Logger, serviceAccount *v1.ServiceAccount, cachedSecret *v1.Secret) ( /* retry */ bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/crypto/tls/67065.md

    Go 1.23 changed the behavior of [X509KeyPair] and [LoadX509KeyPair]
    to populate the [Certificate.Leaf] field of the returned [Certificate].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 226 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    This defeats <<incremental_build.adoc#incremental_build,incremental build>> (i.e., `UP-TO-DATE` checks), but this issue is mitigated via use of the local build cache.
    You might run a build on Branch A, which will populate the local cache.
    You then switch to Branch B to conduct a code review, help a colleague, or address feedback on an open PR.
    You then switch back to Branch A to continue your original work.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/release/notes.md

    <!--
    ### Example promoted
    -->
    
    ## Fixed issues
    
    <!--
    This section will be populated automatically
    -->
    
    ## Known issues
    
    Known issues are problems that were discovered post-release that are directly related to changes made in this release.
    
    <!--
    This section will be populated automatically
    -->
    
    ## External contributions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/services/DefaultVersionControlRepositoryFactory.java

                            GFileUtils.touch(baseDir);
                            delegate.populate(workingDir, ref, spec);
                            return workingDir;
                        } catch (Exception e) {
                            throw new GradleException(String.format("Could not populate working directory from %s.", spec.getDisplayName()), e);
                        }
                    }
                });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/decompose_reduce_dataset.cc

      SmallVector<Value, 4> if_returns;
    
      builder.create<TF::YieldOp>(loc,
                                  /*operands=*/reduce_call.getResults());
      return dataset_if;
    }
    
    // Populates WhileRegionOp body which is replacing `reduce_dataset`.  Iterates
    // `anonymous_iterator` with `dataset_types` and optional calls `reduce_func`.
    void PopulateDatasetWhileBody(OpBuilder builder, ReduceDatasetOp reduce_dataset,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1/types.go

    	// username contains the name of the user that created the CertificateSigningRequest.
    	// Populated by the API server on creation and immutable.
    	// +optional
    	Username string `json:"username,omitempty" protobuf:"bytes,2,opt,name=username"`
    	// uid contains the uid of the user that created the CertificateSigningRequest.
    	// Populated by the API server on creation and immutable.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/release/notes-template.md

    <!--
    ### Example promoted
    -->
    
    ## Fixed issues
    
    <!--
    This section will be populated automatically
    -->
    
    ## Known issues
    
    Known issues are problems that were discovered post-release that are directly related to changes made in this release.
    
    <!--
    This section will be populated automatically
    -->
    
    ## External contributions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractLazyModuleComponentResolveMetadata.java

        }
    
        @Override
        public synchronized ModuleConfigurationMetadata getConfiguration(final String name) {
            ModuleConfigurationMetadata populated = configurations.get(name);
            if (populated != null) {
                return populated;
            }
            ModuleConfigurationMetadata md = populateConfigurationFromDescriptor(name, configurationDefinitions);
            configurations.put(name, md);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top