Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 165 for Transition (3.58 sec)

  1. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    .page-search-info {
        background-color: var(--subnav-background-color);
        border-radius: 3px;
        border: 0 solid var(--border-color);
        padding: 0 8px;
        overflow: hidden;
        height: 0;
        transition: all 0.2s ease;
    }
    div.table-tabs > button.table-tab {
        background: var(--navbar-background-color);
        color: var(--navbar-text-color);
    }
    .page-search-header {
        padding: 5px 12px 7px 12px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  2. src/internal/trace/event.go

    //
    // Note that for proc state transitions this always refers to the
    // state before the transition. For example, if a proc is just
    // starting to run on this thread, then this will return NoProc.
    func (e Event) Proc() ProcID {
    	return e.ctx.P
    }
    
    // Thread returns the ID of the thread this event pertains to.
    //
    // Note that for thread state transitions this always refers to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    	// `message` is a human-readable message indicating details about last transition.
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    }
    
    func (v transitionRuleMatcher) matches(cr CompilationResult) bool {
    	return cr.UsesOldSelf == bool(v)
    }
    
    func (v transitionRuleMatcher) String() string {
    	if v {
    		return "is a transition rule"
    	}
    	return "is not a transition rule"
    }
    
    func TestCelCompilation(t *testing.T) {
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, apiextensionsfeatures.CRDValidationRatcheting, true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. cmd/bucket-lifecycle-handlers.go

    		return
    	}
    
    	// Validate the received bucket policy document
    	if err = bucketLifecycle.Validate(rcfg); err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	// Validate the transition storage ARNs
    	if err = validateTransitionTier(bucketLifecycle); err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	// Create a map of updated set of rules in request
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. src/runtime/export_debug_test.go

    	case 2:
    		// Function panicked. Copy panic out.
    		h.debugCallPanicOut(ctxt)
    	case 8:
    		// Call isn't safe. Get the reason.
    		h.debugCallUnsafe(ctxt)
    		// Don't wake h.done. We need to transition to status 16 first.
    	case 16:
    		h.restoreSigContext(ctxt)
    		// Done
    		notewakeup(&h.done)
    	default:
    		h.err = plainError("unexpected debugCallV2 status")
    		notewakeup(&h.done)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-utils_test.go

    		fi.ModTime = basefi.ModTime.Add(time.Duration(i) * time.Second)
    		if err := xl.AddVersion(fi); err != nil {
    			t.Fatalf("%d: Failed to add version %v", i+1, err)
    		}
    
    		if i > 3 {
    			// Simulate transition of a version
    			transfi := fi
    			transfi.TransitionStatus = lifecycle.TransitionComplete
    			transfi.TransitionTier = "MINIO-TIER"
    			transfi.TransitionedObjName = mustGetUUID()
    			xl.DeleteVersion(transfi)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    		// schedule checks if freezing is set and if so stops
    		// execution. This guarantees that while Gs can transition from
    		// running to stopped, they can never transition from stopped
    		// to running.
    		//
    		// The sleep here allows racing Ms that missed freezing and are
    		// about to run a G to complete the transition to running
    		// before we start traceback.
    		usleep(1000)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    1. Begin by importing your existing Ant build.
    2. Then, transition your dependency declarations from the Ant script to your build file.
    3. Finally, move your tasks to your build file or replace them with Gradle's plugins.
    
    This migration process can be performed incrementally, and you can maintain a functional Gradle build throughout the transition.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. cmd/logging.go

    	logger.LogOnceIf(ctx, "internal", err, id, errKind...)
    }
    
    func transitionLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "transition", err, errKind...)
    }
    
    func configLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "config", err, errKind...)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top