Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for numbering (0.31 sec)

  1. src/debug/dwarf/line.go

    				// the compilation directory.
    				directory = pathJoin(compDir, directory)
    			}
    			r.directories = append(r.directories, directory)
    		}
    
    		// Read file name list. File numbering starts with 1,
    		// so leave the first entry nil.
    		r.fileEntries = make([]*LineFile, 1)
    		for {
    			if done, err := r.readFileEntry(); err != nil {
    				return err
    			} else if done {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/func.go

    	// and go/defer wrappers, respectively. Used by closureName for creating
    	// unique function names.
    	// Tracking goDeferGen separately avoids wrappers throwing off
    	// function literal numbering (e.g., runtime/trace_test.TestTraceSymbolize.func11).
    	funcLitGen  int32
    	rangeLitGen int32
    	goDeferGen  int32
    
    	Label int32 // largest auto-generated label in this function
    
    	Endlineno src.XPos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/debug/gosym/pclntab.go

    	ver120
    )
    
    // A LineTable is a data structure mapping program counters to line numbers.
    //
    // In Go 1.1 and earlier, each function (represented by a [Func]) had its own LineTable,
    // and the line number corresponded to a numbering of all source lines in the
    // program, across all files. That absolute line number would then have to be
    // converted separately to a file name and line number within the file.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // StatefulSetAutoDeletePVC feature gate to be enabled, which is alpha.
      // +optional
      optional StatefulSetPersistentVolumeClaimRetentionPolicy persistentVolumeClaimRetentionPolicy = 10;
    
      // ordinals controls the numbering of replica indices in a StatefulSet. The
      // default ordinals behavior assigns a "0" index to the first replica and
      // increments the index by one for each additional replica requested. Using
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"ordinals":                             "ordinals controls the numbering of replica indices in a StatefulSet. The default ordinals behavior assigns a \"0\" index to the first replica and increments the index by one for each additional replica requested. Using the ordinals field requires the StatefulSetStartOrdinal feature...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // StatefulSetAutoDeletePVC feature gate to be enabled, which is alpha.
      // +optional
      optional StatefulSetPersistentVolumeClaimRetentionPolicy persistentVolumeClaimRetentionPolicy = 10;
    
      // ordinals controls the numbering of replica indices in a StatefulSet. The
      // default ordinals behavior assigns a "0" index to the first replica and
      // increments the index by one for each additional replica requested. Using
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"ordinals":                             "ordinals controls the numbering of replica indices in a StatefulSet. The default ordinals behavior assigns a \"0\" index to the first replica and increments the index by one for each additional replica requested. Using the ordinals field requires the StatefulSetStartOrdinal feature...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/buildid.go

    			}
    			if field == "version" && i < len(fields)-1 {
    				// Check that the next field is plausibly a version number.
    				// We require only that it begins with an ASCII digit,
    				// since we don't know what version numbering schemes a given
    				// C compiler may use. (Clang and GCC mostly seem to follow the scheme X.Y.Z,
    				// but in https://go.dev/issue/64619 we saw "8.3 [DragonFly]", and who knows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// ordinals controls the numbering of replica indices in a StatefulSet. The
    	// default ordinals behavior assigns a "0" index to the first replica and
    	// increments the index by one for each additional replica requested. Using
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"ordinals":                             "ordinals controls the numbering of replica indices in a StatefulSet. The default ordinals behavior assigns a \"0\" index to the first replica and increments the index by one for each additional replica requested. Using the ordinals field requires the StatefulSetStartOrdinal feature...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
Back to top