Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 207 for Example (0.81 sec)

  1. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

              },
              "group": {
                "description": "group is the preferred group of the resource.  Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".",
                "type": "string"
              },
              "kind": {
                "default": "",
                "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                            from components.java
                        }
                    }
                }
            """)
    
            file("src/test/java/com/example/SampleTest.java") << """
                package com.example;
    
                import org.junit.Test;
    
                public class SampleTest {
                    @Test
                    public void checkSomething() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  3. src/go/build/build.go

    	// The install suffix specifies a suffix to use in the name of the installation
    	// directory. By default it is empty, but custom builds that need to keep
    	// their outputs separate can set InstallSuffix to do so. For example, when
    	// using the race detector, the go command uses InstallSuffix = "race", so
    	// that on a Linux/386 system, packages are written to a directory named
    	// "linux_386_race" instead of the usual "linux_386".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    	if r < relation(len(relationStrings)) {
    		return relationStrings[r]
    	}
    	return fmt.Sprintf("relation(%d)", uint(r))
    }
    
    // domain represents the domain of a variable pair in which a set
    // of relations is known. For example, relations learned for unsigned
    // pairs cannot be transferred to signed pairs because the same bit
    // representation can mean something else.
    type domain uint
    
    const (
    	signed domain = 1 << iota
    	unsigned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    		Short:   "Describe pods and their Istio configuration [kube-only]",
    		Long: `Analyzes pod, its Services, DestinationRules, and VirtualServices and reports
    the configuration objects that affect that pod.`,
    		Example: `  istioctl experimental describe pod productpage-v1-c7765c886-7zzd4`,
    		RunE: func(cmd *cobra.Command, args []string) error {
    			describeNamespace = ctx.NamespaceOrDefault(ctx.Namespace())
    			if len(args) != 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. src/html/template/exec_test.go

    	// JavaScript.
    	{"js", `{{js .}}`, `It\&#39;d be nice.`, `It'd be nice.`, true},
    
    	// URL query.
    	{"urlquery", `{{"http://www.example.org/"|urlquery}}`, "http%3A%2F%2Fwww.example.org%2F", nil, true},
    
    	// Booleans
    	{"not", "{{not true}} {{not false}}", "false true", nil, true},
    	{"and", "{{and false 0}} {{and 1 0}} {{and 0 true}} {{and 1 1}}", "false 0 0 1", nil, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal_test.go

    			`<host><extra2>B</extra2></host>` +
    			`</service>`,
    		MarshalOnly: true,
    	},
    	{
    		Value: &Service{Port: &Port{Number: "80"}, Extra2: "example"},
    		ExpectXML: `<service>` +
    			`<host><port>80</port></host>` +
    			`<host><extra2>example</extra2></host>` +
    			`</service>`,
    		MarshalOnly: true,
    	},
    	{
    		Value: &struct {
    			XMLName struct{} `xml:"space top"`
    			A       string   `xml:"x>a"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    	inputOverflow bool // Set if an operation with the input overflowed.
    }
    
    // next provides a new sample to the controller.
    //
    // input is the sample, setpoint is the desired point, and period is how much
    // time (in whatever unit makes the most sense) has passed since the last sample.
    //
    // Returns a new value for the variable it's controlling, and whether the operation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. src/text/template/exec_test.go

    	// JavaScript.
    	{"js", `{{js .}}`, `It\'d be nice.`, `It'd be nice.`, true},
    
    	// URL query.
    	{"urlquery", `{{"http://www.example.org/"|urlquery}}`, "http%3A%2F%2Fwww.example.org%2F", nil, true},
    
    	// Booleans
    	{"not", "{{not true}} {{not false}}", "false true", nil, true},
    	{"and", "{{and false 0}} {{and 1 0}} {{and 0 true}} {{and 1 1}}", "false 0 0 1", nil, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    	runoutputGate chan bool
    }
    
    // test is a single test case in the GOROOT/test directory.
    type test struct {
    	testCommon
    	*testing.T
    	// dir and goFile identify the test case.
    	// For example, "fixedbugs", "bug000.go".
    	dir, goFile string
    }
    
    // expectFail reports whether the (overall) test recipe is
    // expected to fail under the current build+test configuration.
    func (t test) expectFail() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top