Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for subst (0.24 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    var deleteCollectionPageSize = int64(10000)
    
    // DeleteCollection removes all items returned by List with a given ListOptions from storage.
    //
    // DeleteCollection is currently NOT atomic. It can happen that only subset of objects
    // will be deleted from storage, and then an error will be returned.
    // In case of success, the list of deleted objects will be returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    You can also combine filters defined at the command line with <<command_line_interface.adoc#sec:continuous_build, continuous build>> to re-execute a subset of tests immediately after every change to a production or test source file. The following executes all tests in the 'com.mypackage.foo' package or subpackages whenever a change triggers the tests to run:
    
    ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    	if err != nil {
    		// We can't ignore errors in the module graph even if the user passed the -e
    		// flag to try to push past them. If we can't load the complete module
    		// dependencies, then we can't reliably compute a minimal subset of them.
    		return rs, err
    	}
    
    	if mustHaveCompleteRequirements() {
    		// Instead of actually updating the requirements, just check that no updates
    		// are needed.
    		if rs == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    major Gradle release. We will always clearly document which Kotlin version we ship and announce upgrade plans before a major release.
    
    Plugin authors who want to stay compatible with older Gradle versions need to limit their API usage to a subset that is compatible with these old versions. It’s not really different from any other new API in Gradle. E.g. if we introduce a new API for dependency resolution and a plugin wants to use that API, then they either need to drop support for older Gradle...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "SBCSflags", argLength: 3, reg: gp2flags1flags, typ: "(UInt64,Flags)", asm: "SBCS"},                    // arg0-(arg1+borrowing), set flags.
    		{name: "SUBSflags", argLength: 2, reg: gp21flags, typ: "(UInt64,Flags)", asm: "SUBS"},                         // arg0 - arg1, set flags.
    		{name: "MUL", argLength: 2, reg: gp21, asm: "MUL", commutative: true},                                         // arg0 * arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	}
    	return substrings[1], nil
    }
    
    // validatePatchUsingSetOrderList verifies:
    // the relative order of any two items in the setOrderList list matches that in the patch list.
    // the items in the patch list must be a subset or the same as the $setElementOrder list (deletions are ignored).
    func validatePatchWithSetOrderList(patchList, setOrderList interface{}, mergeKey string) error {
    	typedSetOrderList, ok := setOrderList.([]interface{})
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package x509 implements a subset of the X.509 standard.
    //
    // It allows parsing and generating certificates, certificate signing
    // requests, certificate revocation lists, and encoded public and private keys.
    // It provides a certificate verifier, complete with a chain builder.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

              << "Unexpcted TPU op found while identifying non-TPU ops.";
          return LogicalResult::failure();
        }
        non_tpu_ops.insert(&op);
      }
    
      // Validate that remainder_ops takes and returns a subset of the loop carried
      // args. This will basically be our set increment fn.
      for (Operation* op : non_tpu_ops)
        for (Value input : op->getOperands())
          if (BlockArgument arg = llvm::dyn_cast<BlockArgument>(input))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	if numNodes == len(nodes) {
    		// Copy all node names.
    		for _, node := range nodes {
    			potentialNodes = append(potentialNodes, node.Node().Name)
    		}
    	} else {
    		// Select a random subset of the nodes to comply with
    		// the PotentialNodes length limit. Randomization is
    		// done for us by Go which iterates over map entries
    		// randomly.
    		nodeNames := map[string]struct{}{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    			if ld.requirements.pruning == pruned {
    				// We continuously add tidy roots to ld.requirements during loading, so
    				// at this point the tidy roots (other than possibly the "go" version
    				// edited above) should be a subset of the roots of ld.requirements,
    				// ensuring that no new dependencies are brought inside the
    				// graph-pruning horizon.
    				// If that is not the case, there is a bug in the loading loop above.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top