Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for actor (0.06 sec)

  1. src/cmd/go/internal/test/test.go

    	ch := make(chan struct{})
    	close(ch)
    	for _, a := range runs {
    		if r, ok := a.Actor.(*runTestActor); ok {
    			r.prev = ch
    			ch = make(chan struct{})
    			r.next = ch
    		}
    	}
    
    	// Ultimately the goal is to print the output.
    	root := &work.Action{Mode: "go test", Actor: work.ActorFunc(printExitStatus), Deps: prints}
    
    	// Force the printing of results to happen in order,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

    deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"force":        "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people.",
    	"fieldManager": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Force is going to "force" Apply requests. It means user will
      // re-acquire conflicting fields owned by other people.
      optional bool force = 2;
    
      // fieldManager is a name associated with the actor or entity
      // that is making these changes. The value must be less than or
      // 128 characters long, and only contain printable characters,
      // as defined by https://golang.org/pkg/unicode/#IsPrint. This
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Force is going to "force" Apply requests. It means user will
      // re-acquire conflicting fields owned by other people.
      optional bool force = 2;
    
      // fieldManager is a name associated with the actor or entity
      // that is making these changes. The value must be less than or
      // 128 characters long, and only contain printable characters,
      // as defined by https://golang.org/pkg/unicode/#IsPrint. This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// in this list can only be removed.
    	// Finalizers may be processed and removed in any order.  Order is NOT enforced
    	// because it introduces significant risk of stuck finalizers.
    	// finalizers is a shared field, any actor with permission can reorder it.
    	// If the finalizer list is processed in order, then this can lead to a situation
    	// in which the component responsible for the first finalizer in the list is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    				// the watch was established otherwise
    				// we would be blocking on cache.Watch(...)
    				// in addition to that, the tests are serial in nature,
    				// meaning that there is no other actor
    				// that could add items to the database,
    				// which could result in receiving new items.
    				// given that waiting 1s seems okay
    				if tt.expectedEvent != nil {
    					t.Errorf("Failed to get an event")
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  9. src/regexp/syntax/parse.go

    			p.reuse(sub)
    		} else {
    			re.Sub = append(re.Sub, sub)
    		}
    	}
    	if op == OpAlternate {
    		re.Sub = p.factor(re.Sub)
    		if len(re.Sub) == 1 {
    			old := re
    			re = re.Sub[0]
    			p.reuse(old)
    		}
    	}
    	return re
    }
    
    // factor factors common prefixes from the alternation list sub.
    // It returns a replacement list that reuses the same storage and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	} else {
    		factor = fmt.Sprintf("%.1fx", exceedFactor)
    	}
    	return fmt.Sprintf("%s exceeds budget by factor of %s (try simplifying the rule, or adding maxItems, maxProperties, and maxLength where arrays, maps, and strings are declared)", costName, factor)
    }
    
    var newlineMatcher = regexp.MustCompile(`[\n\r]+`) // valid newline chars in CEL grammar
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
Back to top