Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 403 for stage1 (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. .github/stale.yml

    # Number of days of inactivity before an Issue or Pull Request becomes stale
    daysUntilStale: 30
    
    # Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
    # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
    daysUntilClose: 15
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 24 04:36:59 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. test/fixedbugs/issue4932.dir/state.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 state
    
    import "./foo"
    
    func Public() {
    	var s Settings
    	s.op()
    }
    
    type State struct{}
    
    func (s *State) x(*Settings) {}
    
    type Settings struct{}
    
    func (c *Settings) x() {
    	run([]foo.Op{{}})
    }
    
    func run([]foo.Op) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:42:03 UTC 2013
    - 434 bytes
    - Viewed (0)
  6. pkg/kubelet/status/state/state.go

    	SetResizeStatus(PodResizeStatus) error
    	Delete(podUID string, containerName string) error
    	ClearState() error
    }
    
    // State interface provides methods for tracking and setting pod resource allocation
    type State interface {
    	Reader
    	writer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. .github/workflows/stale.yml

    name: "Stale"
    on:
      schedule:
      - cron: "0 2 * * *"
    
    permissions:
      contents: read
    
    jobs:
      stale:
        permissions:
          issues: write  # for actions/stale to close stale issues
          pull-requests: write  # for actions/stale to close stale PRs
        runs-on: ubuntu-latest
        env:
          ACTIONS_STEP_DEBUG: true
        steps:
        - name: Close Stale Issues
          uses: actions/stale@v8
          with:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 02:27:05 UTC 2023
    - 972 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)
    }
    
    func boolToConditionStatus(b bool) string {
    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. 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)
  10. .github/workflows/stale-pr.yml

              # This workflow should touch no issues, so times are set to -1
              # (see actions/stale documentation for the behavior)
              days-before-issue-stale: -1
              stale-issue-label: stale
              stale-issue-message: >
                **BUG!** This issue should not be marked stale by the "stale" workflow.
                Please report it to @gradle/bt-support team
              days-before-issue-close: -1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top