Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for onFinished (0.23 sec)

  1. src/cmd/dist/test.go

    		return false
    	}
    	// The race detector doesn't work on Alpine Linux:
    	// golang.org/issue/14481
    	if isAlpineLinux() {
    		return false
    	}
    	// NetBSD support is unfinished.
    	// golang.org/issue/26403
    	if goos == "netbsd" {
    		return false
    	}
    	return true
    }
    
    func isAlpineLinux() bool {
    	if runtime.GOOS != "linux" {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    		arg[i] = rune
    		i++
    	}
    	if quoted || i > 0 {
    		args = append(args, string(arg[:i]))
    	}
    	if quote != 0 {
    		err = errors.New("unclosed quote")
    	} else if escaped {
    		err = errors.New("unfinished escaping")
    	}
    	return args, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/go/build/build.go

    		arg[i] = rune
    		i++
    	}
    	if quoted || i > 0 {
    		args = append(args, string(arg[:i]))
    	}
    	if quote != 0 {
    		err = errors.New("unclosed quote")
    	} else if escaped {
    		err = errors.New("unfinished escaping")
    	}
    	return args, err
    }
    
    // matchAuto interprets text as either a +build or //go:build expression (whichever works),
    // reporting whether the expression matches the build context.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    		}
    		arg[i] = r
    		i++
    	}
    	if quoted || i > 0 {
    		args = append(args, string(arg[:i]))
    	}
    	if quote != 0 {
    		err = errors.New("unclosed quote")
    	} else if escaped {
    		err = errors.New("unfinished escaping")
    	}
    	return args, err
    }
    
    // Translate rewrites f.AST, the original Go input, to remove
    // references to the imported package C, replacing them with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	// error with some unique error path token. It's initialized
    	// from Transport.CountError or Server.CountError.
    	countError func(errToken string)
    
    	// lastHeaderStream is non-zero if the last frame was an
    	// unfinished HEADERS/CONTINUATION.
    	lastHeaderStream uint32
    
    	maxReadSize uint32
    	headerBuf   [http2frameHeaderLen]byte
    
    	// TODO: let getReadBuf be configurable, and use a less memory-pinning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. test/fixedbugs/bug257.go

    	"The world will little note, nor long remember what we say here,\n" +
    	"but it can never forget what they did here.\n" +
    	"  It is for us the living, rather, to be dedicated here to the\n" +
    	"unfinished work which they who fought here have thus far so\n" +
    	"nobly advanced.  It is rather for us to be here dedicated to\n" +
    	"the great task remaining before us — that from these honored\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.9M bytes
    - Viewed (0)
Back to top