Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for Investigate (0.24 sec)

  1. pkg/controller/volume/attachdetach/statusupdater/node_status_updater.go

    	nodeLister         corelisters.NodeLister
    	actualStateOfWorld cache.ActualStateOfWorld
    }
    
    func (nsu *nodeStatusUpdater) UpdateNodeStatuses(logger klog.Logger) error {
    	var nodeIssues int
    	// TODO: investigate right behavior if nodeName is empty
    	// kubernetes/kubernetes/issues/37777
    	nodesToUpdate := nsu.actualStateOfWorld.GetVolumesToReportAttached(logger)
    	for nodeName, attachedVolumes := range nodesToUpdate {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. code_of_conduct.md

    ## Enforcement
    
    Instances of abusive, harassing, or otherwise unacceptable behavior may be
    reported by contacting the project team at ******@****.***. The project team
    will review and investigate all complaints, and will respond in a way that it deems
    appropriate to the circumstances. The project team is obligated to maintain
    confidentiality with regard to the reporter of an incident.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 20 18:38:58 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

        //
        // p4 ---> p3 ---> p2 ---> p1 ---> p0 --> super model
        //
        // ----------------------------------------------------------------------
    
        @Test
        @DisabledOnOs(OS.WINDOWS) // need to investigate why it fails on windows
        void testProjectInheritance() throws Exception {
            File localRepo = getLocalRepositoryPath();
    
            System.out.println("Local repository is at: " + localRepo.getAbsolutePath());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. docs/en/docs/history-design-future.md

    I have been creating APIs with complex requirements for several years (Machine Learning, distributed systems, asynchronous jobs, NoSQL databases, etc), leading several teams of developers.
    
    As part of that, I needed to investigate, test and use many alternatives.
    
    The history of **FastAPI** is in great part the history of its predecessors.
    
    As said in the section [Alternatives](alternatives.md){.internal-link target=_blank}:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/ExternalScriptExecutionIntegrationTest.groovy

            testFile('build.gradle') << ''' assert ['child'] == subprojects*.name '''
    
            inTestDirectory().withTasks("help").run()
        }
    
        @Test
        @ToBeFixedForIsolatedProjects(because = "Investigate")
        void canExecuteExternalScriptFromInitScript() {
            TestFile initScript = testFile('init.gradle') << ''' apply { from 'other.gradle' } '''
            testFile('other.gradle') << '''
                projectsEvaluated {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4SuitesIntegrationTest.groovy

                // JUnit3 suite teardown output does not seem to get captured with Vintage (even with 5.9.0)
                // TODO need to investigate whether this is a bug in JUnit or in Gradle testing or what
                //result.testClass("org.gradle.SomeSuite").assertStdout(containsString("stdout in TestSetup#teardown"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top