Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 306 for Unreserve (2.01 sec)

  1. src/runtime/mgcsweep.go

    // It clears the mark bits in preparation for the next GC round.
    // Returns true if the span was returned to heap.
    // If preserve=true, don't return it to heap nor relink in mcentral lists;
    // caller takes care of it.
    func (sl *sweepLocked) sweep(preserve bool) bool {
    	// It's critical that we enter this function with preemption disabled,
    	// GC must not start while we are in the middle of this function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

      // compilation.
      std::vector<tensorflow::XlaExpression> expressions;
      std::vector<tensorflow::Tensor> tensors;
      std::vector<tensorflow::TensorValue> inputs;
      expressions.reserve(op_->getNumOperands());
      tensors.reserve(op_->getNumOperands());
      inputs.reserve(op_->getNumOperands());
    
      if (failed(
              PrepareKernelInputs(required_consts, expressions, tensors, inputs)))
        return failure();
    
      params_.inputs = inputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

      } while (succeeded(parser->parseOptionalComma()));
    
      region_args->reserve(replicated_region_args.size() +
                           packed_region_args.size());
      region_args->append(replicated_region_args.begin(),
                          replicated_region_args.end());
      region_args->append(packed_region_args.begin(), packed_region_args.end());
    
      region_arg_types->reserve(replicated_region_arg_types.size() +
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	// expressions. This includes:
    	// - Unknown field values that are preserved by object schemas with x-kubernetes-preserve-unknown-fields.
    	// - Object properties where the property schema is of an "unknown type". An "unknown type" is recursively defined as:
    	//   - A schema with no type and x-kubernetes-preserve-unknown-fields set to true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientsManagerTest.groovy

        def "does not reserve idle client when no clients"() {
            expect:
            manager.reserveIdleClient(options) == null
        }
    
        def "does not reserve idle client when no matching client found"() {
            def noMatch = Stub(WorkerDaemonClient) {
                isCompatibleWith(_) >> false
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

      for (int core = 0; core < num_cores_per_replica; ++core) {
        llvm::SmallVector<StringRef, 8> devices_by_core;
        devices_by_core.reserve(num_replicas);
        llvm::SmallVector<StringRef, 8> hosts_by_core;
        hosts_by_core.reserve(num_replicas);
        for (int replica = 0; replica < num_replicas; ++replica) {
          devices_by_core.push_back(tpu_devices[replica][core].device);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/common/values.go

    	return types.NewErr("invalid type, expected object, array, number, integer, boolean or string, or no type with x-kubernetes-int-or-string or x-kubernetes-preserve-unknown-fields is true, got %s", schema.Type())
    }
    
    // unknownPreserved represents unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields.
    // It preserves the data at runtime without assuming it is of any particular type and supports only equality checking.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 20.5K 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. tensorflow/c/eager/c_api_unified_experimental_graph.cc

            op_->colocation_constraints.emplace(static_cast<const char*>(values[i]),
                                                lengths[i]);
          }
        } else {
          std::vector<tensorflow::StringPiece> v;
          v.reserve(num_values);
          for (int i = 0; i < num_values; ++i) {
            v.emplace_back(static_cast<const char*>(values[i]), lengths[i]);
          }
          op_->node_builder.Attr(attr_name, v);
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. 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)
Back to top