Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for foo114 (0.17 sec)

  1. pilot/pkg/model/gateway_test.go

    	"testing"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // nolint lll
    func TestMergeGateways(t *testing.T) {
    	gwHTTPFoo := makeConfig("foo1", "not-default", "foo.bar.com", "name1", "http", 7, "ingressgateway", "", networking.ServerTLSSettings_SIMPLE)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateWindowsResourcesBaseNamesTestApp.groovy

        return std::string(wide.begin(), wide.end());
    }
    
    void hello() {
        std::string foo1 = LoadStringFromResource(IDS_FOO1);
        std::string foo2 = LoadStringFromResource(IDS_FOO2);
        std::cout << foo1;
        std::cout << foo2;
    }
    """),
            sourceFile("rc/dir1", "resources.rc", """
    #include "hello.h"
    
    STRINGTABLE
    {
        IDS_FOO1, "foo1"
    }
    """),
            sourceFile("rc/dir2", "resources.rc", """
    #include "hello.h"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributeSelectionSchemaTest.groovy

        }
    
        def "prefers extra attributes from the selection schema"() {
            def foo1 = Attribute.of("foo", String)
            def foo2 = Attribute.of("foo", String)
            def attr3 = Attribute.of("baz", String)
    
            given:
    
            ImmutableAttributes[] candidates = [candidate(ImmutableMap.of(attr3, "v2", foo1, "v2"))]
            AttributeContainer requested = attribute(attr3, "v3")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 20:17:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. 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)
  5. src/internal/types/testdata/fixedbugs/issue47747.go

    	Foo(Barer[t])
    }
    type Barer[t any] interface {
    	Bar(t)
    }
    
    // For now, a lone type parameter is not permitted as RHS in a type declaration (issue #45639).
    // type Foo1[t any] t
    // type Bar[t any] t
    // 
    // func (l Foo1[t]) Foo(v Barer[t]) { v.Bar(t(l)) }
    // func (b *Bar[t]) Bar(l t)        { *b = Bar[t](l) }
    // 
    // func _[t any](f Fooer1[t]) t {
    // 	var b Bar[t]
    // 	f.Foo(&b)
    // 	return t(b)
    // }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-gradient-def.pbtxt

      }
    }
    library {
      function {
        signature {
          name: "foo"
          input_arg {
            name: "foo"
            type: DT_FLOAT
          }
          output_arg {
            name: "foo1"
            type: DT_FLOAT
          }
        }
        node_def {
          name: "Exp"
          op: "Exp"
          input: "foo"
          attr {
            key: "T"
            value {
              type: DT_FLOAT
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/switch_test.go

    func benchmarkSwitchString(b *testing.B, predictable bool) {
    	a := []string{
    		"foo",
    		"foo1",
    		"foo22",
    		"foo333",
    		"foo4444",
    		"foo55555",
    		"foo666666",
    		"foo7777777",
    	}
    	n := 0
    	rng := newRNG()
    	for i := 0; i < b.N; i++ {
    		rng = rng.next(predictable)
    		switch a[rng.value()&7] {
    		case "foo":
    			n += 1
    		case "foo1":
    			n += 2
    		case "foo22":
    			n += 3
    		case "foo333":
    			n += 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. pilot/pkg/model/envoyfilter_test.go

    						},
    					},
    				},
    			},
    			"1.19",
    			map[string]bool{
    				"1.19":         true,
    				"1.19.0":       true,
    				"1.19-dev.foo": true,
    				"1.5":          false,
    				"11.19":        false,
    				"foo1.19":      false,
    			},
    		},
    		{
    			"version prefix mismatch",
    			&networking.EnvoyFilter{
    				ConfigPatches: []*networking.EnvoyFilter_EnvoyConfigObjectPatch{
    					{
    						Patch: &networking.EnvoyFilter_Patch{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 04:20:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateAssemblerBaseNamesTestApp.groovy

                int main () {
                    printf("foo%dfoo%d", sum1(1, 0), sum2(1, 1));
                    fflush(stdout);
                    return 0;
                }
    
                """),
                sourceFile("asm", "foo1/sum.s", getAsmSource("sum1")),
                sourceFile("asm", "foo2/sum.s", getAsmSource("sum2"))
            ]
        }
    
        @Override
        List<SourceFile> getHeaderFiles() {
            []
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/doc/dirs.go

    var modFlagRegexp = regexp.MustCompile(`-mod[ =](\w+)`)
    
    // vendorEnabled indicates if vendoring is enabled.
    // Inspired by setDefaultBuildMod in modload/init.go
    func vendorEnabled() (*moduleJSON, bool, error) {
    	mainMod, go114, err := getMainModuleAnd114()
    	if err != nil {
    		return nil, false, err
    	}
    
    	stdout, _ := exec.Command(goCmd(), "env", "GOFLAGS").Output()
    	goflags := string(bytes.TrimSpace(stdout))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 9K bytes
    - Viewed (0)
Back to top