Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Answers (0.42 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/go/alldocs.go

    //
    // 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.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. configure.py

    
    def is_cygwin():
      return platform.system().startswith('CYGWIN_NT')
    
    
    def get_input(question):
      try:
        try:
          answer = raw_input(question)
        except NameError:
          answer = input(question)  # pylint: disable=bad-builtin
      except EOFError:
        answer = ''
      return answer
    
    
    def symlink_force(target, link_name):
      """Force symlink, equivalent of 'ln -sf'.
    
      Args:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.proto

    // Address represents a unique address.
    //
    // Address joins two sub-resources, Workload and Service, to support querying by IP address.
    // Address is intended to be able to be looked up on-demand, allowing a client
    // to answer a question like "what is this IP address", similar to a reverse DNS lookup.
    //
    // Each resource will have a mesh-wide unique opaque name, defined in the individual messages.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    	// and updated from new information that flows on back edges.
    	startState, endState abt.T
    	// Use these to avoid excess work in the merge. If none of the
    	// predecessors has changed since the last check, the old answer is
    	// still good.
    	lastCheckedTime, lastChangedTime int32
    	// Whether the block had any changes to user variables at all.
    	relevant bool
    	// false until the block has been processed at least once. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.pb.go

    // Address represents a unique address.
    //
    // Address joins two sub-resources, Workload and Service, to support querying by IP address.
    // Address is intended to be able to be looked up on-demand, allowing a client
    // to answer a question like "what is this IP address", similar to a reverse DNS lookup.
    //
    // Each resource will have a mesh-wide unique opaque name, defined in the individual messages.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    			s.assign(n.Case, eCase, false, 0)
    			s.assign(n.Itab, eItab, false, 0)
    			b = s.endBlock()
    			b.AddEdgeTo(merge)
    
    			// On a miss, call into the runtime to get the answer.
    			s.startBlock(cacheMiss)
    		}
    
    		r := s.rtcall(ir.Syms.InterfaceSwitch, true, []*types.Type{typs.Int, typs.BytePtr}, d, t)
    		s.assign(n.Case, r[0], false, 0)
    		s.assign(n.Itab, r[1], false, 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top