Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 561 for spacer (0.11 sec)

  1. .space/idea.devfile.yaml

    schemaVersion: 2.2.0
    attributes:
      space:
        instanceType: regular
        editor:
          type: Idea
    components:
      - name: kotlin-build-env
        container:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 15:24:12 UTC 2023
    - 239 bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/zh-cn/stopwords.txt

    &
    ^
    $
    @
    !
    ~
    :
    ;
    +
    /
    \
    《
    》
    —
    -
    ,
    。
    、
    :
    ;
    !
    ·
    ?
    “
    ”
    )
    (
    【
    】
    [
    ]
    ●
    # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese)
     
    
    # English Stop Words
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jun 17 08:00:22 UTC 2017
    - 310 bytes
    - Viewed (1)
  3. common/scripts/setup_env.sh

    # any Mac or Linux platform with bash 4.2+. Please take care not to modify this function
    # without testing properly.
    #
    # This function will properly handle any type of path including those with spaces using the
    # loading pattern specified by *kubectl config*.
    #
    # testcase: "a:b c:d"
    # testcase: "a b:c d:e f"
    # testcase: "a b:c:d e"
    parse_KUBECONFIG () {
    TMPDIR=""
    if [[ "$1" =~ ([^:]*):(.*) ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/GradleConfigurabilityIntegrationSpec.groovy

        }
    
        def "honours jvm sys property that contain a space in gradle.properties"() {
            given:
            file("gradle.properties") << 'org.gradle.jvmargs=-Dsome-prop="i have space"'
    
            expect:
            buildSucceeds """
    assert providers.systemProperty('some-prop').get() == 'i have space'
            """
        }
    
        def "honours jvm option that contain a space in gradle.properties"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/util/ConsoleTransferListener.java

                return complete + " B ";
            }
        }
    
        private void pad(StringBuilder buffer, int spaces) {
            String block = "                                        ";
            while (spaces > 0) {
                int n = Math.min(spaces, block.length());
                buffer.append(block, 0, n);
                spaces -= n;
            }
        }
    
        @Override
        public void transferSucceeded(TransferEvent event) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListener.java

            out.flush();
            buffer.setLength(0);
        }
    
        private void pad(StringBuilder buffer, int spaces) {
            String block = "                                        ";
            while (spaces > 0) {
                int n = Math.min(spaces, block.length());
                buffer.append(block, 0, n);
                spaces -= n;
            }
        }
    
        @Override
        public void transferSucceeded(TransferEvent event) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. docs/erasure/storage-class/README.md

    redundancy or better drive space utilization.
    
    To get an idea of how various combinations of data and parity drives affect the storage usage, let’s take an example of a 100 MiB file stored
    on 16 drive MinIO deployment. If you use eight data and eight parity drives, the file space usage will be approximately twice, i.e. 100 MiB
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. src/runtime/cgo/abi_arm64.h

    // from the stack, but they don't adjust stack pointer, so
    // the user should prepare stack space in advance.
    // SAVE_R19_TO_R28(offset) saves R19 ~ R28 to the stack space
    // of ((offset)+0*8)(RSP) ~ ((offset)+9*8)(RSP).
    //
    // SAVE_F8_TO_F15(offset) saves F8 ~ F15 to the stack space
    // of ((offset)+0*8)(RSP) ~ ((offset)+7*8)(RSP).
    //
    // R29 is not saved because Go will save and restore it.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/print.css

    p {
        text-align: justify;
    }
    
    /**
     * Examples
     */
    
    .example .title {
        text-align: left;
        white-space: nowrap;
        color: #666666
    }
    
    .example {
        page-break-inside: avoid;
    }
    
    .figure .title {
        text-align: left;
        white-space: nowrap;
        color: #666666
    }
    
    .figure {
        page-break-inside: avoid;
    }
    
    .figure img {
        width: 100%;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. test/fixedbugs/issue49814.go

    // license that can be found in the LICENSE file.
    
    package main
    
    // "must be integer" error is for 32-bit architectures
    type V [1 << 50]byte // ERROR "larger than address space|invalid array length"
    
    var X [1 << 50]byte // ERROR "larger than address space|invalid array length"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 27 18:59:51 UTC 2023
    - 418 bytes
    - Viewed (0)
Back to top