Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for foo6 (0.04 sec)

  1. pkg/volume/util/atomic_writer_test.go

    					"foo": {Mode: 0644, Data: []byte("foo")},
    					"bar": {Mode: 0644, Data: []byte("bar")},
    				},
    				{
    					"foo": {Mode: 0644, Data: []byte("foo2")},
    					"bar": {Mode: 0644, Data: []byte("bar2")},
    				},
    				{
    					"foo": {Mode: 0644, Data: []byte("foo3")},
    					"bar": {Mode: 0644, Data: []byte("bar3")},
    				},
    				{
    					"foo": {Mode: 0644, Data: []byte("foo4")},
    					"bar": {Mode: 0644, Data: []byte("bar4")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

    apply plugin: "java"
    apply plugin: "idea"
    
    configurations {
      bar
      foo
      foo.extendsFrom(bar)
      baz
    }
    
    dependencies {
      bar files('bar.jar')
      foo files('foo.jar', 'foo2.jar', 'foo3.jar')
      baz files('foo3.jar')
    }
    
    idea {
        module {
            scopes.COMPILE.plus << configurations.foo
            scopes.COMPILE.minus += [configurations.bar, configurations.baz]
        }
    }
    '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r27/TestLauncherCrossVersionSpec.groovy

                launcher.withJvmTestMethods("example.MyTest", "foo", "foo2")
                launcher.withJvmTestMethods("example2.MyOtherTest", "bar")
            }
            then:
    
            assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":test")
            assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":secondTest")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. tensorflow/c/ops_test.cc

    }
    
    TEST(OpsTest, AttributeAccessors) {
      TF_OpDefinitionBuilder* builder =
          TF_NewOpDefinitionBuilder("AttributeAccessorsOp");
      TF_OpDefinitionBuilderAddAttr(builder, "foo1: int >= 2");
      TF_OpDefinitionBuilderAddAttr(builder, "foo2: string=\"my string\"");
      TF_OpDefinitionBuilderSetIsCommutative(builder, true);
      TF_OpDefinitionBuilderSetIsAggregate(builder, true);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  5. pkg/controller/daemon/update_test.go

    	ds := newDaemonSet("foo")
    	manager, podControl, _, err := newTestController(ctx, ds)
    	if err != nil {
    		t.Fatalf("error creating DaemonSets controller: %v", err)
    	}
    	addNodes(manager.nodeStore, 0, 5, nil)
    	manager.dsStore.Add(ds)
    	expectSyncDaemonSets(t, manager, ds, podControl, 5, 0, 0)
    
    	maxSurge := 3
    	ds.Spec.Template.Spec.Containers[0].Image = "foo2/bar2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  6. src/net/http/cookiejar/jar.go

    //   - the public suffix of "foo1.foo2.foo3.co.uk" is "co.uk", and
    //   - the public suffix of "bar.pvt.k12.ma.us" is "pvt.k12.ma.us".
    //
    // Implementations of PublicSuffixList must be safe for concurrent use by
    // multiple goroutines.
    //
    // An implementation that always returns "" is valid and may be useful for
    // testing but it is not secure: it means that the HTTP server for foo.com can
    // set a cookie for bar.com.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. pkg/kube/krt/collection_test.go

    	cc.Create(&corev1.ConfigMap{ObjectMeta: metav1.ObjectMeta{Name: "foo1", Labels: lblFoo}})
    	assert.EventuallyEqual(t, fetcherSorted(Results), []Result{{NewNamed(pod), []string{"foo1"}}})
    
    	cc.Create(&corev1.ConfigMap{ObjectMeta: metav1.ObjectMeta{Name: "switch", Labels: lblFoo}})
    	assert.EventuallyEqual(t, fetcherSorted(Results), []Result{{NewNamed(pod), []string{"foo1", "switch"}}})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTestSpecCrossVersionSpec.groovy

            assertTestExecuted(className: 'example.MyTest', methodName: 'foo', task: ':secondTest')
    
        }
    
        def "can select test methods from test task with filters"() {
            setup:
            buildFile << '''
                secondTest {
                    filter {
                        includeTest "example.MyTest", "foo"
                        includeTest "example.MyTest", "foo2"
                    }
                }
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/plugin_test.go

    				Obj(),
    			oldPod:       st.MakePod().Node("fake-node").Label("foo", "foo1").Obj(),
    			newPod:       st.MakePod().Node("fake-node").Label("foo", "foo2").Obj(),
    			expectedHint: framework.QueueSkip,
    		},
    		{
    			name: "change pod's label that doesn't match topologySpreadConstraints selector",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 06:30:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorServicesIntegrationTest.groovy

                    isolationMode = $isolationMode
                }
            """
            file("foo").text = "foo"
    
            expect:
            succeeds("runInWorker")
    
            and:
            assertWorkerExecuted("runInWorker")
    
            and:
            file("bar/foo").text == "foo"
            file("baz/foo").text == "foo"
            file("foo").assertDoesNotExist()
    
            where:
            isolationMode << ISOLATION_MODES
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top