Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for mdash (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/controller/endpointslicemirroring/utils.go

    		epSlice.Name = sliceName
    	}
    
    	return epSlice
    }
    
    // getEndpointSlicePrefix returns a suitable prefix for an EndpointSlice name.
    func getEndpointSlicePrefix(serviceName string) string {
    	// use the dash (if the name isn't too long) to make the name a bit prettier.
    	prefix := fmt.Sprintf("%s-", serviceName)
    	if len(validation.ValidateEndpointSliceName(prefix, true)) != 0 {
    		prefix = serviceName
    	}
    	return prefix
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. cluster/gce/gci/master-helper.sh

      return 1
    }
    
    
    function create-master-instance-internal() {
      local gcloud="gcloud"
      local retries=5
      local sleep_sec=10
      if [[ "${MASTER_SIZE##*-}" -ge 64 ]]; then  # remove everything up to last dash (inclusive)
        # Workaround for #55777
        retries=30
        sleep_sec=60
      fi
    
      local -r master_name="${1}"
      local -r address="${2:-}"
      local -r internal_address="${3:-}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  9. pkg/config/validation/agent/validation_test.go

    		name string
    		in   string
    		err  string
    	}{
    		{"empty", "", "empty"},
    		{"happy", strings.Repeat("x", 63), ""},
    		{"multi-segment", "foo.bar.com", ""},
    		{"middle dash", "f-oo.bar.com", ""},
    		{"trailing dot", "foo.bar.com.", ""},
    		{"prefix dash", "-foo.bar.com", "invalid"},
    		{"forward slash separated", "foo/bar/com", "invalid"},
    		{"colon separated", "foo:bar:com", "invalid"},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  10. src/go/internal/gccgoimporter/testdata/unicode.gox

    var Cham <type 1>;
    var Cherokee <type 1>;
    var Co <type 1>;
    var Common <type 1>;
    var Coptic <type 1>;
    var Cs <type 1>;
    var Cuneiform <type 1>;
    var Cypriot <type 1>;
    var Cyrillic <type 1>;
    var Dash <type 1>;
    var Deprecated <type 1>;
    var Deseret <type 1>;
    var Devanagari <type 1>;
    var Diacritic <type 1>;
    var Digit <type 1>;
    var Duployan <type 1>;
    var Egyptian_Hieroglyphs <type 1>;
    var Elbasan <type 1>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
Back to top