Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 250 for populator (0.32 sec)

  1. cmd/kms-handlers.go

    }
    
    // KMSCreateKeyHandler - POST /minio/kms/v1/key/create?key-id=<master-key-id>
    func (a kmsAPIHandlers) KMSCreateKeyHandler(w http.ResponseWriter, r *http.Request) {
    	// If env variable MINIO_KMS_SECRET_KEY is populated, prevent creation of new keys
    	ctx := newContext(r, w, "KMSCreateKey")
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    
    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.KMSCreateKeyAction)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Modifying Gradle Module Metadata after a publication has been populated
    
    Altering the link:publishing_gradle_module_metadata.html[GMM] (e.g., changing a component configuration variants) *after* a Maven or Ivy publication has been populated from their components is now deprecated.
    This feature will be removed in Gradle 9.0.
    
    Eager population of the publication can happen if the following methods are called:
    
    * Maven
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. pkg/kube/krt/core.go

    // where the resultant object of type T is equal to an existing
    // object in the collection.
    //
    // On initial sync, events will be published to registered clients
    // as the Collection is populated.
    type EventStream[T any] interface {
    	// Register adds an event watcher to the collection. Any time an item in the collection changes, the handler will be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    			expressions: []string{"object.foo == oldObject.foo"},
    		},
    		{
    			name: "object null checks",
    			// since object and oldObject are CEL variable, has() cannot be used (it works only on fields),
    			// so we always populate it to allow for a null check in the case of CREATE, where oldObject is
    			// null, and DELETE, where object is null.
    			expressions: []string{"object == null || oldObject == null || object.foo == oldObject.foo"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.cc

      std::vector<string> node_dtypes;
      std::vector<std::optional<std::vector<int>>> node_shapes;
      std::vector<std::optional<double>> node_mins;
      std::vector<std::optional<double>> node_maxs;
    
      // Populate quantization specs.
      TF_RETURN_IF_ERROR(internal::PopulateQuantizationSpecs(
          model_flags, toco_flags, &quant_specs, &node_names, &node_dtypes,
          &node_shapes, &node_mins, &node_maxs));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/net/http/request.go

    	// set, it is undefined whether Cancel is respected.
    	Cancel <-chan struct{}
    
    	// Response is the redirect response which caused this request
    	// to be created. This field is only populated during client
    	// redirects.
    	Response *Response
    
    	// Pattern is the [ServeMux] pattern that matched the request.
    	// It is empty if the request was not matched against a pattern.
    	Pattern string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admission/v1/types.go

    	// Object is the object from the incoming request.
    	// +optional
    	Object runtime.RawExtension `json:"object,omitempty" protobuf:"bytes,9,opt,name=object"`
    	// OldObject is the existing object. Only populated for DELETE and UPDATE requests.
    	// +optional
    	OldObject runtime.RawExtension `json:"oldObject,omitempty" protobuf:"bytes,10,opt,name=oldObject"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. internal/event/targetlist.go

    }
    
    // TargetStat is the stats of a single target.
    type TargetStat struct {
    	CurrentSendCalls int64 // CurrentSendCalls is the number of concurrent async Send calls to all targets
    	CurrentQueue     int   // Populated if target has a store.
    	TotalEvents      int64
    	FailedEvents     int64 // Number of failed events per target
    }
    
    // TargetList - holds list of targets indexed by target ID.
    type TargetList struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ir/func.go

    	// body. They will also each have IsClosureVar set, and will have
    	// Byval set if they're captured by value.
    	ClosureVars []*Name
    
    	// Enclosed functions that need to be compiled.
    	// Populated during walk.
    	Closures []*Func
    
    	// Parents records the parent scope of each scope within a
    	// function. The root scope (0) has no parent, so the i'th
    	// scope's parent is stored at Parents[i-1].
    	Parents []ScopeID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. src/internal/trace/event.go

    		s = procStateTransition(ProcID(e.base.args[0]), ProcIdle, ProcRunning)
    	case go122.EvProcStop:
    		s = procStateTransition(e.ctx.P, ProcRunning, ProcIdle)
    	case go122.EvProcSteal:
    		// N.B. ordering.advance populates e.base.extra.
    		beforeState := ProcRunning
    		if go122.ProcStatus(e.base.extra(version.Go122)[0]) == go122.ProcSyscallAbandoned {
    			// We've lost information because this ProcSteal advanced on a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top