Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 858 for Off (0.02 sec)

  1. src/cmd/go/testdata/script/mod_off_init.txt

    # 'go mod init' should refuse to initialize a module if it will be
    # ignored anyway due to GO111MODULE=off.
    env GO111MODULE=off
    ! go mod init
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 15 12:46:25 UTC 2020
    - 216 bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/TestWriter.java

        flush(); // flush write to TestOutputStream to get its behavior
      }
    
      @Override
      public void write(char[] cbuf, int off, int len) throws IOException {
        super.write(cbuf, off, len);
        flush();
      }
    
      @Override
      public void write(String str, int off, int len) throws IOException {
        super.write(str, off, len);
        flush();
      }
    
      public boolean closed() {
        return out.closed();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  3. internal/config/bool-flag.go

    	switch str {
    	case "1", "t", "T", "true", "TRUE", "True", "on", "ON", "On":
    		return true, nil
    	case "0", "f", "F", "false", "FALSE", "False", "off", "OFF", "Off":
    		return false, nil
    	}
    	if strings.EqualFold(str, "enabled") {
    		return true, nil
    	}
    	if strings.EqualFold(str, "disabled") {
    		return false, nil
    	}
    	return false, fmt.Errorf("ParseBool: parsing '%s': %w", str, strconv.ErrSyntax)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 07 15:10:40 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomDomParser.java

                return super.read();
            }
    
            @Override
            public int read(byte[] b, int off, int len) throws IOException {
                if (b == null) {
                    throw new NullPointerException();
                } else if ((off < 0) || (off > b.length) || (len < 0)
                        || ((off + len) > b.length) || ((off + len) < 0)) {
                    throw new IndexOutOfBoundsException();
                } else if (len == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. .github/workflows/multipart/nginx-site1.conf

            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
                proxy_set_header Host $http_host;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 30 10:13:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. .github/workflows/multipart/nginx-site2.conf

            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
                proxy_set_header Host $http_host;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 30 10:13:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/cache/default.go

    	// otherwise distinguish between an explicit "off" and a UserCacheDir error.
    
    	defaultDirOnce.Do(func() {
    		defaultDir = cfg.Getenv("GOCACHE")
    		if defaultDir != "" {
    			defaultDirChanged = true
    			if filepath.IsAbs(defaultDir) || defaultDir == "off" {
    				return
    			}
    			defaultDir = "off"
    			defaultDirErr = fmt.Errorf("GOCACHE is not an absolute path")
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/time/sys_unix.go

    	return syscall.Read(int(fd), buf)
    }
    
    func closefd(fd uintptr) {
    	syscall.Close(int(fd))
    }
    
    func preadn(fd uintptr, buf []byte, off int) error {
    	whence := seekStart
    	if off < 0 {
    		whence = seekEnd
    	}
    	if _, err := syscall.Seek(int(fd), int64(off), whence); err != nil {
    		return err
    	}
    	for len(buf) > 0 {
    		m, err := syscall.Read(int(fd), buf)
    		if m <= 0 {
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:10 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultColorMapTest.groovy

            color.on(ansi)
    
            then:
            1 * ansi.fg(Color.MAGENTA)
            1 * ansi.a(Attribute.ITALIC)
    
            when: 'That color is turned off, it resets to default'
            color.off(ansi)
    
            then:
            1 * ansi.fg(Color.DEFAULT)
            1 * ansi.a(Attribute.ITALIC_OFF)
    
            when: 'A Style is overridden with a compound property'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/internal/buildid/buildid.go

    				sizeStr := strings.TrimSpace(string(hdr[0:20]))
    				size, err := strconv.ParseInt(sizeStr, 10, 64)
    				if err != nil {
    					return bad()
    				}
    				off += int64(len(hdr)) + namLen + 2
    				if off&1 != 0 {
    					off++
    				}
    				sr := io.NewSectionReader(f, off, size)
    				x, err := xcoff.NewFile(sr)
    				if err != nil {
    					return bad()
    				}
    				data := x.CSect(".go.buildid")
    				if data == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 28 21:52:53 UTC 2020
    - 9K bytes
    - Viewed (0)
Back to top