Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 70 for BAR (0.02 sec)

  1. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates_test.go

    			oldObj:       st.MakePod().Name("p1").SchedulingGates([]string{"foo", "bar"}).UID("uid1").Obj(),
    			newObj:       st.MakePod().Name("p1").SchedulingGates([]string{"foo"}).UID("uid1").Obj(),
    			expectedHint: framework.QueueSkip,
    		},
    		"skip-queue-on-gates-not-empty": {
    			pod:          st.MakePod().Name("p").SchedulingGates([]string{"foo", "bar"}).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

                    outputs.file "foo.txt"
                    doFirst {}
                }
    
                task bar {
                    inputs.files(new BuildableArtifact(files(foo)))
                    outputs.file "bar.txt"
                    doFirst {}
                }
            """
    
            when:
            run "bar"
            then:
            executed ":foo"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/9674")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/builder/testdata/append-multi-restore.golden

    * table
    -N chain
    -A chain -f foo -b bar
    -A chain -f fu -b bar
    -A chain -f foo -b baz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 91 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        // Adjust the function type to match the block args. So this e.g. transforms
        //
        // func.func @f(%x : foo) -> foo {
        //   ^main(%x : bar):
        //     yield %x : bar
        // }
        //
        // to
        //
        // func.func @f(%x : bar) -> bar {
        //   ...
        // }
        auto ret = f.getBody().front().getTerminator();
        std::vector<Type> argument_types;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/builder/testdata/append-multi.golden

    -t table -N chain
    -t table -A chain -f foo -b bar
    -t table -A chain -f fu -b bar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 112 bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/builder/testdata/append-insert-multi-restore.golden

    * table
    -N chain
    -A chain -f foo -b bar
    -I chain 2 -f foo -b bar
    -A chain -f foo -b baz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 94 bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

            """
    
            // Load the StaticData class in the different sub-sub-projects
            // for a more interesting ClassLoader hierarchy.
            for (projectDir in ['foo/foo', 'bar/bar']) {
                file("$projectDir/build.gradle") << """
                    buildscript { dependencies { classpath(files('${staticDataLib.toURI()}')) } }
    
                    task ok(type: StaticData) {
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/builder/testdata/append-insert-multi.golden

    -t table -N chain
    -t table -A chain -f foo -b bar
    -t table -I chain 2 -f foo -b bar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 115 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    func TestValidateKey(t *testing.T) {
    	validKeys := []string{
    		"/foo/bar/baz/a.b.c/",
    		"/foo",
    		"foo/bar/baz",
    		"/foo/bar..baz/",
    		"/foo/bar..",
    		"foo",
    		"foo/bar",
    		"/foo/bar/",
    	}
    	invalidKeys := []string{
    		"/foo/bar/../a.b.c/",
    		"..",
    		"/..",
    		"../",
    		"/foo/bar/..",
    		"../foo/bar",
    		"/../foo",
    		"/foo/bar/../",
    		".",
    		"/.",
    		"./",
    		"/./",
    		"/foo/.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSkipCacheIntegrationTest.groovy

            configurationCacheRun "myTask"
    
            then:
            outputContains("bar")
            outputContains("Calculating task graph as configuration cache cannot be reused due to ${commandLineArgs.first()}")
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun "myTask"
    
            then:
            outputContains("bar")
            configurationCache.assertStateLoaded()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top