Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for stanza (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/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
    - 41.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    // * 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
    type CustomResourceSubresourceStatus struct{}
    
    // CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. src/regexp/exec_test.go

    // in the open source RE2 distribution https://github.com/google/re2/.
    //
    // The test file format is a sequence of stanzas like:
    //
    //	strings
    //	"abc"
    //	"123x"
    //	regexps
    //	"[a-z]+"
    //	0-3;0-3
    //	-;-
    //	"([0-9])([0-9])([0-9])"
    //	-;-
    //	-;0-3 0-1 1-2 2-3
    //
    // The stanza begins by defining a set of strings, quoted
    // using Go double-quote syntax, one per line. Then the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. src/index/suffixarray/sais.go

    	bucketMax_8_32(text, freq, bucket)
    
    	numLMS := 0
    	lastB := int32(-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
    - 32.4K bytes
    - Viewed (0)
Back to top