Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 140 for stanza (0.2 sec)

  1. releasenotes/notes/39521.yaml

    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 11 20:02:45 UTC 2022
    - 396 bytes
    - Viewed (0)
  2. test/nosplit.go

    	nok := 0
    	nfail := 0
    TestCases:
    	for len(tests) > 0 {
    		var stanza string
    		i := strings.Index(tests, "\nstart ")
    		if i < 0 {
    			stanza, tests = tests, ""
    		} else {
    			stanza, tests = tests[:i], tests[i+1:]
    		}
    
    		m := rejectRE.FindStringSubmatch(stanza)
    		if m == nil {
    			bug()
    			fmt.Printf("invalid stanza:\n\t%s\n", indent(stanza))
    			continue
    		}
    		lines := strings.TrimSpace(m[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/stackcheck_test.go

            grows 8 bytes, calls main.startRec<0>
            infinite cycle
    `,
    	}
    
    	// Parse stanzas
    	stanza := regexp.MustCompile(`^(.*): nosplit stack over \d+ byte limit\n(.*\n(?: .*\n)*)`)
    	// Strip comments from cmd/go
    	out = regexp.MustCompile(`(?m)^#.*\n`).ReplaceAllString(out, "")
    	for len(out) > 0 {
    		m := stanza.FindStringSubmatch(out)
    		if m == nil {
    			t.Fatalf("unexpected output:\n%s", out)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:14 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/why.go

    The output is a sequence of stanzas, one for each package or module
    name on the command line, separated by blank lines. Each stanza begins
    with a comment line "# package" or "# module" giving the target
    package or module. Subsequent lines give a path through the import
    graph, one package per line. If the package or module is not
    referenced from the main module, the stanza will display a single
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. src/cmd/objdump/main.go

    // counters written in hexadecimal with optional leading 0x prefix.
    // In this mode, objdump prints a sequence of stanzas of the form:
    //
    //	file:line
    //	 address: assembly
    //	 address: assembly
    //	 ...
    //
    // Each stanza gives the disassembly for a contiguous range of addresses
    // all mapped to the same original source file and line number.
    // This mode is intended for use by pprof.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// When enabled:
    	// 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object.
    	// 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object.
    	// +optional
    	Status *CustomResourceSubresourceStatus `json:"status,omitempty" protobuf:"bytes,1,opt,name=status"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

        <filter **>
          @type add_insert_ids
        </filter>
    
        # This section is exclusive for k8s_container logs. These logs come with
        # 'stderr'/'stdout' tags.
        # We use a separate output stanza for 'k8s_node' logs with a smaller buffer
        # because node logs are less important than user's container logs.
        <match {stderr,stdout}>
          @type google_cloud
    
          # Try to detect JSON formatted log entries.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	// When enabled:
    	// 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object.
    	// 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object.
    	// +optional
    	Status *CustomResourceSubresourceStatus `json:"status,omitempty" protobuf:"bytes,1,opt,name=status"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. src/index/suffixarray/sais2.go

    	bucketMax_8_64(text, freq, bucket)
    
    	numLMS := 0
    	lastB := int64(-1)
    	bucket = bucket[:256] // eliminate bounds check for bucket[c1] below
    
    	// The next stanza of code (until the blank line) loop backward
    	// over text, stopping to execute a code body at each position i
    	// such that text[i] is an L-character and text[i+1] is an S-character.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

    // * exposes a /status subresource for the custom resource
    // * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza
    // * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza
    message CustomResourceSubresourceStatus {
    }
    
    // CustomResourceSubresources defines the status and scale subresources for CustomResources.
    message CustomResourceSubresources {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
Back to top