Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Answers (0.13 sec)

  1. src/crypto/tls/boring_test.go

    			if ok {
    				t.Errorf("%s: BAD reject (%v)", desc, serverErr)
    			} else {
    				t.Errorf("%s: BAD accept", desc)
    			}
    		}
    	}
    
    	// Run simple basic test with known answers before proceeding to
    	// exhaustive test with computed answers.
    	r1pool := x509.NewCertPool()
    	r1pool.AddCert(R1.cert)
    	testServerCert(t, "basic", r1pool, L2_I.key, [][]byte{L2_I.der, I_R1.der}, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    	for _, l := range locs {
    		stack, err := obj.SourceLine(l.Address)
    		if err != nil || len(stack) == 0 {
    			// No answers from addr2line.
    			continue
    		}
    
    		l.Line = make([]profile.Line, len(stack))
    		l.IsFolded = false
    		for i, frame := range stack {
    			if frame.Func != "" {
    				m.HasFunctions = true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/internal/bisect/bisect.go

    //
    //  3. Enable each change that the pattern says should be enabled.
    //     The [Matcher.ShouldEnable] method answers this question for a given change ID.
    //
    //  4. Print a report identifying each change that the pattern says should be printed.
    //     The [Matcher.ShouldPrint] method answers this question for a given change ID.
    //     The report consists of one more lines on standard error or standard output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            classFile.isFile()
            new ZipTestFixture(jarFile).with {
                hasDescendants("META-INF/MANIFEST.MF", "Thing.class", "answer.txt", "META-INF/some.Service")
                assertFileContent("answer.txt", "42")
            }
    
            when:
            file("src/main/resources/answer.txt").text = "forty-two"
            configurationCacheRun "build"
    
            then:
            assertStateLoaded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            buildFile << """
                class Oracle extends DefaultTask {
    
                    @Internal final Property<String> answer
    
                    Oracle() {
                        answer = project.objects.property(String)
                        answer.finalizeValueOnRead()
                        answer.set(
                            project.provider {
                                println 'Thinking...'
                                '42'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

            outputContains("result = b")
        }
    
        def "can answer text question in interactive build [rich console: #richConsole]"() {
            given:
            withRichConsole(richConsole)
    
            when:
            runWithInput("ask", QUESTION_PROMPT, "answer")
    
            then:
            outputContains("result = answer")
    
            where:
            richConsole << VALID_BOOLEAN_CHOICES
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. architecture/ambient/ztunnel.md

    A secondary goal was to enable a smoother on-ramp from "Zero" to "Getting some value".
    Historically, Istio had to really be consumed all-or-nothing for things to work as expected.
    In particular, an easy answer to "I just want to have mTLS everywhere, then I can think about adopting the rest of service mesh" was desired.
    
    ## Goals
    
    Ztunnel should:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    For any non-trivial change, we need to be able to answer these questions:
    
    * Why is this change done? What's the use case?
    * For user facing features, what will the API look like?
    * What test cases should it have? What could go wrong?
    * How will it roughly be implemented? We'll happily provide code pointers to save you time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/runtime/chan.go

    }
    
    // full reports whether a send on c would block (that is, the channel is full).
    // It uses a single word-sized read of mutable state, so although
    // the answer is instantaneously true, the correct answer may have changed
    // by the time the calling function receives the return value.
    func full(c *hchan) bool {
    	// c.dataqsiz is immutable (never written after the channel is created)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top