Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,143 for initid1 (0.69 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	// containers.
    	status.ContainerStatuses = []*kubecontainer.Status{
    		{
    			ID:   kubecontainer.ContainerID{ID: "initid1"},
    			Name: "init1", State: kubecontainer.ContainerStateExited,
    			Hash: kubecontainer.HashContainer(&pod.Spec.InitContainers[0]),
    		},
    		{
    			ID:   kubecontainer.ContainerID{ID: "initid2"},
    			Name: "init2", State: kubecontainer.ContainerStateExited,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. test/init1.go

    	sys1, numGC1 := memstats.Sys, memstats.NumGC
    	if sys1-sys >= N*MB || numGC1 == numGC {
    		println("allocated 1000 chunks of", MB, "and used ", sys1-sys, "memory")
    		println("numGC went", numGC, "to", numGC1)
    		panic("init1")
    	}
    }
    
    func send(c chan int) {
    	c <- 1
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/init1.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // initialization cycles
    
    package init1
    
    // issue 6683 (marked as WorkingAsIntended)
    
    type T0 struct{}
    
    func (T0) m() int { return y0 }
    
    var x0 = T0{}
    
    var y0 /* ERROR "initialization cycle" */ = x0.m()
    
    type T1 struct{}
    
    func (T1) m() int { return y1 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/os/executable_path.go

    		exePath = Args[0]
    	} else {
    		for i := 1; i < len(Args[0]); i++ {
    			if IsPathSeparator(Args[0][i]) {
    				// Args[0] is a relative path: prepend the
    				// initial working directory.
    				if errWd != nil {
    					return "", errWd
    				}
    				exePath = initWd + string(PathSeparator) + Args[0]
    				break
    			}
    		}
    	}
    	if exePath != "" {
    		if err := isExecutable(exePath); err != nil {
    			return "", err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  5. cmd/dynamic-timeouts_test.go

    	timeout := newDynamicTimeout(time.Minute, time.Second)
    
    	initial := timeout.Timeout()
    
    	for i := 0; i < dynamicTimeoutLogSize; i++ {
    		timeout.LogFailure()
    	}
    
    	adjusted := timeout.Timeout()
    
    	if initial >= adjusted {
    		t.Errorf("Failure to increase timeout, expected %v to be more than %v", adjusted, initial)
    	}
    }
    
    func TestDynamicTimeoutDualIncrease(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Oct 14 10:08:40 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

        }
    
        void configureGarbageCollectionHeapEventsFor(long initial, long max, long leakRate, double gcRate) {
            configureGarbageCollectionEvents("heap", initial, max, leakRate, gcRate)
        }
    
        void configureGarbageCollectionNonHeapEventsFor(long initial, long max, long leakRate, double gcRate) {
            configureGarbageCollectionEvents("nonHeap", initial, max, leakRate, gcRate)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedScalarCollectionsIntegrationTest.groovy

            }
    
            class Rules extends RuleSource {
                static final $type<String> INITIAL = ['initial']
    
                @Model
                void createContainer(Container c) {
                    c.items = INITIAL
                }
    
                @Mutate
                void addItems(Container c) {
                    assert !c.items.is(INITIAL)
                    c.items.add 'foo'
                }
    
                @Mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformStepSubject.java

    import java.io.File;
    
    /**
     * Transform subject is either an initial artifact for the transform chain or a result of a previous transform step.
     */
    public abstract class TransformStepSubject implements Describable {
    
        public static TransformStepSubject initial(ResolvableArtifact artifact) {
            return new Initial(artifact);
        }
    
        /**
         * The files which should be transformed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

            evenDeeperRepo.file('foo').text = "baz"
            evenDeeperRepo.commit('initial commit', "foo")
            deeperRepo.file('foo').text = "bar"
            deeperRepo.commit("initial commit", "foo")
            // Add submodule to repo
            deeperRepo.addSubmodule(evenDeeperRepo)
            repo.addSubmodule(deeperRepo)
            def commit = repo.commit('initial commit')
    
            settingsFile << """
                sourceControl {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/java/org/apache/maven/model/building/BuildModelSourceTransformerTest.java

                            .version("1.0-SNAPSHOT")
                            .build()))
                    .build());
            Model actual = transform(initial);
            assertTrue(equalsDeep(expected, actual));
        }
    
        @Test
        void testCiFriendlyVersion() {
            Model initial = new Model(org.apache.maven.api.model.Model.newBuilder()
                    .version("${revision}-${sha1}")
                    .build());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top