Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for Foo (0.02 sec)

  1. tools/istio-iptables/pkg/builder/iptables_builder_test.go

    				builder.AppendRuleV6(iptableslog.UndefinedCommand, "chain", "table", "-f", "foo", "-b", "bar")
    				builder.InsertRuleV6(iptableslog.UndefinedCommand, "chain", "table", 2, "-f", "foo", "-b", "bar")
    				builder.InsertRuleV6(iptableslog.UndefinedCommand, "chain", "table", 1, "-f", "foo", "-b", "bar")
    				builder.AppendRuleV4(iptableslog.UndefinedCommand, constants.PREROUTING, constants.NAT, "-f", "foo", "-b", "bar")
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    				},
    			},
    			port:      servicePort[0],
    			proxyView: model.ProxyViewAll,
    			destRule: &networking.DestinationRule{
    				Host: "foo.example.com",
    				Subsets: []*networking.Subset{{
    					Name:   "v1",
    					Labels: map[string]string{"foo": "bar"},
    				}},
    			},
    			expectedSubsetClusters: []*cluster.Cluster{{
    				Name:                 "outbound|8080|v1|foo.example.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCircularReferenceIntegrationTest.groovy

                        println('circular in indirect => ' + (circular in indirect))
                        println('Circular(foo, bar) in direct => ' + (new Circular('foo', 'bar') in direct))
                        println('Circular(foo, bar) in indirect => ' + (new Circular('foo', 'bar') in indirect))
                        println('circular === direct.first() => ' + (circular === direct.first()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. 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)
  5. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v4-restore.golden

    * nat
    -A PREROUTING -f foo -b bar
    COMMIT
    * 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
    - 135 bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v4.golden

    -t table -N chain
    -t table -A chain -f foo -b bar
    -t table -I chain 2 -f foo -b bar
    -t table -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
    - 150 bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

                    public Foo getFoo() {
                        return foo;
                    }
    
                    @Configuring
                    public void foo(Action<? super Foo> action) {
                        action.execute(foo);
                    }
    
                    public abstract static class Foo {
                        public Foo() {
                            this.getBar().convention("nothing");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    							TargetPort:  8080,
    						}},
    					},
    					LabelSelector: model.NewSelector(map[string]string{"app": "foo"}),
    				},
    			},
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{},
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    					Labels: map[string]string{
    						"app": "foo",
    					},
    				},
    				Spec: v1.PodSpec{},
    				Status: v1.PodStatus{
    					Phase:      v1.PodRunning,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskRealizationBuildOperationIntegrationTest.groovy

            buildFile << """
                tasks.register("foo")
            """
    
            when:
            configurationCacheRun(":foo")
            then:
            def realizeOps = buildOperations.all(RealizeTaskBuildOperationType)
            realizeOps.size() == 2
            realizeOps*.details.each {
                assert it.taskPath == ":foo"
            }
            realizeOps.first().details.eager == false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v6-restore.golden

    * table
    -N chain
    -A chain -f foo -b bar
    -I chain 2 -f foo -b bar
    -I chain 1 -f foo -b bar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 96 bytes
    - Viewed (0)
Back to top