Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 435 for toolbar (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/feature.go

    		EnablePriorityAndFairness: true,
    	}
    }
    
    func (o *FeatureOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.BoolVar(&o.EnableProfiling, "profiling", o.EnableProfiling,
    		"Enable profiling via web interface host:port/debug/pprof/")
    	fs.BoolVar(&o.EnableContentionProfiling, "contention-profiling", o.EnableContentionProfiling,
    		"Enable block profiling, if profiling is enabled")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. test/fixedbugs/issue8836.go

    // license that can be found in the LICENSE file.
    
    // Checking that line number is correct in error message.
    
    package main
    
    type Cint int
    
    func foobar(*Cint, Cint, Cint, *Cint)
    
    func main() {
    	a := Cint(1)
    
    	foobar(
    		&a,
    		0,
    		0,
    		42, // ERROR ".*"
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 381 bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml

      gatewayClassName: istio
      listeners:
      - name: default
        hostname: "*.domain.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
      - name: foobar
        hostname: "*.foobar.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
          kinds:
          - kind: HTTPRoute
      - name: same-namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/workcmd/vendor.go

    	Run: runVendor,
    }
    
    var vendorE bool   // if true, report errors but proceed anyway
    var vendorO string // if set, overrides the default output directory
    
    func init() {
    	cmdVendor.Flag.BoolVar(&cfg.BuildV, "v", false, "")
    	cmdVendor.Flag.BoolVar(&vendorE, "e", false, "")
    	cmdVendor.Flag.StringVar(&vendorO, "o", "", "")
    	base.AddChdirFlag(&cmdVendor.Flag)
    	base.AddModCommonFlags(&cmdVendor.Flag)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/object_graph_traversal_test.cc

      absl::optional<int> foo = internal::FindNodeAtPath("foo", object_graph);
      ASSERT_TRUE(foo.has_value());
      EXPECT_EQ(*foo, 1);
    
      absl::optional<int> foo_bar =
          internal::FindNodeAtPath("foo.bar", object_graph);
      ASSERT_TRUE(foo_bar.has_value());
      EXPECT_EQ(*foo_bar, 3);
    
      absl::optional<int> foo_bar_parent =
          internal::FindNodeAtPath("foo.bar.parent", object_graph);
      ASSERT_TRUE(foo_bar_parent.has_value());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 22 20:15:34 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  6. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeBuilderTest.java

            String doc = "<?xml version='1.0'?><doc xmlns='foo:bar'/>";
            StringReader r = new StringReader(doc);
            XMLStreamReader xsr = WstxInputFactory.newFactory().createXMLStreamReader(r);
            XmlNode node = XmlNodeStaxBuilder.build(xsr);
            assertEquals("doc", node.getName());
            assertEquals(1, node.getAttributes().size());
            assertEquals("foo:bar", node.getAttribute("xmlns"));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/NamedDomainObjectContainerIntegrationTest.groovy

                    assert element.name in ['foo', 'barfoo']
                }
    
                testContainer.register("foo")
                testContainer.register("bar")
                testContainer.register("foobar")
                testContainer.register("barfoo")
            """
            expect:
            succeeds "help"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/9446")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. cmd/kubelet/app/options/options.go

    			if notDeprecated[f.Name] {
    				return
    			}
    			f.Deprecated = deprecated
    		})
    		mainfs.AddFlagSet(fs)
    	}()
    
    	fs.BoolVar(&c.EnableServer, "enable-server", c.EnableServer, "Enable the Kubelet's server")
    
    	fs.BoolVar(&c.FailSwapOn, "fail-swap-on", c.FailSwapOn, "Makes the Kubelet fail to start if swap is enabled on the node. ")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  9. tests/test_path.py

    
    def test_path_foobar():
        response = client.get("/path/foobar")
        assert response.status_code == 200
        assert response.json() == "foobar"
    
    
    def test_path_str_foobar():
        response = client.get("/path/str/foobar")
        assert response.status_code == 200
        assert response.json() == "foobar"
    
    
    def test_path_str_42():
        response = client.get("/path/str/42")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  10. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/invalid5.toml

    [libraries]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 32 bytes
    - Viewed (0)
Back to top