Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 147 for Investigate (0.16 sec)

  1. src/cmd/compile/internal/types2/instantiate.go

    	case *Alias:
    		// TODO(gri) is this correct?
    		assert(expanding == nil) // Alias instances cannot be reached from Named types
    
    		tparams := orig.TypeParams()
    		// TODO(gri) investigate if this is needed (type argument and parameter count seem to be correct here)
    		if !check.validateTArgLen(pos, orig.String(), tparams.Len(), len(targs)) {
    			return Typ[Invalid]
    		}
    		if tparams.Len() == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.util.internal.ToBeImplemented
    import spock.lang.Issue
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class IncrementalBuildIntegrationTest extends AbstractIntegrationSpec implements ValidationMessageChecker, DirectoryBuildCacheFixture {
    
        def setup() {
            expectReindentedValidationMessage()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionIntegrationTest.groovy

    package org.gradle.api.tasks.options
    
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import spock.lang.Issue
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class TaskOptionIntegrationTest extends AbstractOptionIntegrationSpec {
    
        def "can evaluate option value of type #optionType when #description for Java task on command line"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. src/go/types/instantiate.go

    	case *Alias:
    		// TODO(gri) is this correct?
    		assert(expanding == nil) // Alias instances cannot be reached from Named types
    
    		tparams := orig.TypeParams()
    		// TODO(gri) investigate if this is needed (type argument and parameter count seem to be correct here)
    		if !check.validateTArgLen(pos, orig.String(), tparams.Len(), len(targs)) {
    			return Typ[Invalid]
    		}
    		if tparams.Len() == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. mvnw.cmd

           "If('%WRAPPER_SHA_256_SUM%' -ne $hash){"^
           "  Write-Output 'Error: Failed to validate Maven wrapper SHA-256, your Maven wrapper might be compromised.';"^
           "  Write-Output 'Investigate or delete %WRAPPER_JAR% to attempt a clean download.';"^
           "  Write-Output 'If you updated your Maven version, you need to update the specified wrapperSha256Sum property.';"^
           "  exit 1;"^
           "}"^
           "}"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/plugin/ScriptPluginClassLoadingIntegrationTest.groovy

            failure.assertHasFileName("Script '${file("script2.gradle").absolutePath}'")
            failure.assertThatCause(containsText("unable to resolve class Foo"))
        }
    
        @ToBeFixedForIsolatedProjects(because = "Investigate")
        def "script plugin buildscript does not affect client"() {
            given:
            def jar = file("plugin.jar")
            pluginBuilder.addPlugin("project.task('hello')")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. pkg/registry/core/service/allocator/storage/storage.go

    	errorUnableToAllocate = errors.New("unable to allocate")
    )
    
    // Etcd exposes a service.Allocator
    // TODO: allow multiple allocations to be tried at once
    // TODO: subdivide the keyspace to reduce conflicts
    // TODO: investigate issuing a CAS without reading first
    type Etcd struct {
    	lock sync.Mutex
    
    	alloc   allocator.Snapshottable
    	storage storage.Interface
    	last    string
    
    	baseKey  string
    	resource schema.GroupResource
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. src/go/ast/walk.go

    type Visitor interface {
    	Visit(node Node) (w Visitor)
    }
    
    func walkList[N Node](v Visitor, list []N) {
    	for _, node := range list {
    		Walk(v, node)
    	}
    }
    
    // TODO(gri): Investigate if providing a closure to Walk leads to
    // simpler use (and may help eliminate Inspect in turn).
    
    // Walk traverses an AST in depth-first order: It starts by calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. src/go/types/methodset.go

    		// (!indirect && f.hasPtrRecv()). A 2nd method on the same level may be in the method
    		// set and may not collide with the first one, thus leading to a false positive.
    		// Is that possible? Investigate.
    		if _, found := s[key]; !found && (indirect || !f.hasPtrRecv()) {
    			s[key] = &Selection{MethodVal, nil, f, index, indirect}
    			return s
    		}
    	}
    	s[key] = nil // collision
    	return s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. cluster/gce/windows/smoke-test.sh

        cleanup_deployments
        echo "Failing output: $(cat $output_file)"
        echo "FAILED: ${FUNCNAME[0]}"
        echo "This test seems to be flaky. TODO(pjh): investigate."
        exit 1
      fi
    }
    
    function test_linux_pod_to_k8s_service {
      echo "TEST: ${FUNCNAME[0]}"
      local linux_command_pod
      linux_command_pod="$(get_linux_command_pod_name)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top