Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for Initial (0.18 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    params = parameters
                    parameters.initial = 10
                }
    
                assert params.initial.get() == 10
                params.initial = 12
    
                task first {
                    doFirst {
                        params.initial = 15 // should have an effect
                        provider.get().reset()
                        params.initial = 1234 // should be ignored. Ideally should fail too
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    			verflag.PrintAndExitIfRequested()
    
    			// set feature gates from initial flags-based config
    			if err := utilfeature.DefaultMutableFeatureGate.SetFromMap(kubeletConfig.FeatureGates); err != nil {
    				return fmt.Errorf("failed to set feature gates from initial flags-based config: %w", err)
    			}
    
    			// validate the initial KubeletFlags
    			if err := options.ValidateKubeletFlags(kubeletFlags); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                        implementation project(":producer")
                    }
                }
            """
    
            when:
            withBuildCache().run ":consumer:resolve", "-DproducerContent=initial"
            then:
            executedAndNotSkipped(":consumer:resolve")
    
            result.groupedOutput.transform("MakeGreen")
                .assertOutputContains("processing [producer.jar]")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    	for i := 0; i < 500; i++ {
    		var initial, final Quantity
    		fuzzer.Fuzz(&initial)
    		b, err := cbor.Marshal(initial)
    		if err != nil {
    			t.Errorf("error encoding %v: %v", initial, err)
    			continue
    		}
    		err = cbor.Unmarshal(b, &final)
    		if err != nil {
    			t.Errorf("%v: error decoding %v: %v", initial, string(b), err)
    		}
    		if final.Cmp(initial) != 0 {
    			diag, err := cbor.Diagnose(b)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. pkg/kubelet/status/status_manager_test.go

    	verifyUpdates(t, m, 0)
    	if status, ok := m.GetPodStatus(pod.UID); ok {
    		t.Errorf("Unexpected PodStatus: %+v", status)
    	}
    
    	t.Log("Setting initial status.")
    	m.SetPodStatus(pod, status)
    	verifyUpdates(t, m, 1)
    	status = expectPodStatus(t, m, pod)
    	verifyReadiness("initial", &status, false, false, false)
    
    	t.Log("Setting unchanged readiness should do nothing.")
    	m.SetContainerReadiness(pod.UID, cID1, false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    func countingPromiseFactoryFactory(activeCounter counter.GoRoutineCounter) promiseFactoryFactory {
    	return func(qs *queueSet) promiseFactory {
    		return func(initial interface{}, doneCtx context.Context, doneVal interface{}) promise.WriteOnce {
    			return testpromise.NewCountingWriteOnce(activeCounter, &qs.lock, initial, doneCtx.Done(), doneVal)
    		}
    	}
    }
    
    func TestTotalRequestsExecutingWithPanic(t *testing.T) {
    	metrics.Register()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    func RunTestWatchError(ctx context.Context, t *testing.T, store InterfaceWithPrefixTransformer) {
    	obj := &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "test-ns"}}
    	key := computePodKey(obj)
    
    	// Compute the initial resource version from which we can start watching later.
    	list := &example.PodList{}
    	storageOpts := storage.ListOptions{
    		ResourceVersion: "0",
    		Predicate:       storage.Everything,
    		Recursive:       true,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier.go

    // Because of the iptables logic, it is assumed that there is only a single Proxier active on a machine.
    // An error will be returned if iptables fails to update or acquire the initial lock.
    // Once a proxier is created, it will keep iptables up to date in the background and
    // will not terminate if a particular iptables call fails.
    func NewProxier(ctx context.Context,
    	ipFamily v1.IPFamily,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

      Set_CurrentShellEnvironmentVar "POD_CIDR" ${pod_cidr}
    }
    
    # Adds an initial HNS network on the Windows node which forces the creation of
    # a virtual switch and the "management" interface that will be used to
    # communicate with the rest of the Kubernetes cluster without NAT.
    #
    # Note that adding the initial HNS network may cause connectivity to the GCE
    # metadata server to be lost due to a Windows bug.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			transformer.prefix = []byte(string(transformer.prefix) + " ")
    			return transformer
    		})
    	_, initial := testPropagateStore(ctx, t, store, input)
    	revertTransformer()
    
    	// this update should write the canonical value to etcd because the new serialization differs
    	// from the stored serialization
    	input.ResourceVersion = initial.ResourceVersion
    	out := &example.Pod{}
    	err := store.GuaranteedUpdate(ctx, key, out, true, nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top