Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,031 for actors (0.24 sec)

  1. pkg/controller/deployment/rolling_test.go

    			if scaled || len(fake.Actions()) > 0 {
    				t.Errorf("unexpected scaling: %v", fake.Actions())
    			}
    			continue
    		}
    		if test.scaleExpected && !scaled {
    			t.Errorf("expected scaling to occur")
    			continue
    		}
    		if len(fake.Actions()) != 1 {
    			t.Errorf("expected 1 action during scale, got: %v", fake.Actions())
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultResolutionResult.java

            final Set<ResolvedComponentResult> out = new LinkedHashSet<>();
            eachElement(getRoot(), Actions.doNothing(), Actions.doNothing(), out);
            return out;
        }
    
        @Override
        public void allComponents(final Action<? super ResolvedComponentResult> action) {
            eachElement(getRoot(), action, Actions.doNothing(), new HashSet<>());
        }
    
        @Override
        @SuppressWarnings("rawtypes")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. .github/workflows/codeql-analysis.yml

    on:
      push:
        branches: [ main, master, release ]
      schedule:
        - cron: '0 5 * * *'
    
    permissions: {}
    
    jobs:
      CodeQL-Build:
        permissions:
          actions: read  # for github/codeql-action/init to get workflow details
          contents: read  # for actions/checkout to fetch code
          security-events: write  # for github/codeql-action/analyze to upload SARIF results
        runs-on: ubuntu-latest
    
        strategy:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/configuration/project/DelayedConfigurationActions.java

        public void execute(ProjectInternal projectInternal) {
            ProjectConfigurationActionContainer actions = projectInternal.getConfigurationActions();
            try {
                for (Action<? super ProjectInternal> action : actions.getActions()) {
                    action.execute(projectInternal);
                }
            } finally {
                actions.finished();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status_test.go

    	clock.Step(time.Minute)
    	assert.NoError(t, kubelet.updateNodeStatus(ctx))
    
    	// 2 more action (There were 2 actions before).
    	actions = kubeClient.Actions()
    	assert.Len(t, actions, 4)
    	assert.IsType(t, core.GetActionImpl{}, actions[2])
    	assert.IsType(t, core.PatchActionImpl{}, actions[3])
    	patchAction = actions[3].(core.PatchActionImpl)
    
    	updatedNode, err = applyNodeStatusPatch(updatedNode, patchAction.GetPatch())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  6. pkg/kubelet/util/manager/watch_based_manager_test.go

    	// This should trigger List and Watch actions eventually.
    	actionsFn := func() (bool, error) {
    		actions := fakeClient.Actions()
    		if len(actions) > 2 {
    			return false, fmt.Errorf("too many actions: %v", actions)
    		}
    		if len(actions) < 2 {
    			return false, nil
    		}
    		if actions[0].GetVerb() != "list" || actions[1].GetVerb() != "watch" {
    			return false, fmt.Errorf("unexpected actions: %v", actions)
    		}
    		return true, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 10:05:43 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  7. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestClassProcessor.java

    import org.gradle.api.internal.tasks.testing.junit.AbstractJUnitTestClassProcessor;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.actor.Actor;
    import org.gradle.internal.actor.ActorFactory;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.time.Clock;
    import org.junit.platform.engine.DiscoverySelector;
    import org.junit.platform.engine.FilterResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractTaskTest.groovy

            when:
            getTask().getActions().add(Actions.doNothing())
            getTask().getActions().add(Actions.doNothing())
    
            then:
            getTask().getActions().size() == 2
    
            when:
            List<Action<? super Task>> actions = new ArrayList<>()
            actions.add(Actions.doNothing())
            getTask().setActions(actions)
    
            then:
            getTask().getActions().size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

    // that they have access to.
    //
    // It can be optionally associated with a particular assigner, in which case it
    // contains one valid set of trust anchors for that signer. Signers may have
    // multiple associated ClusterTrustBundles; each is an independent set of trust
    // anchors for that signer. Admission control is used to enforce that only users
    // with permissions on the signer can create or modify the corresponding bundle.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r42/BuildProgressTaskActionsCrossVersionSpec.groovy

    /*
     * Copyright 2017 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: Tue Sep 26 14:49:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top