Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for notified (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// of items into tabular output. If unset, the default will be used.
    	TableConvertor rest.TableConvertor
    
    	// ResetFieldsStrategy provides the fields reset by the strategy that
    	// should not be modified by the user.
    	ResetFieldsStrategy rest.ResetFieldsStrategy
    
    	// Storage is the interface for the underlying storage for the
    	// resource. It is wrapped into a "DryRunnableStorage" that will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    For example, issues may occur if a `{javaApi}/java/lang/SecurityManager.html[SecurityManager]` is modified in a test because
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    	VersionID [16]byte          `json:"ID" msg:"ID"`                               // Version ID for delete marker
    	ModTime   int64             `json:"MTime" msg:"MTime"`                         // Object delete marker modified time
    	MetaSys   map[string][]byte `json:"MetaSys,omitempty" msg:"MetaSys,omitempty"` // Delete marker internal metadata
    }
    
    // xlMetaV2Object defines the data struct for object journal type
    type xlMetaV2Object struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    // or ok=false if module m's dependencies are pruned out.
    //
    // The caller must not modify the returned slice, but may safely append to it
    // and may rely on it not to be modified.
    func (mg *ModuleGraph) RequiredBy(m module.Version) (reqs []module.Version, ok bool) {
    	return mg.g.RequiredBy(m)
    }
    
    // Selected returns the selected version of the module with the given path.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFile.java

            }
            return 0;
        }
    
    
        /**
         * This URLConnection method just returns the result of <tt>lastModified</tt>.
         *
         * @return the last modified data as milliseconds since Jan 1, 1970
         */
        @Override
        public long getDate () {
            try {
                return lastModified();
            }
            catch ( SmbException se ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  7. src/cmd/compile/internal/ssa/debug.go

    	// If this is the first call, do updates on the "baseState"; if this
    	// is a subsequent call, tweak the startState instead. Note that
    	// these "set" values are values; there are no side effects to
    	// other values as these are modified.
    	newState := baseState
    	if updating {
    		newState = blockLocs[b.ID].startState
    	}
    
    	for it := newState.Iterator(); !it.Done(); {
    		k, d := it.Next()
    		thisSlot := d.(*liveSlot)
    		x := thisSlot.VarLoc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/MapMakerInternalMap.java

              }
            }
    
            return false;
          } finally {
            unlock();
          }
        }
    
        /** Clears a value that has not yet been set, and thus does not require count to be modified. */
        @CanIgnoreReturnValue
        boolean clearValueForTesting(
            K key,
            int hash,
            WeakValueReference<K, V, ? extends InternalEntry<K, V, ?>> valueReference) {
          lock();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    		if err != nil {
    			cancel(err)
    		}
    	}()
    
    	for {
    		select {
    		case <-ctx.Done():
    			req.closeBody()
    			return nil, context.Cause(ctx)
    		default:
    		}
    
    		// treq gets modified by roundTrip, so we need to recreate for each retry.
    		treq := &transportRequest{Request: req, trace: trace, ctx: ctx, cancel: cancel}
    		cm, err := t.connectMethodForRequest(treq)
    		if err != nil {
    			req.closeBody()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context_test.go

    	for i := 0; i < 50; i++ {
    		go func() {
    			reqA.CopyMerge(reqB)
    		}()
    	}
    	if reqA.Reason.Count() != 0 {
    		t.Fatalf("reqA modified: %v", reqA.Reason)
    	}
    	if reqB.Reason.Count() != 2 {
    		t.Fatalf("reqB modified: %v", reqB.Reason)
    	}
    }
    
    func TestEnvoyFilters(t *testing.T) {
    	proxyVersionRegex := regexp.MustCompile(`1\.4.*`)
    	envoyFilters := []*EnvoyFilterWrapper{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top