Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 120 for actors (0.46 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    func (t *Tester) TestWatch(
    	valid runtime.Object, emitFn EmitFunc,
    	labelsPass, labelsFail []labels.Set, fieldsPass, fieldsFail []fields.Set, actions []string) {
    	t.testWatchLabels(valid.DeepCopyObject(), emitFn, labelsPass, labelsFail, actions)
    	t.testWatchFields(valid.DeepCopyObject(), emitFn, fieldsPass, fieldsFail, actions)
    }
    
    // =============================================================================
    // Creation tests.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/validation/validation.go

    	var allErrors field.ErrorList
    	actions := sets.NewString()
    	for i, action := range va {
    		if !validValidationActions.Has(string(action)) {
    			allErrors = append(allErrors, field.NotSupported(fldPath.Index(i), action, validValidationActions.List()))
    		}
    		if actions.Has(string(action)) {
    			allErrors = append(allErrors, field.Duplicate(fldPath.Index(i), action))
    		}
    		actions.Insert(string(action))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

                    "configureEach(Action)": { container.configureEach(Actions.doNothing()) }
                ]
            }
    
            return methods + [
                "whenObjectAdded(Action)": { container.whenObjectAdded(Actions.doNothing()) },
                "withType(Class, Action)": { container.withType(type, Actions.doNothing()) },
                "all(Action)": { container.all(Actions.doNothing()) },
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    you may provide Gradle with the exact encryption key to use when
    reading or writing the cached configuration data via the `GRADLE_ENCRYPTION_KEY` environment variable.
    
    [IMPORTANT]
    ====
    You must ensure that the same encryption key is consistently provided across multiple Gradle runs,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

    # Copyright 2019 The Kubernetes Authors.
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    #
    #     http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Iterators.java

    /*
     * Copyright (C) 2007 The Guava Authors
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Iterators.java

    /*
     * Copyright (C) 2007 The Guava Authors
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    hand create a barrier at the end of while loop body thus blocking any
    parallelism across iterations.
    
    For example, the following while loop body has a `%barrier` at the end.
    Although there is no data/control dependency between `tf.AssignVariableOp`
    for `%arg0` to `tf.AssignVariableOp` for `%arg1` across any iteration, the
    while loop body has a control barrier (`%barrier`) at the end which forces
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top