Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 359 for Aggregate (0.14 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        - matchLabels:
            rbac.authorization.k8s.io/aggregate-to-edit: "true"
      apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
          rbac.authorization.k8s.io/aggregate-to-admin: "true"
        name: edit
      rules: null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  2. build-logic/buildquality/src/main/kotlin/gradlebuild.incubation-report-aggregation.gradle.kts

    plugins {
        id("base")
    }
    
    val reports by configurations.creating {
        isVisible = false
        isCanBeResolved = false
        isCanBeConsumed = false
        description = "Dependencies to aggregate reports from"
    }
    
    val allIncubationReports = tasks.register<IncubatingApiAggregateReportTask>("allIncubationReports") {
        group = "verification"
        reports.from(resolver("txt"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. test/fixedbugs/notinheap3.go

    func f() {
    	// Test direct writes
    	v1.x = nil        // no barrier
    	v2.x = nil        // ERROR "write barrier"
    	v1.s = []nih(nil) // no barrier
    	v2.s = []ih(nil)  // ERROR "write barrier"
    }
    
    func g() {
    	// Test aggregate writes
    	v1 = t1{x: nil} // no barrier
    	v2 = t2{x: nil} // ERROR "write barrier"
    }
    
    func h() {
    	// Test copies and appends.
    	copy(v1s, v1s[1:])      // no barrier
    	copy(v2s, v2s[1:])      // ERROR "write barrier"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 17:46:15 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authorization/union/union.go

    // subauthorizer returns a NoOpinion, then the union authorizer moves onto the
    // next authorizer or, if the subauthorizer was the last authorizer, returns
    // NoOpinion as the aggregate decision. I.e. union authorizer creates an
    // aggregate decision and supports short-circuit allows and denies from
    // subauthorizers.
    package union
    
    import (
    	"context"
    	"strings"
    
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 28 20:27:28 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.api.reporting.GenerateBuildDashboard.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>reports</td>
                </tr>
                <tr>
                    <td>aggregate</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/software/reporting/src/main/java/org/gradle/api/reporting/GenerateBuildDashboard.java

        }
    
        /**
         * Configures which reports are to be aggregated in the build dashboard report generated by this task.
         *
         * <pre>
         * buildDashboard {
         *   aggregate codenarcMain, checkstyleMain
         * }
         * </pre>
         *
         * @param reportings an array of {@link Reporting} instances that are to be aggregated
         */
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:30:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/aggregate/leak_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package aggregate
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 794 bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/aggregate/controller.go

    }
    
    // AddRegistry adds registries into the aggregated controller.
    // If the aggregated controller is already Running, the given registry will never be started.
    func (c *Controller) AddRegistry(registry serviceregistry.Instance) {
    	c.storeLock.Lock()
    	defer c.storeLock.Unlock()
    	c.addRegistry(registry, nil)
    }
    
    // AddRegistryAndRun adds registries into the aggregated controller and makes sure it is Run.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/fake.go

    	meshconfig "istio.io/api/mesh/v1alpha1"
    	configaggregate "istio.io/istio/pilot/pkg/config/aggregate"
    	"istio.io/istio/pilot/pkg/config/kube/crd"
    	"istio.io/istio/pilot/pkg/config/memory"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry"
    	"istio.io/istio/pilot/pkg/serviceregistry/aggregate"
    	memregistry "istio.io/istio/pilot/pkg/serviceregistry/memory"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/expiry/AllDaemonExpirationStrategy.java

            for (DaemonExpirationStrategy expirationStrategy : expirationStrategies) {
                // If any of the child strategies don't expire the daemon, the daemon will not expire.
                // Otherwise, the daemon will expire and aggregate the reasons together.
                expirationResult = expirationStrategy.checkExpiration();
    
                if (expirationResult.getStatus() == DO_NOT_EXPIRE) {
                    return DaemonExpirationResult.NOT_TRIGGERED;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top