Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 90 for Yield (0.05 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// InitContainersToStart keeps a list of indexes for the init containers to
    	// start, where the index is the index of the specific init container in the
    	// pod spec (pod.Spec.InitContainers).
    	// NOTE: This is a field for SidecarContainers feature. Either this or
    	// NextInitContainerToStart will be set.
    	InitContainersToStart []int
    	// ContainersToStart keeps a list of indexes for the containers to start,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // scheduled to nodes with matching taints. Each component can overwrite
      // these default values by adding its tolerations block in the relevant section below
      // and setting the desired values.
      // Configure this field in case that all pods of Istio control plane are expected to
      // be scheduled to particular nodes with specified taints.
      repeated k8s.io.api.core.v1.Toleration defaultTolerations = 55 [deprecated = true];
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    	// arena which hasn't been used yet and is therefore already
    	// zero. zeroedBase is relative to the arena base.
    	// Increases monotonically until it hits heapArenaBytes.
    	//
    	// This field is sufficient to determine if an allocation
    	// needs to be zeroed because the page allocator follows an
    	// address-ordered first-fit policy.
    	//
    	// Read atomically and written with an atomic CAS.
    	zeroedBase uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

         * {@link #versionProvidedByAncestors(DependencyState)} is true for that module.
         *
         * The result of this method is stored in the 'ancestorsStrictVersionConstraints' field for consumption by downstream nodes.
         *
         * Since the most common case it that there is only one incoming edge, this case is handled first and, if possible,
         * the method returns early.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    	dynid       map[Sym]int32       // stores Dynid for symbol
    
    	relocVariant map[relocId]sym.RelocVariant // stores variant relocs
    
    	// Used to implement field tracking; created during deadcode if
    	// field tracking is enabled. Reachparent[K] contains the index of
    	// the symbol that triggered the marking of symbol K as live.
    	Reachparent []Sym
    
    	// CgoExports records cgo-exported symbols by SymName.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		}
    		st.failEarlier(fmt.Sprintf("template index out of range (%d >= %d)", n, len(template.Args)), st.off-off)
    	}
    
    	return &TemplateParam{Index: n, Template: template}
    }
    
    // setTemplate sets the Template field of any TemplateParam's in a.
    // This handles the forward referencing template parameters found in
    // cast operators.
    func (st *state) setTemplate(a AST, tmpl *Template) {
    	seen := make(map[AST]bool)
    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. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVWreg (MOVDconst [c])) => (MOVDconst [int64(int32(c))])
    (MOVWZreg (MOVDconst [c])) => (MOVDconst [int64(uint32(c))])
    
    // Implement clrsldi and clrslwi extended mnemonics as described in
    // ISA 3.0 section C.8. AuxInt field contains values needed for
    // the instructions, packed together since there is only one available.
    (SLDconst [c] z:(MOVBZreg x)) && c < 8 && z.Uses == 1 => (CLRLSLDI [newPPC64ShiftAuxInt(c,56,63,64)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    			align := uintptr(16)
    			if typ != nil {
    				// TODO(austin): This should be just
    				//   align = uintptr(typ.align)
    				// but that's only 4 on 32-bit platforms,
    				// even if there's a uint64 field in typ (see #599).
    				// This causes 64-bit atomic accesses to panic.
    				// Hence, we use stricter alignment that matches
    				// the normal allocator better.
    				if size&7 == 0 {
    					align = 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    	for _, m := range ms {
    		if m.Version != "" {
    			panic("mainModulesCalled with module.Version with non empty Version field: " + fmt.Sprintf("%#v", m))
    		}
    	}
    	modRootContainingCWD := findModuleRoot(base.Cwd())
    	mainModules := &MainModuleSet{
    		versions:        slices.Clip(ms),
    		inGorootSrc:     map[module.Version]bool{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    	//
    	// Errors encountered in the module graph will still be reported.
    	//
    	// The caller may retrieve the silenced package errors using the Lookup
    	// function, and matching errors are still populated in the Errs field of the
    	// associated search.Match.)
    	SilencePackageErrors bool
    
    	// SilenceMissingStdImports indicates that LoadPackages should not print
    	// errors or terminate the process if an imported package is missing, and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top