Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 135 for _encapsulate (0.75 sec)

  1. pkg/volume/csi/csi_client.go

    	NodeSupportsVolumeMountGroup(ctx context.Context) (bool, error)
    }
    
    // Strongly typed address
    type csiAddr string
    
    // Strongly typed driver name
    type csiDriverName string
    
    // csiClient encapsulates all csi-plugin methods
    type csiDriverClient struct {
    	driverName          csiDriverName
    	addr                csiAddr
    	metricsManager      *MetricsManager
    	nodeV1ClientCreator nodeV1ClientCreator
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

    import org.gradle.internal.DisplayName;
    
    import javax.annotation.Nullable;
    import java.io.Serializable;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    
    /**
     * Encapsulates the production of some value by some producer.
     * <p>
     * All providers implement this interface, but this interface may be implemented whenever
     * lazy evaluation is required.
     * </p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

              suite.addTest(new GeneratedMonitorTest(method, scenario, fair, null, expectedOutcome));
            }
          }
        }
      }
    
      /** A guard that encapsulates a simple, mutable boolean flag. */
      static class FlagGuard extends Monitor.Guard {
    
        private boolean satisfied;
    
        protected FlagGuard(Monitor monitor) {
          super(monitor);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api.h

    // Destroy an options object.
    TF_CAPI_EXPORT extern void TFE_DeleteContextOptions(TFE_ContextOptions*);
    
    // "Context" under which operations/functions are executed. It encapsulates
    // things like the available devices, resource manager etc.
    // TFE_Context must outlive all tensor handles created using it. In other
    // words, TFE_DeleteContext() must be called after all tensor handles have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 22.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/fsys/fsys.go

    }
    
    func (n *node) isDir() bool {
    	return n.actualFilePath == "" && n.children != nil
    }
    
    func (n *node) isDeleted() bool {
    	return n.actualFilePath == "" && n.children == nil
    }
    
    // TODO(matloob): encapsulate these in an io/fs-like interface
    var overlay map[string]*node // path -> file or directory node
    var cwd string               // copy of base.Cwd() to avoid dependency
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

    // * Deletion functions are safe to call on nullptr.
    //
    // Questions left to address:
    // * Might at some point need a way for callers to provide their own Env.
    // * Maybe add TF_TensorShape that encapsulates dimension info.
    //
    // Design decisions made:
    // * Backing store for tensor memory has an associated deallocation
    //   function.  This deallocation function will point to client code
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        // restored in `ConstructHostGraph()`.
        TF_RETURN_IF_ERROR(PreprocessEdgesBetweenOutsideCompilations(
            fbody->graph, outside_compilation_attr_name));
    
        // Encapsulate outside_compilation cluster into function call node.
        auto rewrite_fn = std::make_unique<RewriteOutsideCompilationSubgraphFn>(
            xla_cluster_attr_name, outside_compilation_attr_name, xla_cluster_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  8. prow/config/calico.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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     *
     * @author Darick Tong
     * @since 13.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public class CycleDetectingLockFactory {
    
      /**
       * Encapsulates the action to be taken when a potential deadlock is encountered. Clients can use
       * one of the predefined {@link Policies} or specify a custom implementation. Implementations must
       * be thread-safe.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    * The `default` version is resolved to a specific version via a dependency resolve rule, which looks up the version in a corporate catalog of approved modules.
    
    This rule implementation can be neatly encapsulated in a corporate plugin, and shared across all builds within the organisation.
    
    .Using a custom versioning scheme
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top