Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 149 for notbar (0.19 sec)

  1. src/mime/mediatype_test.go

    		// #attmdate
    		{`attachment; modification-date="Wed, 12 Feb 1997 16:29:51 -0500"`,
    			"attachment",
    			m("modification-date", "Wed, 12 Feb 1997 16:29:51 -0500")},
    		// #dispext
    		{`foobar`, "foobar", m()},
    		// #dispextbadfn
    		{`attachment; example="filename=example.txt"`,
    			"attachment",
    			m("example", "filename=example.txt")},
    		// #attwithfn2231utf8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

        server: https://authz.example.com
      name: foobar
    users:
    - name: a cluster
      user:
        client-certificate: {{ .Cert }}
        client-key: {{ .Key }}
    `,
    			wantErr: true,
    		},
    		{
    			msg: "multiple clusters with no context",
    			configTmpl: `
    clusters:
    - cluster:
        certificate-authority: {{ .CA }}
        server: https://authz.example.com
      name: foobar
    - cluster:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisTest.groovy

                    "Bar" : dependentClasses([] as Set, ["FooBar"] as Set),
                    "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)
  4. cmd/kubeadm/app/util/marshal_test.go

    		{
    			name:         "FooOnly",
    			fileContents: files["foo"],
    			gvkmap: kubeadmapi.DocumentMap{
    				{Group: "foo.k8s.io", Version: "v1", Kind: "Foo"}: files["foo"],
    			},
    		},
    		{
    			name:         "FooBar",
    			fileContents: bytes.Join([][]byte{files["foo"], files["bar"]}, []byte(constants.YAMLDocumentSeparator)),
    			gvkmap: kubeadmapi.DocumentMap{
    				{Group: "foo.k8s.io", Version: "v1", Kind: "Foo"}: files["foo"],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

                """,
                multifileAnnotations
            )
            withUniqueScript("println($packageName.foo() + $packageName.bar())")
            configureProject().assertBuildScriptCompiled().assertOutputContains("foobar")
    
            givenKotlinScriptInBuildSrcContains(
                "foo",
                """
                fun foo() = "bar"
                """,
                multifileAnnotations
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  6. pkg/log/options_test.go

    		}},
    
    		{"--log_rotate foobar", Options{
    			OutputPaths:         []string{defaultOutputPath},
    			ErrorOutputPaths:    []string{defaultErrorOutputPath},
    			defaultOutputLevels: "default:info,grpc:none",
    			stackTraceLevels:    DefaultScopeName + ":" + levelToString[defaultStackTraceLevel],
    			RotateOutputPath:    "foobar",
    			RotationMaxAge:      defaultRotationMaxAge,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. pkg/util/taints/taints_test.go

    			expectedErr: true,
    		},
    		{
    			name: "add new taints with no special chars",
    			spec: []string{"foo=abc:NoSchedule", "bar=abc:NoSchedule", "baz:NoSchedule", "qux:NoSchedule", "foobar=:NoSchedule"},
    			expectedTaints: []v1.Taint{
    				{
    					Key:    "foo",
    					Value:  "abc",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    				{
    					Key:    "bar",
    					Value:  "abc",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    				&defaultAttributes{"admin", "", "watch", "Pods", "", "ns1", ""},
    				&defaultAttributes{"admin", "group1", "watch", "Foobar", "", "ns1", ""},
    				&defaultAttributes{"joe", "admins", "watch", "Foobar", "", "ns1", ""},
    				&defaultAttributes{"joe", "group1,admins", "watch", "Foobar", "", "ns1", ""},
    			},
    			shouldFail: []authorizer.Attributes{
    				&defaultAttributes{"admin", "", "GET", "Pods", "", "ns2", ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleBindingFailureIntegrationTest.groovy

                class MyPlugin {
                    static class Rules extends RuleSource {
                        @Mutate
                        void addTasks(ModelMap<Task> tasks) {
                            tasks.create("foobar")
                            tasks.create("raboof")
                        }
                    }
                }
    
                apply type: MyPlugin
    
                model {
                    tasks.foonar {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/initialization/loadercache/ClassLoadersCachingIntegrationTest.groovy

            when:
            buildFile << "apply from: 'plugin.gradle'"
            file("plugin.gradle") << "task foo"
            run("foo")
            file("plugin.gradle").text = "task foobar"
    
            then:
            run("foobar") //new task is detected
            isCached()
        }
    
        @ToBeFixedForConfigurationCache(because = "test relies on static state")
        def "caches subproject classloader"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 20:09:56 UTC 2022
    - 10.6K bytes
    - Viewed (0)
Back to top