Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 251 for Answers (0.1 sec)

  1. src/text/template/multi_test.go

    			t.Errorf("expected string %q: got %q", c.want, buf.String())
    		}
    	}
    }
    
    // Issue 19249 was a regression in 1.8 caused by the handling of empty
    // templates added in that release, which got different answers depending
    // on the order templates appeared in the internal map.
    func TestIssue19294(t *testing.T) {
    	// The empty block in "xhtml" should be replaced during execution
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 10:48:29 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  2. .github/actions/people/app/main.py

        maintainers = []
        for login in maintainers_logins:
            user = authors[login]
            maintainers.append(
                {
                    "login": login,
                    "answers": experts_results.commenters[login],
                    "prs": contributors_results.contributors[login],
                    "avatarUrl": user.avatarUrl,
                    "url": user.url,
                }
            )
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 17:38:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/download.go

    if at 'go 1.16' or lower.
    
    The go command will automatically download modules as needed during ordinary
    execution. The "go mod download" command is useful mainly for pre-filling
    the local cache or to compute the answers for a Go module proxy.
    
    By default, download writes nothing to standard output. It may print progress
    messages and errors to standard error.
    
    The -json flag causes download to print a sequence of JSON objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator_test.go

    		threadCount: threads,
    		tokenCount:  tokens,
    	}
    	s.makeTokens()
    	return s
    }
    
    // singleBenchmark collects all the state needed to run a benchmark. The
    // question this benchmark answers is, "what's the average latency added by the
    // cache for N concurrent tokens?"
    //
    // Given the size of the key range constructed by this test, the default go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  5. src/regexp/testdata/testregex.c

    T("  -s	use stack instead of malloc\n");
    T("  -x	do not repeat successful tests with REG_NOSUB\n");
    T("  -v	list each test line\n");
    T("  -A	list failed test lines with actual answers\n");
    T("  -B	list all test lines with actual answers\n");
    T("  -F	list failed test lines\n");
    T("  -P	list passed test lines\n");
    T("  -S	output one summary line\n");
    T("\n");
    T("INPUT FORMAT\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  6. src/strconv/atof.go

    // Three common cases:
    //
    //	value is exact integer
    //	value is exact integer * exact power of ten
    //	value is exact integer / exact power of ten
    //
    // These all produce potentially inexact but correctly rounded answers.
    func atof64exact(mantissa uint64, exp int, neg bool) (f float64, ok bool) {
    	if mantissa>>float64info.mantbits != 0 {
    		return
    	}
    	f = float64(mantissa)
    	if neg {
    		f = -f
    	}
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/init.go

    }
    
    // OutputWriter returns the io.Writer used to write output to by this command.
    func (d *initData) OutputWriter() io.Writer {
    	return d.outputWriter
    }
    
    // getDryRunClient creates a fake client that answers some GET calls in order to be able to do the full init flow in dry-run mode.
    func getDryRunClient(d *initData) (clientset.Interface, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. src/net/rpc/server.go

    func Accept(lis net.Listener) { DefaultServer.Accept(lis) }
    
    // Can connect to RPC service using HTTP CONNECT to rpcPath.
    var connected = "200 Connected to Go RPC"
    
    // ServeHTTP implements an [http.Handler] that answers RPC requests.
    func (server *Server) ServeHTTP(w http.ResponseWriter, req *http.Request) {
    	if req.Method != "CONNECT" {
    		w.Header().Set("Content-Type", "text/plain; charset=utf-8")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    incorrect",badUKVatAnswer:"Incorrect UK VAT Number",badUKNin:"Incorrect UK NIN",badUKUtr:"Incorrect UK UTR Number",badStrength:"The password isn't strong enough",badNumberOfSelectedOptionsStart:"You have to choose at least ",badNumberOfSelectedOptionsEnd:" answers",badAlphaNumeric:"The input value can only contain alphanumeric characters ",badAlphaNumericExtra:" and ",wrongFileSize:"The file you are trying to upload is too large (max %s)",wrongFileType:"Only files of type %s is allowed",groupCheckedRangeStart:"Please...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 32.8K bytes
    - Viewed (0)
  10. src/net/lookup_test.go

    		}
    		if err != nil {
    			if perr := parseLookupPortError(err); perr != nil {
    				t.Error(perr)
    			}
    		}
    	}
    }
    
    // Like TestLookupPort but with minimal tests that should always pass
    // because the answers are baked-in to the net package.
    func TestLookupPort_Minimal(t *testing.T) {
    	type test struct {
    		network string
    		name    string
    		port    int
    	}
    	var tests = []test{
    		{"tcp", "http", 80},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top