Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 76 for stops (0.08 sec)

  1. src/runtime/mprof.go

    		}
    	}
    
    	saveBlockEventStack(cycles, rate, mp.profStack[:nstk], which)
    	releasem(mp)
    }
    
    // lockTimer assists with profiling contention on runtime-internal locks.
    //
    // There are several steps between the time that an M experiences contention and
    // when that contention may be added to the profile. This comes from our
    // constraints: We need to keep the critical section of each lock small,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    						default:
    							if state.loggingLevel > 1 {
    								state.logf("at %v: load with unexpected source op: %v (%v)\n", v, a.Op, a)
    							}
    						}
    					}
    					// Update valueNames with the source so that later steps
    					// don't need special handling.
    					if source != nil && k == 0 {
    						// limit to k == 0 otherwise there are duplicates.
    						slots = append(slots, state.valueNames[source.ID]...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    The goal is to instruct your build on how to map the `com.android.application` plugin identifier to a resolvable artifact.
    This is done in two steps:
    
    * Add a plugin repository to the build's settings script
    * Map the plugin ID to the corresponding artifact coordinates
    
    You accomplish both steps by configuring a `pluginManagement {}` block in the build's settings script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/time/time.go

    // readings. If either t or u contains no monotonic clock reading, these
    // operations fall back to using the wall clock readings.
    //
    // On some systems the monotonic clock will stop if the computer goes to sleep.
    // On such a system, t.Sub(u) may not accurately reflect the actual
    // time that passed between t and u. The same applies to other functions and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

      package for one more release, but in you must adapt your scripts to install `crictl` manually from
      https://github.com/kubernetes-sigs/cri-tools/releases or a different location.
      
      The `kubeadm` package will stop depending on the `cri-tools` package in Kubernetes 1.32, which means that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // exprList parses a sequence of expressions up to a terminating character.
    func (st *state) exprList(stop byte) AST {
    	if len(st.str) > 0 && st.str[0] == stop {
    		st.advance(1)
    		return &ExprList{Exprs: nil}
    	}
    
    	var exprs []AST
    	for {
    		e := st.expression()
    		exprs = append(exprs, e)
    		if len(st.str) > 0 && st.str[0] == stop {
    			st.advance(1)
    			break
    		}
    	}
    	return &ExprList{Exprs: exprs}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			// be notified about this change.
    			clearAllocation := state.informationsForClaim[index].structuredParameters
    
    			// Before we tell a driver to deallocate a claim, we
    			// have to stop telling it to allocate. Otherwise,
    			// depending on timing, it will deallocate the claim,
    			// see a PodSchedulingContext with selected node, and
    			// allocate again for that same node.
    			if !clearAllocation &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    				}
    			}
    		}
    		if len(newSucceededIndexes)+len(uncountedStatus.Succeeded)+len(uncountedStatus.Failed) >= MaxUncountedPods {
    			// The controller added enough Pods already to .status.uncountedTerminatedPods
    			// We stop counting pods and removing finalizers here to:
    			// 1. Ensure that the UIDs representation are under 20 KB.
    			// 2. Cap the number of finalizer removals so that syncing of big Jobs
    			//    doesn't starve smaller ones.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         * @param calledSymbol The symbol referenced by the qualified access expression
         * @param expressionInScope An expression under the same scope as the shortening target expression
         *
         * The decision has two steps:
         *  1. Collect all candidates matching [firQualifiedAccess]
         *  - We use `AllCandidatesResolver(shorteningContext.analysisSession.useSiteSession).getAllCandidates( .. fake FIR .. )`. See
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	assert.NoError(t, result.Error())
    	verifyContainerStatuses(t, fakeRuntime, expected, "init container still running; do nothing")
    
    	// 3. should create all app containers because init container finished.
    	// Stop init container instance 0.
    	sandboxIDs, err := m.getSandboxIDByPodUID(ctx, pod.UID, nil)
    	require.NoError(t, err)
    	sandboxID := sandboxIDs[0]
    	initID0, err := fakeRuntime.GetContainerID(sandboxID, initContainers[0].Name, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top