Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 136 for statusCh (0.15 sec)

  1. pkg/apis/flowcontrol/v1beta3/zz_generated.conversion.go

    	if err := Convert_v1beta3_FlowSchemaSpec_To_flowcontrol_FlowSchemaSpec(&in.Spec, &out.Spec, s); err != nil {
    		return err
    	}
    	if err := Convert_v1beta3_FlowSchemaStatus_To_flowcontrol_FlowSchemaStatus(&in.Status, &out.Status, s); err != nil {
    		return err
    	}
    	return nil
    }
    
    // Convert_v1beta3_FlowSchema_To_flowcontrol_FlowSchema is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 53.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///   * Might use any other error value for `status` to signal other errors.
      void (*create_dir)(const TF_Filesystem* filesystem, const char* path,
                         TF_Status* status);
    
      /// Creates the directory specified by `path` and all needed ancestors.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if directory was created.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/replica_calculator_test.go

    			}
    			podName := fmt.Sprintf("%s-%d", podNamePrefix, i)
    			pod := v1.Pod{
    				Status: v1.PodStatus{
    					Phase:     podPhase,
    					StartTime: &podStartTime,
    					Conditions: []v1.PodCondition{
    						{
    							Type:   v1.PodReady,
    							Status: podReadiness,
    						},
    					},
    				},
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      podName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  4. pkg/apis/flowcontrol/validation/validation_test.go

    	testCases := []struct {
    		name           string
    		status         *flowcontrol.FlowSchemaStatus
    		expectedErrors field.ErrorList
    	}{{
    		name:           "empty status should work",
    		status:         &flowcontrol.FlowSchemaStatus{},
    		expectedErrors: field.ErrorList{},
    	}, {
    		name: "duplicate key should fail",
    		status: &flowcontrol.FlowSchemaStatus{
    			Conditions: []flowcontrol.FlowSchemaCondition{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  5. cmd/iam-store.go

    		cr.Expiration = expirationInUTC
    	}
    
    	switch opts.status {
    	// The caller did not ask to update status account, do nothing
    	case "":
    	case string(madmin.AccountEnabled):
    		cr.Status = auth.AccountOn
    	case string(madmin.AccountDisabled):
    		cr.Status = auth.AccountOff
    	// Update account status
    	case auth.AccountOn, auth.AccountOff:
    		cr.Status = opts.status
    	default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/v1/zz_generated.conversion.go

    	if err := Convert_v1_FlowSchemaSpec_To_flowcontrol_FlowSchemaSpec(&in.Spec, &out.Spec, s); err != nil {
    		return err
    	}
    	if err := Convert_v1_FlowSchemaStatus_To_flowcontrol_FlowSchemaStatus(&in.Status, &out.Status, s); err != nil {
    		return err
    	}
    	return nil
    }
    
    // Convert_v1_FlowSchema_To_flowcontrol_FlowSchema is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  7. tests/integration/security/authz_test.go

    							wantCode := http.StatusOK
    							if !c.allow {
    								wantCode = http.StatusForbidden
    							}
    
    							opts := echo.CallOptions{
    								Port: echo.Port{
    									Protocol: protocol.HTTP,
    								},
    								HTTP: echo.HTTP{
    									Headers: headers.New().WithHost(c.host).Build(),
    								},
    								Check: check.And(check.NoError(), check.Status(wantCode)),
    							}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"message":  "A human-readable description of the status of this operation.",
    	"reason":   "A machine-readable description of why this operation is in the \"Failure\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    		_, known := classInfos[gwc.ControllerName]
    		if !known {
    			continue
    		}
    		res[obj.Name] = gwc.ControllerName
    
    		// Set status. If we created it, it may already be there. If not, set it again
    		obj.Status.(*kstatus.WrappedStatus).Mutate(func(s config.Status) config.Status {
    			gcs := s.(*k8s.GatewayClassStatus)
    			*gcs = GetClassStatus(gcs, obj.Generation)
    			gcs.SupportedFeatures = supportedFeatures
    			return gcs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users.go

    }
    
    // SetGroupStatus - PUT /minio/admin/v3/set-group-status?group=mygroup1&status=enabled
    func (a adminAPIHandlers) SetGroupStatus(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.EnableGroupAdminAction)
    	if objectAPI == nil {
    		return
    	}
    
    	vars := mux.Vars(r)
    	group := vars["group"]
    	status := vars["status"]
    
    	var (
    		err       error
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top