Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 227 for prepending (0.21 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

                }
            });
    
            // Collect all dependencies and excludes in hierarchy.
            // After running the dependency actions and preventing from mutation above, we know the
            // hierarchy will not change anymore and all configurations in the hierarchy
            // will no longer be mutated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/node.go

    	if _, err := os.Stat(filepath); os.IsNotExist(err) {
    		isControlPlaneNode = false
    	}
    	if len(nodeOptions.kubeConfigPath) == 0 {
    		// Update the kubeconfig path depending on whether this is a control plane node or not.
    		nodeOptions.kubeConfigPath = constants.GetKubeletKubeConfigPath()
    		if isControlPlaneNode {
    			nodeOptions.kubeConfigPath = constants.GetAdminKubeConfigPath()
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/security/oauth2-scopes.md

    !!! tip
        The important and "magic" thing here is that `get_current_user` will have a different list of `scopes` to check for each *path operation*.
    
        All depending on the `scopes` declared in each *path operation* and each dependency in the dependency tree for that specific *path operation*.
    
    ## More details about `SecurityScopes`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

    void PrepareLiftingPass::runOnOperation() {
      MLIRContext* ctx = &getContext();
      auto func = getOperation();
    
      // The pattern includes decomposing batch normalization ops, fusing add/mul
      // with a constant operand to a preceding affine operation.
      RewritePatternSet patterns(ctx);
      populateWithGenerated(patterns);
      patterns.add<RemoveIdentity, ConstantFoldQuantizableOperands>(ctx);
      if (op_set_ != OpSet::XLA) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/upgrade/common.go

    	err := preflight.RunRootCheckOnly(ignorePreflightErrors)
    	if err != nil {
    		return err
    	}
    	return upgrade.RunCoreDNSMigrationCheck(client, ignorePreflightErrors)
    }
    
    // getClient gets a real or fake client depending on whether the user is dry-running or not
    func getClient(file string, dryRun bool) (clientset.Interface, error) {
    	if dryRun {
    		dryRunGetter, err := apiclient.NewClientBackedDryRunGetterFromKubeconfig(file)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/BUILD

        ],
    )
    
    # OSS: This is a header-only target. The implementation target `quantize_model_cc_impl` is
    # directly linked to `lib_pywrap_tensorflow_internal.so`, so in most use cases of python-
    # exported symbols depending directly on `quantize_model_cc_impl` should be unnecessary.
    # Using the header-only target will help avoid the ODR violation.
    cc_library(
        name = "quantize_model_cc",
        hdrs = ["quantize_model.h"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

         */
        public static String toLowerCaseLocaleSafe(String s) {
            return s.toLowerCase(Locale.ENGLISH);
        }
    
        /**
         * This method returns the plural ending for an english word for trivial cases depending on the number of elements a list has.
         *
         * @param collection which size is used to determine the plural ending
         * @return "s" if the collection has more than one element, an empty string otherwise
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. src/math/big/float.go

    // represented by a float32 (|x| < [math.SmallestNonzeroFloat32]), the result
    // is (0, [Below]) or (-0, [Above]), respectively, depending on the sign of x.
    // If x is too large to be represented by a float32 (|x| > [math.MaxFloat32]),
    // the result is (+Inf, [Above]) or (-Inf, [Below]), depending on the sign of x.
    func (x *Float) Float32() (float32, Accuracy) {
    	if debugFloat {
    		x.validate()
    	}
    
    	switch x.form {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/apply.go

    			return err
    		}
    	}
    
    	if !flags.dryRun {
    		fmt.Println("[upgrade/prepull] Pulling images required for setting up a Kubernetes cluster")
    		fmt.Println("[upgrade/prepull] This might take a minute or two, depending on the speed of your internet connection")
    		fmt.Println("[upgrade/prepull] You can also perform this action beforehand using 'kubeadm config images pull'")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    // license that can be found in the LICENSE file.
    
    // NOTE: If you change this file you must run "go generate"
    // in cmd/compile/internal/typecheck
    // to update builtin.go. This is not done automatically
    // to avoid depending on having a working compiler binary.
    
    //go:build ignore
    
    package runtime
    
    // emitted by compiler, not referred to by go programs
    
    import "unsafe"
    
    func newobject(typ *byte) *any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top