Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 135 for notified (0.17 sec)

  1. licenses/github.com/hashicorp/go-version/LICENSE

          steward.
    
    10.3. Modified Versions
    
          If you create software not governed by this License, and you want to
          create a new license for such software, you may create and use a modified
          version of this License if you rename the license and remove any
          references to the name of the license steward (except to note that such
          modified license differs from this License).
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. src/net/http/cookiejar/jar.go

    	if path == "" {
    		path = "/"
    	}
    
    	modified := false
    	var selected []entry
    	for id, e := range submap {
    		if e.Persistent && !e.Expires.After(now) {
    			delete(submap, id)
    			modified = true
    			continue
    		}
    		if !e.shouldSend(https, host, path) {
    			continue
    		}
    		e.LastAccess = now
    		submap[id] = e
    		selected = append(selected, e)
    		modified = true
    	}
    	if modified {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

            received.await()
            daemonConnection.stop()
    
            then:
            1 * handler.onInput(input1) >> { received.countDown(); throw new RuntimeException() }
            0 * handler._
        }
    
        def "notifies disconnect handler on disconnect"() {
            Runnable handler = Mock()
            def received = new CountDownLatch(1)
    
            when:
            daemonConnection.onDisconnect(handler)
            connection.disconnect()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                tasks.register('update', UpdateTask) {
                    archive = theArchive
                    replacementText = 'modified by project1'
                }
    
                tasks.register('verify', VerifyTask) {
                    dependsOn tasks.named('update')
                    archive = theArchive
                    beginsWith = 'modified by project1'
                }
            """
    
            file('project2/build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    represent, as a whole, an original work of authorship.
    
    "Modified Works" shall mean any work in Source Code or other form that
    results from an addition to, deletion from, or modification of the
    contents of the Program, including, for purposes of clarity any new file
    in Source Code form that contains any contents of the Program. Modified
    Works shall not include works that contain only declarations,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/crdclient/client.go

    func (cl *Client) Patch(orig config.Config, patchFn config.PatchFunc) (string, error) {
    	modified, patchType := patchFn(orig.DeepCopy())
    
    	meta, err := patch(cl.client, orig, getObjectMetadata(orig), modified, getObjectMetadata(modified), patchType)
    	if err != nil {
    		return "", err
    	}
    	return meta.GetResourceVersion(), nil
    }
    
    // Delete implements store interface
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

      @CanIgnoreReturnValue
      public static <E extends @Nullable Object> boolean addAll(
          Collection<E> addTo, Iterable<? extends E> elementsToAdd) {
        boolean modified = false;
        for (E e : elementsToAdd) {
          modified |= addTo.add(e);
        }
        return modified;
      }
    
      static <T extends @Nullable Object> Iterable<T> reverse(List<T> list) {
        return new Iterable<T>() {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top