Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 707 for separators (0.22 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    When declaring aliases, it's worth noting that any of the `-`, `_` and `.` characters can be used as separators, but the generated catalog will have all normalized to `.`:
    for example `foo-bar` as an alias is converted to `foo.bar` automatically.
    
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/go/doc/comment/parse.go

    // The default rule is that if the list item content contains any blank lines
    // (meaning at least one item has multiple paragraphs)
    // then list items must themselves be separated by blank lines.
    // Blank line separators can be forced by setting [List].ForceBlankBetween.
    func (l *List) BlankBetween() bool {
    	if l.ForceBlankBetween {
    		return true
    	}
    	for _, item := range l.Items {
    		if len(item.Content) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  3. internal/config/config.go

    	IdentityTLSSubSys,
    	IdentityPluginSubSys,
    	HealSubSys,
    	ScannerSubSys,
    	SubnetSubSys,
    	CallhomeSubSys,
    	DriveSubSys,
    	ILMSubSys,
    	BatchSubSys,
    	BrowserSubSys,
    )
    
    // Constant separators
    const (
    	SubSystemSeparator = madmin.SubSystemSeparator
    	KvSeparator        = madmin.KvSeparator
    	KvSpaceSeparator   = madmin.KvSpaceSeparator
    	KvComment          = madmin.KvComment
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  4. src/time/format.go

    	stdArgShift       = 16                 // extra argument in high bits, above low stdArgShift
    	stdSeparatorShift = 28                 // extra argument in high 4 bits for fractional second separators
    	stdMask           = 1<<stdArgShift - 1 // mask out argument
    )
    
    // std0x records the std values for "01", "02", ..., "06".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

        }
    
      /**
       * The number of query parameters in this URL, like 2 for `http://host/?a=apple&b=banana`. If this
       * URL has no query this is 0. Otherwise it is one more than the number of `"&"` separators in the
       * query.
       *
       * | URL                               | `querySize()` |
       * | :-------------------------------- | :------------ |
       * | `http://host/`                    | `0`           |
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    ====
    
    Optionally, a repository with pattern layout can have its `'organisation'` part laid out in Maven style, with forward slashes replacing dots as separators. For example, the organisation `my.company` would then be represented as `my/company`.
    
    .Ivy repository with Maven compatible layout
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    			// are not meaningful; and excessively long constants may
    			// consume a lot of space and time for a useless conversion.
    			// Cap constant length with a generous upper limit that also
    			// allows for separators between all digits.
    			const limit = 10000
    			if len(e.Value) > limit {
    				check.errorf(e, InvalidConstVal, "excessively long constant: %s... (%d chars)", e.Value[:10], len(e.Value))
    				goto Error
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. src/net/http/request.go

    	                    | "CONNECT"                ; Section 9.9
    	                    | extension-method
    	   extension-method = token
    	     token          = 1*<any CHAR except CTLs or separators>
    	*/
    	return len(method) > 0 && strings.IndexFunc(method, isNotToken) == -1
    }
    
    // NewRequest wraps [NewRequestWithContext] using [context.Background].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/os/exec/exec.go

    // Command returns the [Cmd] struct to execute the named program with
    // the given arguments.
    //
    // It sets only the Path and Args in the returned structure.
    //
    // If name contains no path separators, Command uses [LookPath] to
    // resolve name to a complete path if possible. Otherwise it uses name
    // directly as Path.
    //
    // The returned Cmd's Args field is constructed from the command name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. pkg/apis/storage/validation/validation_test.go

    				Name:         "io.kubernetes.storage.csi.driver/",
    				NodeID:       nodeID,
    				TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    			}},
    		},
    	}, {
    		// Invalid separators in driver name
    		ObjectMeta: metav1.ObjectMeta{Name: "foo5"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "io/kubernetes/storage/csi~driver",
    				NodeID:       nodeID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
Back to top