Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Qux (0.03 sec)

  1. cmd/kubeadm/app/cmd/phases/workflow/runner_test.go

    			options:  RunnerOptions{},
    			expected: map[string]bool{"foo": true, "foo/bar": true, "foo/baz": true, "qux": true},
    		},
    		{
    			name:     "options can filter phases",
    			options:  RunnerOptions{FilterPhases: []string{"foo/baz", "qux"}},
    			expected: map[string]bool{"foo": false, "foo/bar": false, "foo/baz": true, "qux": true},
    		},
    		{
    			name:     "options can filter phases - hierarchy is considered",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 20:03:45 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationKotlinDslIntegTest.groovy

                                    developer {
                                        id.set("baz")
                                        name.set("Baz Qux")
                                        email.set("baz.qux@example.org")
                                        url.set("http://example.org/users/baz.qux")
                                        organization.set("Example Organization")
                                        organizationUrl.set("https://example.org")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

                                    developer {
                                        id = "baz"
                                        name = "Baz Qux"
                                        email = "baz.qux@example.org"
                                        url = "http://example.org/users/baz.qux"
                                        organization = "Example Organization"
                                        organizationUrl = "https://example.org"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilderTest.groovy

            builder.bundle("my", ["foo-bar", "foo_baz", "foo.qux"])
            builder.bundle("a.b", ["foo.bar"])
            builder.bundle("a_c", ["foo.bar"])
            builder.bundle("a-d", ["foo.bar"])
    
            when:
            def model = builder.build()
    
            then:
            model.libraryAliases == ["foo.bar", "foo.baz", "foo.qux"]
            model.bundleAliases == ["a.b", "a.c", "a.d", "my"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. pkg/util/taints/taints_test.go

    				},
    				{
    					Key:    "qux",
    					Value:  "",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    				{
    					Key:    "foobar",
    					Value:  "",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    			},
    			expectedErr: false,
    		},
    		{
    			name: "delete taints with no special chars",
    			spec: []string{"foo:NoSchedule-", "bar:NoSchedule-", "qux=:NoSchedule-", "dedicated-"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/cache/snapshot_test.go

    	podsWithAffitiny := []*v1.Pod{
    		st.MakePod().Name("bar").Namespace("ns").PodAffinity("baz", &metav1.LabelSelector{MatchLabels: map[string]string{"baz": "qux"}}, st.PodAffinityWithRequiredReq).Node("node-2").Obj(),
    		st.MakePod().Name("bar").Namespace("ns").PodAffinity("key", &metav1.LabelSelector{MatchLabels: map[string]string{"key": "value"}}, st.PodAffinityWithRequiredReq).Node("node-0").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/controlplane/volumes_test.go

    			Name:      "foo-0",
    			HostPath:  "/tmp/qux-0",
    			MountPath: "/tmp/qux-0",
    			ReadOnly:  true,
    			PathType:  v1.HostPathFile,
    		},
    		{
    			Name:      "bar-0",
    			HostPath:  "/tmp/asd-0",
    			MountPath: "/tmp/asd-0",
    			ReadOnly:  false,
    			PathType:  v1.HostPathDirectory,
    		},
    		{
    			Name:      "foo-1",
    			HostPath:  "/tmp/qux-1",
    			MountPath: "/tmp/qux-1",
    			ReadOnly:  true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. pkg/log/scope.go

    //
    // Scope supports structured logging using WithLabels:
    //
    //	s := RegisterScope("MyScope", "Description", 0)
    //	s = s.WithLabels("foo", "bar", "baz", 123, "qux", 0.123)
    //	s.Info("Hello")                      // <time>   info   MyScope   Hello  foo=bar baz=123 qux=0.123
    //
    // The output format can be globally configured to be JSON instead, using Options in this package.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

      @Test fun readPaddedHeadersFrame() {
        val paddingLength = 254
        val padding = ByteArray(paddingLength)
        Arrays.fill(padding, 0.toByte())
        val headerBlock = literalHeaders(headerEntries("foo", "barrr", "baz", "qux"))
        writeMedium(frame, headerBlock.size.toInt() + paddingLength + 1)
        frame.writeByte(Http2.TYPE_HEADERS)
        frame.writeByte(FLAG_END_HEADERS or FLAG_PADDED)
        frame.writeInt(expectedStreamId and 0x7fffffff)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. pkg/log/scope_test.go

    		s2 := s.WithLabels("foo", "bar").WithLabels("baz", 123, "qux", 0.123).WithLabels("foo", "override")
    		s2.Debug("Hello")
    		// s should be unmodified.
    		s.Debug("Hello")
    
    		_ = Sync()
    	})
    	if err != nil {
    		t.Errorf("Got error '%v', expected success", err)
    	}
    
    	mustRegexMatchString(t, lines[0], `Hello	foo=override baz=123 qux=0.123`)
    	mustRegexMatchString(t, lines[1], "Hello$")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 17:36:09 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top