Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 82 for foo31 (0.07 sec)

  1. pkg/cache/cache_test.go

    		go func() {
    			for j := 0; j < each; j++ {
    				c.Set("foo1", "bar")
    				c.Set("foo2", "bar")
    				c.Set("foo3", "bar")
    				c.Set("foo4", "bar")
    				c.Set("foo5", "bar")
    				c.Set("foo6", "bar")
    				c.Set("foo7", "bar")
    			}
    			wg.Done()
    		}()
    	}
    	wg.Wait()
    }
    
    func benchmarkCacheGetSetConcurrent(c Cache, b *testing.B) {
    	c.Set("foo1", "bar")
    	c.Set("foo2", "bar")
    	c.Set("foo3", "bar")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:49 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    				makeGCContainer("foo", "bar", 0, 0, runtimeapi.ContainerState_CONTAINER_EXITED),
    				makeGCContainer("foo1", "baz", 2, 2, runtimeapi.ContainerState_CONTAINER_EXITED),
    				makeGCContainer("foo1", "baz", 1, 1, runtimeapi.ContainerState_CONTAINER_EXITED),
    				makeGCContainer("foo1", "baz", 0, 0, runtimeapi.ContainerState_CONTAINER_EXITED),
    				makeGCContainer("foo2", "bar", 2, 2, runtimeapi.ContainerState_CONTAINER_EXITED),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    		// Empty NodeID
    		ObjectMeta: metav1.ObjectMeta{Name: "foo13"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         driverName,
    				NodeID:       "",
    				TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    			}},
    		},
    	}, {
    		// Volume limits with negative number
    		ObjectMeta: metav1.ObjectMeta{Name: "foo11"},
    		Spec: storage.CSINodeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. pkg/util/taints/taints_test.go

    			taintToFind:    &v1.Taint{Key: "foo_1", Value: "bar_1", Effect: v1.TaintEffectNoExecute},
    			expectedResult: true,
    		},
    		{
    			name:           "different key",
    			taintToFind:    &v1.Taint{Key: "no_such_key", Value: "bar_1", Effect: v1.TaintEffectNoExecute},
    			expectedResult: false,
    		},
    		{
    			name:           "different effect",
    			taintToFind:    &v1.Taint{Key: "foo_1", Value: "bar_1", Effect: v1.TaintEffectNoSchedule},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  5. pkg/kubelet/util/sliceutils/sliceutils_test.go

    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    func buildPodsByCreationTime() PodsByCreationTime {
    	return []*v1.Pod{
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "foo1",
    				Namespace: v1.NamespaceDefault,
    				CreationTimestamp: metav1.Time{
    					Time: time.Now(),
    				},
    			},
    		},
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "foo2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

            given:
            def foo11 = mavenRepo.module("org", "foo", '1.0').artifact(classifier: 'shaded').publish()
            mavenRepo.module("org", "foo", '1.1').artifact(classifier: 'shaded').publish()
            mavenRepo.module("org", "bar", '1.0').dependsOn(classifier: 'shaded', foo11).publish()
            writeSpec {
                rootProject {
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

                }
                configurations {
                    conf
                }
            """
            def foo11 = mavenRepo.module("org", "foo", '1.0').publish()
            mavenRepo.module("org", "foo", '1.1').publish()
            mavenRepo.module("org", "bar", '1.0').dependsOn(foo11).publish()
        }
    
        void "force resolution strategy is applied to dependency constraints"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

                        assert artifacts.collect { it.file.name } == ['bar-1.jar', 'foo-2.jar']
    
                    }
                }
            """
    
            foo1.rootMetaData.allowGetOrHead()
            foo1.allowAll()
            foo2.allowAll()
            foo3.allowAll()
            bar1.allowAll()
    
            expect:
            //TODO: fix dependency resolution results usage in this test and remove this flag
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateCBaseNamesTestApp.groovy

                #include "foo.h"
                int main () {
                   foo1();
                   foo2();
                   return 0;
                }
            """),
    
            sourceFile("c/foo1", "foo.c", """
                #include <stdio.h>
                #include "foo.h"
    
                void foo1() {
                    printf("foo1");
                }
            """),
    
            sourceFile("c/foo2", "foo.c", """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/runtime/testdata/testprogcgo/cgo.go

    // Copyright 2015 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.
    
    package main
    
    /*
    void foo1(void) {}
    void foo2(void* p) {}
    */
    import "C"
    import (
    	"fmt"
    	"os"
    	"runtime"
    	"strconv"
    	"time"
    	"unsafe"
    )
    
    func init() {
    	register("CgoSignalDeadlock", CgoSignalDeadlock)
    	register("CgoTraceback", CgoTraceback)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 13:20:27 UTC 2017
    - 1.8K bytes
    - Viewed (0)
Back to top