Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 153 for _encapsulate (0.2 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        graph_->set_versions(graph_in->versions());
      }
    
      // TODO(b/116981129): Enhance how the device for the encapsulated subgraph is
      // determined. In case of hard placement, ensure all the encapsulated nodes
      // have the same requested device, which in turn will be the requested device
      // for the entire encapsulated subgraph. In case of soft placement, use a
      // deterministic approach to fill in the requested device. Handle co-location
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. cmd/namespace-lock.go

    type localLockInstance struct {
    	ns     *nsLockMap
    	volume string
    	paths  []string
    	opsID  string
    }
    
    // NewNSLock - returns a lock instance for a given volume and
    // path. The returned lockInstance object encapsulates the nsLockMap,
    // volume, path and operation ID.
    func (n *nsLockMap) NewNSLock(lockers func() ([]dsync.NetLocker, string), volume string, paths ...string) RWLocker {
    	opsID := mustGetUUID()
    	if n.isDistErasure {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 05 23:56:35 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/script/state.go

    package script
    
    import (
    	"bytes"
    	"context"
    	"fmt"
    	"internal/txtar"
    	"io"
    	"io/fs"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"strings"
    )
    
    // A State encapsulates the current state of a running script engine,
    // including the script environment and any running background commands.
    type State struct {
    	engine *Engine // the engine currently executing the script, if any
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

    import org.gradle.internal.model.ModelContainer;
    
    import javax.annotation.Nullable;
    import java.util.Collection;
    import java.util.HashSet;
    import java.util.Set;
    
    /**
     * Encapsulates all logic required to build a {@link LocalConfigurationMetadata} from a
     * {@link ConfigurationInternal}. Utilizes caching to prevent unnecessary duplicate conversions
     * between DSL and internal metadata types.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    ----
    =====
    
    [[sec:convention_plugins]]
    == Share logic using convention plugins
    
    Gradle's recommended way of organizing build logic is to use its plugin system.
    
    We can write a plugin that encapsulates the build logic common to several subprojects in a project.
    This kind of plugin is called a *convention plugin*.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/felixconfigurations-crd.yaml

                      will add a rule to drop IPIP encapsulated traffic from workloads
                      [Default: false]'
                    type: boolean
                  allowVXLANPacketsFromWorkloads:
                    description: 'AllowVXLANPacketsFromWorkloads controls whether Felix
                      will add a rule to drop VXLAN encapsulated traffic from workloads
                      [Default: false]'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 29.1K bytes
    - Viewed (0)
  7. src/internal/coverage/cformat/format.go

    	// maps function to index in slice above (index acts as function ID)
    	funcTable map[fnfile]uint32
    
    	// A table storing coverage counts for each coverable unit.
    	unitTable map[extcu]uint32
    }
    
    // extcu encapsulates a coverable unit within some function.
    type extcu struct {
    	fnfid uint32 // index into p.funcs slice
    	coverage.CoverableUnit
    }
    
    // fnfile is a function-name/file-name tuple.
    type fnfile struct {
    	file  string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_device.h

          TF_GUARDED_BY(global_mu_);
    };
    
    // Builds OpKernel registrations on 'device' for the JIT operators
    // registered on 'jit_device'. Returns ownership of a XlaDeviceOpRegistrations
    // object that encapsulates the kernel registrations.
    struct XlaDeviceOpRegistrations {
      std::vector<std::unique_ptr<kernel_factory::OpKernelRegistrar>>
          op_kernel_registrars;
    };
    
    XlaDeviceOpRegistrations* RegisterXlaDeviceKernels(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/IvyComponentParser.java

    import java.util.HashMap;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    import static com.google.common.base.Strings.nullToEmpty;
    
    /**
     * Encapsulates all logic required to extract data from a {@link SoftwareComponentInternal} in order to
     * transform it to a representation compatible with Ivy.
     */
    public class IvyComponentParser {
    
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/arch/arm64.go

    // Copyright 2015 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.
    
    // This file encapsulates some of the odd characteristics of the ARM64
    // instruction set, to minimize its interaction with the core of the
    // assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/arm64"
    	"errors"
    )
    
    var arm64LS = map[string]uint8{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 09:04:58 UTC 2022
    - 10.4K bytes
    - Viewed (0)
Back to top