Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,877 for actors (0.2 sec)

  1. pkg/controller/servicecidrs/servicecidrs_controller_test.go

    			},
    		},
    	}
    }
    
    func expectAction(t *testing.T, actions []k8stesting.Action, expected [][]string) {
    	t.Helper()
    	if len(actions) != len(expected) {
    		t.Fatalf("Expected at least %d actions, got %d \ndiff: %v", len(expected), len(actions), cmp.Diff(expected, actions))
    	}
    
    	for i, action := range actions {
    		verb := expected[i][0]
    		if action.GetVerb() != verb {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/DefaultModelRegistration.java

            this.hidden = hidden;
            this.actions = Preconditions.checkNotNull(actions, "actions");
        }
    
        @Override
        public ModelPath getPath() {
            return path;
        }
    
        @Override
        public Multimap<ModelActionRole, ? extends ModelAction> getActions() {
            return actions;
        }
    
        @Override
        public boolean isHidden() {
            return hidden;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. .github/workflows/maven.yml

    name: Java CI with Maven
    
    on:
      push:
        branches:
        - master
        - "*.x"
      pull_request:
        branches:
        - master
        - "*.x"
      workflow_dispatch:
    
    jobs:
      build:
        runs-on: ubuntu-latest
        timeout-minutes: 15
        steps:
        - uses: actions/checkout@v4
        - name: Set up JDK 17
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. .github/workflows/maven.yml

    # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
    
    name: Java CI with Maven
    
    on:
      push:
        branches: [ master ]
      pull_request:
        branches: [ master ]
    
    jobs:
      build:
    
        runs-on: ubuntu-latest
    
        steps:
        - uses: actions/checkout@v2
        - name: Set up JDK 11
          uses: actions/setup-java@v2
          with:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 12:23:46 UTC 2021
    - 574 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/toolingApi-connect.puml

    @startuml
    actor User
    User -> GradleConnector: newConnector()
    GradleConnector -> DefaultGradleConnector: create
    DefaultGradleConnector --> User: instance
    User -> DefaultGradleConnector: use distribution/version/URI
    DefaultGradleConnector -> DistributionFactory: get distribution
    DistributionFactory --> DefaultGradleConnector: Distribution
    User -> DefaultGradleConnector: connect()
    DefaultGradleConnector -> ConnectionFactory: create()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 606 bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			// InitContainersToStart in the actions.
    			test.actions.InitContainersToStart = nil
    		} else {
    			// If sidecar containers are enabled, we should not see any
    			// NextInitContainerToStart in the actions.
    			test.actions.NextInitContainerToStart = nil
    		}
    		verifyActions(t, &test.actions, &actions, desc)
    	}
    }
    
    func TestSyncPodWithSandboxAndDeletedPod(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r32/BuildActionCrossVersionSpec.groovy

            // Actions also share some static state, to verify that actions are loaded into the same ClassLoader in the daemon
            def classesDir1 = file("actions/1")
            copyClassTo(Action1, classesDir1)
            copyClassTo(SharedActionStaticState, classesDir1)
            def classesDir2 = file("actions/2")
            copyClassTo(Action2, classesDir2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/DaemonCommandExecuter.java

        private final DaemonServerConfiguration configuration;
        private final ImmutableList<DaemonCommandAction> actions;
    
        public DaemonCommandExecuter(DaemonServerConfiguration configuration, ImmutableList<DaemonCommandAction> actions) {
            this.configuration = configuration;
            this.actions = actions;
        }
    
        /**
         * Handle the given command, and communicate as necessary with the client over the given connection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. pkg/controller/certificates/certificate_controller_test.go

    	wait.PollUntil(10*time.Millisecond, func() (bool, error) {
    		return controller.queue.Len() >= 1, nil
    	}, stopCh)
    	controller.processNextWorkItem(ctx)
    
    	actions := client.Actions()
    	if len(actions) != 1 {
    		t.Errorf("expected 1 actions")
    	}
    	if a := actions[0]; !a.Matches("update", "certificatesigningrequests") ||
    		a.GetSubresource() != "approval" {
    		t.Errorf("unexpected action: %#v", a)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIsolationIntegrationTest.groovy

    /*
     * Copyright 2024 the original author or 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 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top