Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 82 for barmod (0.42 sec)

  1. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

                "bar",
                """
                fun bar() = "foo"
                """,
                multifileAnnotations
            )
            configureProject().assertBuildScriptCompilationAvoided().assertOutputContains("barfoo")
        }
    
        @Test
        fun `recompiles buildscript when inline function changes in multifile class in buildSrc`() {
            val multifileAnnotations = """
                @file:JvmName("Utils")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. build/tools.go

    	_ "k8s.io/code-generator/cmd/go-to-protobuf"
    	_ "k8s.io/code-generator/cmd/go-to-protobuf/protoc-gen-gogo"
    	_ "k8s.io/kube-openapi/cmd/openapi-gen"
    
    	// submodule test dependencies
    	_ "github.com/armon/go-socks5" // for staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper_test.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. test/fixedbugs/issue8183.go

    // license that can be found in the LICENSE file.
    
    // Tests correct reporting of line numbers for errors involving iota,
    // Issue #8183.
    package foo
    
    const (
    	ok = byte(iota + 253)
    	bad
    	barn
    	bard // ERROR "constant 256 overflows byte|integer constant overflow|cannot convert"
    )
    
    const (
    	c = len([1 - iota]int{})
    	d
    	e // ERROR "array bound must be non-negative|negative array bound|invalid array length"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 622 bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/helpers_test.go

    type foo struct {
    	foo int
    }
    type bar struct {
    	str    string
    	strptr *string
    
    	ints      []int
    	stringMap map[string]string
    
    	foo    foo
    	fooptr *foo
    
    	bars   []foo
    	barMap map[string]foo
    
    	skipRecurseStruct  foo
    	skipRecursePointer *foo
    	skipRecurseList1   []foo
    	skipRecurseList2   []foo
    	skipRecurseMap1    map[string]foo
    	skipRecurseMap2    map[string]foo
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/debug/buildinfo/buildinfo_test.go

    	}
    
    	buildModes := []string{"pie", "exe"}
    	if testenv.HasCGO() {
    		buildModes = append(buildModes, "c-shared")
    	}
    
    	// Keep in sync with src/cmd/go/internal/work/init.go:buildModeInit.
    	badmode := func(goos, goarch, buildmode string) string {
    		return fmt.Sprintf("-buildmode=%s not supported on %s/%s", buildmode, goos, goarch)
    	}
    
    	buildWithModules := func(t *testing.T, goos, goarch, buildmode string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisTest.groovy

                    "FooBar" : dependentClasses([] as Set, ["BarFoo"] as Set),
                    "X" : dependentClasses([] as Set, ["Y"] as Set),
                ]))
            )
    
            when:
            def deps = a.findTransitiveDependents(["Foo"], [:])
    
            then:
            deps.getAccessibleDependentClasses() == ["Bar", "FooBar", "BarFoo"] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. plugin/pkg/admission/imagepolicy/admission_test.go

      name: foobar
    - cluster:
        certificate-authority: {{ .CA }}
        server: https://admission.example.com
      name: barfoo
    users:
    - name: a name
      user:
        client-certificate: {{ .Cert }}
        client-key: {{ .Key }}
    contexts:
    - name: default
      context:
        cluster: barfoo
        user: a name
    current-context: default
    `,
    			wantErr: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 32.9K bytes
    - Viewed (0)
  8. pkg/kubelet/pod/mirror_client_test.go

    		"bar_foo":         {Name: "bar", Namespace: "foo"},
    		"bar.org_foo.com": {Name: "bar.org", Namespace: "foo.com"},
    		"bar-bar_foo":     {Name: "bar-bar", Namespace: "foo"},
    	}
    	failedCases := []string{"barfoo", "bar_foo_foo", "", "bar_", "_foo"}
    
    	for podFullName, expected := range successfulCases {
    		name, namespace, err := kubecontainer.ParsePodFullName(podFullName)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:44:09 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		},
    		{
    			name:   "test List with filter returning only one item, ensure only a single page returned",
    			prefix: "/pods",
    			pred: storage.SelectionPredicate{
    				Field: fields.OneTermEqualSelector("metadata.name", "barfoo"),
    				Label: labels.Everything(),
    				Limit: 1,
    			},
    			expectedOut:    []example.Pod{*preset[3]},
    			expectContinue: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  10. docs/contribute/code_of_conduct.md

    may not be able to satisfy everyone, we all agree that everyone is equal.
    
    Whenever a participant has made a mistake, we expect them to take responsibility for it. If someone
    has been harmed or offended, it is our responsibility to listen carefully and respectfully, and do
    our best to right the wrong.
    
    Although this list cannot be exhaustive, we explicitly honor diversity in age, culture, ethnicity,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
Back to top