Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 289 for notified (0.13 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	// copy of the volume and sometimes return a ref to the original
    	claimClone := claim.DeepCopy()
    	logger := klog.FromContext(ctx)
    	modified := updateMigrationAnnotations(logger, ctrl.csiMigratedPluginManager, ctrl.translator, claimClone.Annotations, true)
    	if !modified {
    		return claimClone, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalComponentGraphResolveState.java

        /**
         * We currently allow a configuration that has been partially observed for resolution to be modified
         * in a beforeResolve callback.
         *
         * To reduce the number of instances of root component metadata we create, we mark all configurations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

         * (the agent) will catch all throwables thrown by this method and forward them to {@link #transformFailed(String, Throwable)}.
         * <p>
         * The {@code classfileBuffer} may be already modified by other Java agents.
         * <p>
         * This method may be called concurrently in multiple threads.
         *
         * @param className the name of the class being loaded (in the internal form, e.g. {@code java/util/List})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. pkg/slices/slices.go

    // This sort is not guaranteed to be stable.
    // The slice is modified in place but returned.
    func SortFunc[E any](x []E, less func(a, b E) int) []E {
    	if len(x) <= 1 {
    		return x
    	}
    	slices.SortFunc(x, less)
    	return x
    }
    
    // SortStableFunc sorts the slice x while keeping the original order of equal element.
    // The slice is modified in place but returned.
    // Please refer to SortFunc for usage instructions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    					Type:            watch.Modified,
    					PrevObject:      &v1.Pod{ObjectMeta: metav1.ObjectMeta{ResourceVersion: "3"}},
    					PrevObjFields:   fields.Set{"spec.nodeName": "host"},
    					Object:          &v1.Pod{ObjectMeta: metav1.ObjectMeta{ResourceVersion: "4"}},
    					ObjFields:       fields.Set{"spec.nodeName": "host"},
    					ResourceVersion: 4,
    				},
    				{
    					Type:            watch.Modified,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    // byte slice will be modified the next time ReadFrame is invoked and should not be altered.
    func (r *jsonFrameReader) Read(data []byte) (int, error) {
    	// Return whatever remaining data exists from an in progress frame
    	if n := len(r.remaining); n > 0 {
    		if n <= len(data) {
    			//nolint:staticcheck // SA4006,SA4010 underlying array of data is modified here.
    			data = append(data[0:0], r.remaining...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonFactory.java

                @Override
                public DefaultWorkResult execute(IsolatedParametersActionExecutionSpec<?> spec, BuildOperationRef parentBuildOperation) {
                    // This notifies the cancellation handler that a worker daemon has been in use during this build session.  If the
                    // build session is cancelled, we can't guarantee that all worker daemons are in a safe state, so the cancellation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 13:20:59 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/cmd/trace/gen.go

    // from a trace. Each method in this interface is a handler for a kind of event
    // that is interesting to render in the UI via the JSON trace.
    type generator interface {
    	// Global parts.
    	Sync() // Notifies the generator of an EventSync event.
    	StackSample(ctx *traceContext, ev *trace.Event)
    	GlobalRange(ctx *traceContext, ev *trace.Event)
    	GlobalMetric(ctx *traceContext, ev *trace.Event)
    
    	// Goroutine parts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinCodeFragmentContextModificationListener.kt

         *
         * All code fragments depending on [module], both directly or transitively, should be considered modified when this event is received.
         *
         * @see KotlinModificationTopics
         */
        public fun onModification(module: KtModule)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 796 bytes
    - Viewed (0)
  10. src/net/http/fs.go

    // Because those can all be configured by the caller by setting headers like
    // Etag, Last-Modified, and Cache-Control to send on a successful response,
    // the error path needs to clear them, since they may not be meant for errors.
    func serveError(w ResponseWriter, text string, code int) {
    	h := w.Header()
    	h.Del("Etag")
    	h.Del("Last-Modified")
    	h.Del("Cache-Control")
    	Error(w, text, code)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top