Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 375 for initiatives (0.11 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableMavenModuleResolveMetadataTest.groovy

            immutable.configurationNames == ["compile", "runtime", "test", "provided", "system", "optional", "master", "default", "javadoc", "sources"] as Set
            immutable.variants.empty
        }
    
        def "initialises values from descriptor state and defaults"() {
            def id = DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId("group", "module"), "version")
    
            def vid = Mock(ModuleVersionIdentifier)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodeports/node_ports.go

    	existingPorts := nodeInfo.UsedPorts
    	for _, cp := range wantPorts {
    		if existingPorts.CheckConflict(cp.HostIP, string(cp.Protocol), cp.HostPort) {
    			return false
    		}
    	}
    	return true
    }
    
    // New initializes a new plugin and returns it.
    func New(_ context.Context, _ runtime.Object, _ framework.Handle) (framework.Plugin, error) {
    	return &NodePorts{}, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 10:53:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. pkg/registry/core/service/portallocator/allocator.go

    	return New(pr, func(max int, rangeSpec string, offset int) (allocator.Interface, error) {
    		return allocator.NewAllocationMapWithOffset(max, rangeSpec, offset), nil
    	})
    }
    
    // NewFromSnapshot allocates a PortAllocator and initializes it from a snapshot.
    func NewFromSnapshot(snap *api.RangeAllocation) (*PortAllocator, error) {
    	pr, err := net.ParsePortRange(snap.Range)
    	if err != nil {
    		return nil, err
    	}
    	r, err := NewInMemory(*pr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. plugin/pkg/admission/podnodeselector/admission.go

    		return true
    	}
    
    	_, ok := a.GetObject().(*api.Pod)
    	if !ok {
    		klog.Errorf("expected pod but got %s", a.GetKind().Kind)
    		return true
    	}
    
    	return false
    }
    
    // NewPodNodeSelector initializes a podNodeSelector
    func NewPodNodeSelector(clusterNodeSelectors map[string]string) *Plugin {
    	return &Plugin{
    		Handler:              admission.NewHandler(admission.Create),
    		clusterNodeSelectors: clusterNodeSelectors,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_restore_op.mlir

          tf_saved_model.initializer_type = "restore_op",
          tf_saved_model.exported_names = ["tf_saved_model.session_initializer_restore_op"]} {
        // This const is shared and initializes two variables.
        %cst_0 = "tf.Const"() {value = dense<1.000000e+00> : tensor<2xf32>} : () -> tensor<2xf32>
    
        %var_0 = "tf.VarHandleOp"() {shared_name = "var_0"} : () -> tensor<!tf_type.resource<tensor<2xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. src/compress/flate/dict_decoder.go

    	// Invariant: 0 <= rdPos <= wrPos <= len(hist)
    	wrPos int  // Current output position in buffer
    	rdPos int  // Have emitted hist[:rdPos] already
    	full  bool // Has a full window length been written yet?
    }
    
    // init initializes dictDecoder to have a sliding window dictionary of the given
    // size. If a preset dict is provided, it will initialize the dictionary with
    // the contents of dict.
    func (dd *dictDecoder) init(size int, dict []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

        TypeAttr:$type,
        UnitAttr:$is_mutable
      );
    
      let hasVerifier = 1;
    }
    
    def TfSavedModel_SessionInitializerOp: TfSavedModel_Op<"session_initializer"> {
      let summary = "Initializes TensorFlow session state.";
      let description = [{
        The session initializer op marks one or more functions that must be called
        by an external agent exactly once to initialize TensorFlow session state,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_restore_op.cc

    using ::mlir::tf_saved_model::kTfSavedModelIndexPathAttr;
    using ::mlir::tf_saved_model::kTfSavedModelInitializerRestoreType;
    
    // This pass creates a RestoreV2 op in the initializer function with
    // type "restore_op" that initializes variables from checkpoint. It finds
    // tf.AssignVariableOp(tf.VarHandleOp, tf.Const) patterns in the initializer
    // function and replaces tf.Consts with the results of RestoreV2.
    class InsertRestoreOpPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 12 06:02:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    Persistently slow build startup times are usually the result of problems in your init scripts.
    Double check that the work you’re doing there is necessary and performant.
    
    === Settings and _buildSrc_
    
    After startup, Gradle initializes your project. Usually, Gradle only processes your settings file.
    If you have custom build logic in a `buildSrc` directory, Gradle also processes that logic.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/informers/externalversions/factory.go

    //	// Start must be called again:
    //	anotherGenericInformer := factory.ForResource(resource)
    //	factory.Start(ctx.Done())
    type SharedInformerFactory interface {
    	internalinterfaces.SharedInformerFactory
    
    	// Start initializes all requested informers. They are handled in goroutines
    	// which run until the stop channel gets closed.
    	Start(stopCh <-chan struct{})
    
    	// Shutdown marks a factory as shutting down. At that point no new
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 18:31:26 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top