Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for subset16 (0.76 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[incremental_task_inputs_deprecation]]
    === IncrementalTaskInputs type is deprecated
    
    The `IncrementalTaskInputs` type was used to implement _incremental tasks,_ that is to say tasks that can be optimized to run on a subset of changed inputs instead of the whole input.
    This type had a number of drawbacks.
    In particular using this type it was not possible to determine what input a change was associated with.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    - `getFiles(Spec)`
    - `getArtifacts(Spec)`
    
    To mitigate this deprecation, consider the example below that leverages the `ArtifactView`
    API along with the `componentFilter` method to select a subset of a Configuration's artifacts:
    
    ====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    val conf by configurations.creating
    
    dependencies {
        conf("com.thing:foo:1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    // THE SOFTWARE.
    
    // ArchSyms holds a number of architecture specific symbols used during
    // relocation.  Rather than allowing them universal access to all symbols,
    // we keep a subset for relocation application.
    type ArchSyms struct {
    	Rel     loader.Sym
    	Rela    loader.Sym
    	RelPLT  loader.Sym
    	RelaPLT loader.Sym
    
    	LinkEditGOT loader.Sym
    	LinkEditPLT loader.Sym
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top