Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,227 for STARTING (0.11 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/httpresponse/httpresponse.go

    		if !isHTTPFuncOrMethodOnClient(pass.TypesInfo, call) {
    			return true // the function call is not related to this check.
    		}
    
    		// Find the innermost containing block, and get the list
    		// of statements starting with the one containing call.
    		stmts, ncalls := restOfBlock(stack)
    		if len(stmts) < 2 {
    			// The call to the http function is the last statement of the block.
    			return true
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/plugin/v1beta1/server.go

    		socketName: name,
    		socketDir:  dir,
    		rhandler:   rh,
    		chandler:   ch,
    		clients:    make(map[string]Client),
    	}
    
    	return s, nil
    }
    
    func (s *server) Start() error {
    	klog.V(2).InfoS("Starting device plugin registration server")
    
    	if err := os.MkdirAll(s.socketDir, 0750); err != nil {
    		klog.ErrorS(err, "Failed to create the device plugin socket directory", "directory", s.socketDir)
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. api/README

    go1.txt (and similarly named files) are frozen once a version has been
    shipped. Each file adds new lines but does not remove any.
    
    except.txt lists features that may disappear without breaking true
    compatibility.
    
    Starting with go1.19.txt, each API feature line must end in "#nnnnn"
    giving the GitHub issue number of the proposal issue that accepted
    the new API. This helps with our end-of-cycle audit of new APIs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. pkg/kubelet/events/event.go

    	NodeNotReady                         = "NodeNotReady"
    	NodeSchedulable                      = "NodeSchedulable"
    	NodeNotSchedulable                   = "NodeNotSchedulable"
    	StartingKubelet                      = "Starting"
    	KubeletSetupFailed                   = "KubeletSetupFailed"
    	FailedAttachVolume                   = "FailedAttachVolume"
    	FailedMountVolume                    = "FailedMount"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/dataFlowInfoProvider/AbstractExitPointSnapshotTest.kt

            var candidate = PsiTreeUtil.findElementOfClassAtOffset(mainFile, textRange.startOffset, KtExpression::class.java, true)
                ?: error("Cannot find a starting element in range $textRange")
    
            while (true) {
                val parent = candidate.parent
                if (parent is KtExpression && parent.textRange in textRange && parent.startOffset == candidate.startOffset) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJvmVersionDetector.java

            if(parentFolder == null || !parentFolder.exists()) {
                Exception cause = new NoSuchFileException(javaCommand);
                throw new ExecException("A problem occurred starting process 'command '" + javaCommand + "''", cause);
            }
            return getVersionFromJavaHome(parentFolder.getParentFile());
        }
    
        private int getVersionFromJavaHome(File javaHome) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonConnector.java

            ProgressLogger progressLogger = progressLoggerFactory.newOperation(DefaultDaemonConnector.class)
                .start("Starting Gradle Daemon", "Starting Daemon");
            final DaemonStartupInfo startupInfo = daemonStarter.startDaemon(singleRun);
            LOGGER.debug("Started Gradle daemon {}", startupInfo);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/bootstrap/DaemonOutputConsumerTest.groovy

        }
    
        def "connecting streams is required initially"() {
            expect:
            illegalStateReportedWhen { consumer.start() }
            illegalStateReportedWhen { consumer.processOutput }
        }
    
        def "starting is required"() {
            when:
            consumer.connectStreams(process(""), "cool process", executor)
    
            then:
            illegalStateReportedWhen { consumer.processOutput }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/Environment.java

        /**
         * Common interface for tracked access to system properties and environment variables.
         */
        interface Properties {
            /**
             * Selects the properties that have a name longer than and starting with the given prefix.
             *
             * The returned map keys still contain the prefix.
             *
             * @return a map containing only the properties whose name start with the given prefix.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. src/regexp/backtrack.go

    	if re.prog.Inst[pc].Op != syntax.InstFail && (arg || b.shouldVisit(pc, pos)) {
    		b.jobs = append(b.jobs, job{pc: pc, arg: arg, pos: pos})
    	}
    }
    
    // tryBacktrack runs a backtracking search starting at pos.
    func (re *Regexp) tryBacktrack(b *bitState, i input, pc uint32, pos int) bool {
    	longest := re.longest
    
    	b.push(re, pc, pos, false)
    	for len(b.jobs) > 0 {
    		l := len(b.jobs) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top