Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 279 for notified (0.26 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch.go

    // Calculate addition-and-change patch between current and modified.
    // Calculate deletion patch between original and modified.
    func CreateThreeWayJSONMergePatch(original, modified, current []byte, fns ...mergepatch.PreconditionFunc) ([]byte, error) {
    	if len(original) == 0 {
    		original = []byte(`{}`)
    	}
    	if len(modified) == 0 {
    		modified = []byte(`{}`)
    	}
    	if len(current) == 0 {
    		current = []byte(`{}`)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. cmd/bucket-metadata-sys.go

    // The returned object may not be modified.
    func (sys *BucketMetadataSys) GetNotificationConfig(bucket string) (*event.Config, error) {
    	meta, _, err := sys.GetConfig(GlobalContext, bucket)
    	if err != nil {
    		return nil, err
    	}
    	return meta.notificationConfig, nil
    }
    
    // GetSSEConfig returns configured SSE config
    // The returned object may not be modified.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. 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)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceModuleStateModificationListener.kt

         * received. This includes source files being moved or removed, and source modules possibly being removed. Thus, all caches related to
         * source module structure and source code should be invalidated.
         *
         * Library modules (including library sources) do not need to be considered modified, so any caches related to library modules and their
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceOutOfBlockModificationListener.kt

         *
         * The source code of all source [KtModule]s in the project should be considered modified when this event is received. This includes
         * source files being moved or removed. Thus, all caches related to source code and source files should be invalidated.
         *
         * Library modules (including library sources) do not need to be considered modified, so any caches related to library modules and their
         * contents may be kept.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    	// sent.
    	ResultChan() <-chan Event
    }
    
    // EventType defines the possible types of events.
    type EventType string
    
    const (
    	Added    EventType = "ADDED"
    	Modified EventType = "MODIFIED"
    	Deleted  EventType = "DELETED"
    	Bookmark EventType = "BOOKMARK"
    	Error    EventType = "ERROR"
    )
    
    var (
    	DefaultChanSize int32 = 100
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  7. src/runtime/proc.go

    	lock mutex
    
    	// newm points to a list of M structures that need new OS
    	// threads. The list is linked through m.schedlink.
    	newm muintptr
    
    	// waiting indicates that wake needs to be notified when an m
    	// is put on the list.
    	waiting bool
    	wake    note
    
    	// haveTemplateThread indicates that the templateThread has
    	// been started. This is not protected by lock. Use cas to set
    	// to 1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r49/ToolingApiEclipseModelProjectCrossVersionSpec.groovy

            then:
            project.projectNatures.size() == 2
            project.buildCommands.size() == 2
        }
    
        @Issue('eclipse/buildship#694')
        def "EclipseProject attributes modified via beforeMerged"() {
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'eclipse'
               import org.gradle.plugins.ide.eclipse.model.BuildCommand
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/BuildModelTransformer.java

                            v = depModel.getParent().getVersion();
                        }
                        dep = dep.withVersion(v);
                        modified = true;
                    }
                }
                newDeps.add(dep);
            }
            if (modified) {
                builder.dependencies(newDeps);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. 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)
Back to top