Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for Unreserve (0.42 sec)

  1. pkg/scheduler/framework/interface.go

    // rejection of the pod.
    type ReservePlugin interface {
    	Plugin
    	// Reserve is called by the scheduling framework when the scheduler cache is
    	// updated. If this method returns a failed Status, the scheduler will call
    	// the Unreserve method for all enabled ReservePlugins.
    	Reserve(ctx context.Context, state *CycleState, p *v1.Pod, nodeName string) *Status
    	// Unreserve is called by the scheduling framework when a reserved pod was
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

             "A resource-type output does not have the corresponding "
             "resource-type input.");
      bool change = false;
      // Copy ID set because function `AddValueUniqueIDMapping` below is not
      // guaranteed to preserve pointer stability (see b/243813657).
      const llvm::SmallSet<int64_t, 8> id_set = operand_it->second;
      assert(operand != result);
      for (int64_t id : id_set)
        change = AddValueUniqueIDMapping(result, id) || change;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

        const mlir::Value& original_source, mlir::OpBuilder* builder,
        llvm::SmallVectorImpl<mlir::Value>* tiled_inputs) {
      llvm::SmallVector<mlir::TF::SplitOp, 4> split_ops_for_tiled_input;
      split_ops_for_tiled_input.reserve(
          input_sharding.tile_assignment_devices_size());
    
      // Creates a tree of split nodes for sharding tiled inputs. Splits nodes
      // are created such that input data is sharded in row major order.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    //
    // * structurality: both `ForbiddenGenerics` and `ForbiddenExtensions` only have zero values, with the two exceptions for IntOrString.
    // * RawExtension: for every schema with `x-kubernetes-embedded-resource: true`, `x-kubernetes-preserve-unknown-fields: true` and `type: object` are set
    // * IntOrString: for `x-kubernetes-int-or-string: true` either `type` is empty under `anyOf` and `allOf` or the schema structure is one of these:
    //
    //  1. anyOf:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. src/net/url/url.go

    	}
    	// path.Join will remove any trailing slashes.
    	// Preserve at least one.
    	if strings.HasSuffix(elem[len(elem)-1], "/") && !strings.HasSuffix(p, "/") {
    		p += "/"
    	}
    	url := *u
    	url.setPath(p)
    	return &url
    }
    
    // validUserinfo reports whether s is a valid userinfo string per RFC 3986
    // Section 3.2.1:
    //
    //	userinfo    = *( unreserved / pct-encoded / sub-delims / ":" )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      mlir::FunctionType func_type = main_func.getFunctionType();
    
      outputs->clear();
      outputs->reserve(func_type.getNumResults());
      resource_updates->clear();
      resource_updates->reserve(func_type.getNumResults());
    
      std::vector<xla::Shape> shapes;
      shapes.reserve(func_type.getNumResults());
    
      llvm::SmallDenseMap<unsigned, unsigned> output_to_input_alias;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

                    // TODO - should preserve information about the source, for diagnostics at execution time
                    writeByte(1)
                }
    
                value.hasFixedValue() && sideEffect == null -> {
                    // Can serialize a fixed value and discard the provider
                    // TODO - should preserve information about the source, for diagnostics at execution time
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. src/runtime/slice.go

    	if newLen < 0 {
    		panic(errorString("growslice: len out of range"))
    	}
    
    	if et.Size_ == 0 {
    		// append should not create a slice with nil pointer but non-zero len.
    		// We assume that append doesn't need to preserve oldPtr in this case.
    		return slice{unsafe.Pointer(&zerobase), newLen, newLen}
    	}
    
    	newcap := nextslicecap(newLen, oldCap)
    
    	var overflow bool
    	var lenmem, newlenmem, capmem uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/conversion.go

    			CreationTimestamp: svc.CreationTime,
    			ResourceVersion:   svc.ResourceVersion,
    		},
    		Spec: se,
    	}
    
    	// TODO: WorkloadSelector
    
    	// TODO: preserve ServiceRegistry. The reverse conversion sets it to 'external'
    	// TODO: preserve UID ? It seems MCP didn't preserve it - but that code path was not used much.
    
    	// TODO: ClusterExternalPorts map - for NodePort services, with "traffic.istio.io/nodeSelector" ann
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    GetTPUDevices(ParsedDevices devices,
                  llvm::ArrayRef<ParsedDevice> system_devices) {
      llvm::SmallVector<llvm::SmallVector<ParsedDevice, 8>, 8> tpu_devices;
      tpu_devices.reserve(system_devices.size());
    
      auto lookup = [&devices](ParsedDevice device_spec) {
        device_spec.has_type = true;
        device_spec.type = kDeviceTPU;
        // Enumerate all the available TPUs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top