Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 470 for spacer (2.42 sec)

  1. src/runtime/testdata/testwintls/main.c

    #include <windows.h>
    
    int main(int argc, char **argv) {
        if (argc < 3) {
            return 1;
        }
        // Allocate more than 64 TLS indices
        // so the Go runtime doesn't find
        // enough space in the TEB TLS slots.
        for (int i = 0; i < 65; i++) {
            TlsAlloc();
        }
        HMODULE hlib = LoadLibrary(argv[1]);
        if (hlib == NULL) {
            return 2;
        }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 15:37:00 UTC 2023
    - 692 bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerPackOperationExecutorTest.groovy

        def packer = Mock(BuildCacheEntryPacker)
        def originFactory = Mock(OriginMetadataFactory)
        def stringInterner = new StringInterner()
        def buildOperationContext = Mock(BuildOperationContext)
        def buildOperationRunner = Mock(BuildOperationRunner)
        PackOperationExecutor packOperationExecutor = new PackOperationExecutor(buildOperationRunner, packer, originFactory, stringInterner)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    //     but only if there is space or tab inside s.
    func EscapeArg(s string) string {
    	if len(s) == 0 {
    		return `""`
    	}
    	n := len(s)
    	hasSpace := false
    	for i := 0; i < len(s); i++ {
    		switch s[i] {
    		case '"', '\\':
    			n++
    		case ' ', '\t':
    			hasSpace = true
    		}
    	}
    	if hasSpace {
    		n += 2 // Reserve space for quotes.
    	}
    	if n == len(s) {
    		return s
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. src/cmd/internal/objabi/util.go

    // license that can be found in the LICENSE file.
    
    package objabi
    
    import (
    	"fmt"
    	"strings"
    
    	"internal/buildcfg"
    )
    
    const (
    	ElfRelocOffset   = 256
    	MachoRelocOffset = 2048    // reserve enough space for ELF relocations
    	GlobalDictPrefix = ".dict" // prefix for names of global dictionaries
    )
    
    // HeaderString returns the toolchain configuration string written in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 12:40:45 UTC 2022
    - 961 bytes
    - Viewed (0)
  5. src/runtime/nonwindows_stub.go

    func enableWER() {}
    
    // winlibcall is not implemented on non-Windows systems,
    // but it is used in non-OS-specific parts of the runtime.
    // Define it as an empty struct to avoid wasting stack space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 03:12:13 UTC 2024
    - 962 bytes
    - Viewed (0)
  6. src/image/color/palette/gen.go

    			}
    		}
    	}
    	fmt.Fprintln(w, "// Plan9 is a 256-color palette that partitions the 24-bit RGB space")
    	fmt.Fprintln(w, "// into 4×4×4 subdivision, with 4 shades in each subcube. Compared to the")
    	fmt.Fprintln(w, "// WebSafe, the idea is to reduce the color resolution by dicing the")
    	fmt.Fprintln(w, "// color cube into fewer cells, and to use the extra space to increase the")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/AntWorkerMemoryLeakIntegrationTest.groovy

                allprojects {
                    apply plugin: 'checkstyle'
                }
            """
        }
    
        @Issue('https://github.com/gradle/gradle/issues/22172')
        void 'CodeNarc/Checkstyle do not fail with PermGen space error'() {
            given:
            withCheckstyle()
            20.times { count ->
                def projectName = "project${count}"
                def projectDir = file(projectName).createDir()
                settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/EmptyLineTrimmerOutputNormalizer.groovy

    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    import java.util.regex.Pattern
    
    /**
     * Allows a blank empty line in your sample output to match a blank line with any number of spaces in the actual output.
     *
     * This exists to avoid having to measure out "prefix" whitespace indentation and match it exactly in your sample output.
     */
    class EmptyLineTrimmerOutputNormalizer implements OutputNormalizer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. internal/bucket/encryption/bucket-sse-config.go

    			}
    		case AWSKms:
    			keyID := rule.DefaultEncryptionAction.MasterKeyID
    			if keyID == "" {
    				return nil, errors.New("MasterKeyID is missing with aws:kms")
    			}
    			spaces := strings.HasPrefix(keyID, " ") || strings.HasSuffix(keyID, " ")
    			if spaces {
    				return nil, errors.New("MasterKeyID contains unsupported characters")
    			}
    		}
    	}
    
    	if config.XMLNS == "" {
    		config.XMLNS = xmlNS
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. operator/pkg/validate/validate_test.go

    `,
    		},
    		{
    			desc: "BadValuesIP with Space start",
    			yamlStr: `
    values:
      global:
        proxy:
          includeIPRanges: "1.1.0.0/16, 2.2.0.0/16"
    `,
    			wantErrs: makeErrors([]string{`global.proxy.includeIPRanges netip.ParsePrefix(" 2.2.0.0/16"): ParseAddr(" 2.2.0.0"): unexpected character (at " 2.2.0.0")`}),
    		},
    		{
    			desc: "BadValuesIP with Space end",
    			yamlStr: `
    values:
      global:
        proxy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 11:44:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top