Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for ndash (0.09 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/escaping.go

    	escaped = unexpandMatcher.ReplaceAllStringFunc(escaped, func(s string) string {
    		contents := s[2 : len(s)-2]
    		switch contents {
    		case "underscores":
    			return "__"
    		case "dot":
    			return "."
    		case "dash":
    			return "-"
    		case "slash":
    			return "/"
    		}
    		if celReservedSymbols.Has(contents) {
    			if len(s) != len(escaped) {
    				ok = false
    			}
    			return contents
    		}
    		ok = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. src/main/assemblies/files/fess

        echo "   --prop=val"
        echo "   --prop val     set fess property (i.e. -Des.<prop>=<val>)"
    }
    
    # Parse any long getopt options and put them into properties before calling getopt below
    # Be dash compatible to make sure running under ubuntu works
    ARGV=""
    while [ $# -gt 0 ]
    do
        case $1 in
          --help) ARGV="$ARGV -h"; shift;;
          --*=*) properties="$properties -Dfess.${1#--}"
               shift 1
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    type ControlPlaneComponent struct {
    	// ExtraArgs is an extra set of flags to pass to the control plane component.
    	// A key in this map is the flag name as it appears on the
    	// command line except without leading dash(es).
    	// TODO: This is temporary and ideally we would like to switch all components to
    	// use ComponentConfig + ConfigMaps.
    	// +optional
    	ExtraArgs map[string]string `json:"extraArgs,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    		}, true, true},
    		{"this-is-a-dns.domain.com/key-with-dash", internalSelector{
    			getRequirement("this-is-a-dns.domain.com/key-with-dash", selection.Exists, nil, t),
    		}, true, true},
    		{"this-is-another-dns.domain.com/key-with-dash in (so,what)", internalSelector{
    			getRequirement("this-is-another-dns.domain.com/key-with-dash", selection.In, sets.NewString("so", "what"), t),
    		}, true, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/convert/StringConversionUtil.java

    import java.text.SimpleDateFormat;
    
    import org.codelibs.core.misc.Base64Util;
    
    /**
     * {@link String}用の変換ユーティリティです。
     *
     * @author higa
     */
    public abstract class StringConversionUtil {
    
        /** WAVE DASH */
        public static final char WAVE_DASH = '\u301C';
    
        /** FULLWIDTH TILDE */
        public static final char FULLWIDTH_TILDE = '\uFF5E';
    
        /** DOUBLE VERTICAL LINE */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/jvm/JvmTestSuite.java

        /**
         * Get the test type for this test suite.
         *
         * Defaults to the value of the {@code UNIT_TEST} constant defined in {@link TestSuiteType} for the built-in test suite, and to the dash-case name of the
         * test suite for custom test suites.  Test suite types must be unique across all test suites within a project.
         *
         * @since 7.4
         */
        Property<String> getTestType();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. src/mime/multipart/multipart_test.go

    				"val",
    			},
    		},
    	},
    
    	// Issue 46042; a nested multipart uses the outer separator followed by
    	// a dash.
    	{
    		name: "nested separator prefix is outer separator followed by a dash",
    		sep:  "foo",
    		in: strings.Replace(`--foo
    Content-Type: multipart/alternative; boundary="foo-bar"
    
    --foo-bar
    
    Body
    --foo-bar
    
    Body2
    --foo-bar--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 30.4K bytes
    - Viewed (0)
  8. src/net/http/cookie.go

    			ok = true
    			partlen++
    		case '0' <= c && c <= '9':
    			// fine
    			partlen++
    		case c == '-':
    			// Byte before dash cannot be dot.
    			if last == '.' {
    				return false
    			}
    			partlen++
    		case c == '.':
    			// Byte before dot cannot be dot, dash.
    			if last == '.' || last == '-' {
    				return false
    			}
    			if partlen > 63 || partlen == 0 {
    				return false
    			}
    			partlen = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

    import java.util.Map.Entry;
    import java.util.Set;
    
    /**
     * A generic name de-duplicator for hierarchical elements.
     * <p>
     * Conflicting sub-elements are de-duplicated by prepending their parent element names, separated by a dash.
     * Conflicting root elements are rejected with an {@link IllegalArgumentException}
     * <p>
     * If a child's simple name already contains the name of its parent, the two prefixes are collapsed to keep names short.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. src/runtime/race.go

    type symbolizeCodeContext struct {
    	pc   uintptr
    	fn   *byte
    	file *byte
    	line uintptr
    	off  uintptr
    	res  uintptr
    }
    
    var qq = [...]byte{'?', '?', 0}
    var dash = [...]byte{'-', 0}
    
    const (
    	raceGetProcCmd = iota
    	raceSymbolizeCodeCmd
    	raceSymbolizeDataCmd
    )
    
    // Callback from C into Go, runs on g0.
    func racecallback(cmd uintptr, ctx unsafe.Pointer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top