Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 227 for Answers (0.15 sec)

  1. src/cmd/compile/internal/types/type.go

    const (
    	CMPlt = Cmp(-1)
    	CMPeq = Cmp(0)
    	CMPgt = Cmp(1)
    )
    
    // Compare compares types for purposes of the SSA back
    // end, returning a Cmp (one of CMPlt, CMPeq, CMPgt).
    // The answers are correct for an optimizer
    // or code generator, but not necessarily typechecking.
    // The order chosen is arbitrary, only consistency and division
    // into equivalence classes (Types that compare CMPeq) matters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. src/time/time.go

    			d1 >>= 1
    		}
    		r = Duration(u0)
    	}
    
    	if neg && r != 0 {
    		// If input was negative and not an exact multiple of d, we computed q, r such that
    		//	q*d + r = -t
    		// But the right answers are given by -(q-1), d-r:
    		//	q*d + r = -t
    		//	-q*d - r = t
    		//	-(q-1)*d + (d - r) = t
    		qmod2 ^= 1
    		r = d - r
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    				return pathSet{}, true, m, true
    			}
    			// A main module can only be set to its own version.
    			continue
    		}
    
    		vr, ok := r.resolvedVersion[m.Path]
    		if !ok {
    			// m is a viable answer to the query, but other answers may also
    			// still be viable.
    			filtered.pkgMods = append(filtered.pkgMods, m)
    			continue
    		}
    
    		if vr.version != m.Version {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testfortran/testdata/testprog/answer.f90

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 294 bytes
    - Viewed (0)
  5. src/math/all_test.go

    }
    
    // The expected results below were computed by the high precision calculators
    // at https://keisan.casio.com/.  More exact input values (array vf[], above)
    // were obtained by printing them with "%.26f".  The answers were calculated
    // to 26 digits (by using the "Digit number" drop-down control of each
    // calculator).
    var acos = []float64{
    	1.0496193546107222142571536e+00,
    	6.8584012813664425171660692e-01,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserQuestions.java

         * Asks the user a yes/no question and returns the answer. Requires that the user explicitly type "yes" or "no".
         *
         * @param question The text of the question.
         * @return the answer or {@code null} if not connected to a console.
         */
        @Nullable
        Boolean askYesNoQuestion(String question);
    
        /**
         * Asks the user a question that has a boolean result and returns the answer.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinInitScriptIntegrationTest.kt

                    """
                    apply(from = "./answer.gradle.kts")
                    """
                )
    
            withFile(
                "gradle/answer.gradle.kts",
                """
                rootProject {
                    val answer by extra { "42" }
                }
                """
            )
    
            withBuildScript(
                """
                val answer: String by extra
                println("*" + answer + "*")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:43 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. pkg/dns/client/dns_test.go

    			answer.SetReply(msg)
    			answer.Rcode = dns.RcodeSuccess
    			if err := resp.WriteMsg(&answer); err != nil {
    				t.Fatalf("err: %s", err)
    			}
    		})
    	}
    	mux.HandleFunc("giant.", func(resp dns.ResponseWriter, msg *dns.Msg) {
    		answer := &dns.Msg{
    			Answer: giantResponse,
    		}
    		answer.SetReply(msg)
    		answer.Rcode = dns.RcodeSuccess
    		if err := resp.WriteMsg(answer); err != nil {
    			t.Fatalf("err: %s", err)
    		}
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectLayoutIntegrationTest.groovy

                }
            """
    
            when:
            configurationCacheRun 'answer'
    
            then:
            '42' == file('build/dir/answer.txt').text
            outputContains '42'
    
            where:
            desc   | provider
            'dir'  | 'dir(computedDirName).map { it.file("answer.txt") }'
            'file' | 'file(computedDirName.map { "$it/answer.txt" })'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/string_templateNonConst.kt

    val QUESTION = "the ultimate question of life, the universe, and everything"
    val ANSWER = 42
    val QUESTION_MEANING = null
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Feb 15 15:45:22 UTC 2023
    - 228 bytes
    - Viewed (0)
Back to top