Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,291 for statDep (0.16 sec)

  1. src/runtime/metrics.go

    	}
    	d.compute = metricReader(read).compute
    	metrics[name] = d
    	metricsUnlock()
    }
    
    // statDep is a dependency on a group of statistics
    // that a metric might have.
    type statDep uint
    
    const (
    	heapStatsDep statDep = iota // corresponds to heapStatsAggregate
    	sysStatsDep                 // corresponds to sysStatsAggregate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. src/encoding/json/scanner.go

    func state1(s *scanner, c byte) int {
    	if '0' <= c && c <= '9' {
    		s.step = state1
    		return scanContinue
    	}
    	return state0(s, c)
    }
    
    // state0 is the state after reading `0` during a number.
    func state0(s *scanner, c byte) int {
    	if c == '.' {
    		s.step = stateDot
    		return scanContinue
    	}
    	if c == 'e' || c == 'E' {
    		s.step = stateE
    		return scanContinue
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/rangefunc/rewrite.go

    becomes
    
    	{
    		var #next int
    		var #state1 = abi.RF_READY
    		f(func() { // 1,2
    			if #state1 != abi.RF_READY { runtime.panicrangestate(#state1) }
    			#state1 = abi.RF_PANIC
    			var #state2 = abi.RF_READY
    			g(func() { // 3,4
    				if #state2 != abi.RF_READY { runtime.panicrangestate(#state2) }
    				#state2 = abi.RF_PANIC
    				var #state3 = abi.RF_READY
    				h(func() { // 5,6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. test/fixedbugs/issue4932.dir/state2.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package state2
    
    import "./state"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:42:03 UTC 2013
    - 216 bytes
    - Viewed (0)
  5. src/cmd/go/internal/script/state.go

    	"context"
    	"fmt"
    	"internal/txtar"
    	"io"
    	"io/fs"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"strings"
    )
    
    // A State encapsulates the current state of a running script engine,
    // including the script environment and any running background commands.
    type State struct {
    	engine *Engine // the engine currently executing the script, if any
    
    	ctx    context.Context
    	cancel context.CancelFunc
    	file   string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/state/state.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package state
    
    import (
    	"k8s.io/utils/cpuset"
    )
    
    // ContainerCPUAssignments type used in cpu manager state
    type ContainerCPUAssignments map[string]map[string]cpuset.CPUSet
    
    // Clone returns a copy of ContainerCPUAssignments
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 00:59:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/state/state.go

    			clone[pod][container] = append([]Block{}, blocks...)
    		}
    	}
    	return clone
    }
    
    // Reader interface used to read current memory/pod assignment state
    type Reader interface {
    	// GetMachineState returns Memory Map stored in the State
    	GetMachineState() NUMANodeMap
    	// GetMemoryBlocks returns memory assignments of a container
    	GetMemoryBlocks(podUID string, containerName string) []Block
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 08 23:10:00 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  8. pilot/pkg/status/distribution/state.go

    			delete(fractions, staleReporter)
    		}
    		c.CurrentState[key] = fractions
    	}
    }
    
    func (c *Controller) queueWriteStatus(config status.Resource, state Progress) {
    	c.workers.EnqueueStatusUpdateResource(state, config)
    }
    
    func (c *Controller) configDeleted(res config.Config) {
    	r := status.ResourceFromModelConfig(res)
    	c.workers.Delete(r)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/SummarizingChangeContainerTest.groovy

        def state1 = Mock(ChangeContainer)
        def state2 = Mock(ChangeContainer)
        def state = new SummarizingChangeContainer(state1, state2)
        def visitor = new CollectingChangeVisitor()
    
        def "looks for changes in all delegate change sets"() {
            when:
            state.accept(visitor)
    
            then:
            1 * state1.accept(_) >> true
            1 * state2.accept(_) >> true
            0 * _
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectStateRegistryTest.groovy

                            assertTrue state1.hasMutableState()
                            assertTrue state2.hasMutableState()
                        }
                        state1.applyToMutableState {
                            assertTrue state1.hasMutableState()
                            assertTrue state2.hasMutableState()
                        }
                        assert state1.hasMutableState()
                        assert state2.hasMutableState()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 24.6K bytes
    - Viewed (0)
Back to top