Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 318 for impacted (0.18 sec)

  1. pkg/scheduler/framework/cycle_state.go

    type StateData interface {
    	// Clone is an interface to make a copy of StateData. For performance reasons,
    	// clone should make shallow copies for members (e.g., slices or maps) that are not
    	// impacted by PreFilter's optional AddPod/RemovePod methods.
    	Clone() StateData
    }
    
    // StateKey is the type of keys stored in CycleState.
    type StateKey string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 06:48:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/quota/v1/interfaces.go

    	Constraints(required []corev1.ResourceName, item runtime.Object) error
    	// GroupResource returns the groupResource that this object knows how to evaluate
    	GroupResource() schema.GroupResource
    	// Handles determines if quota could be impacted by the specified attribute.
    	// If true, admission control must perform quota processing for the operation, otherwise it is safe to ignore quota.
    	Handles(operation admission.Attributes) bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 30 21:02:09 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/nodeports/node_ports.go

    )
    
    type preFilterState []*v1.ContainerPort
    
    // Clone the prefilter state.
    func (s preFilterState) Clone() framework.StateData {
    	// The state is not impacted by adding/removing existing pods, hence we don't need to make a deep copy.
    	return s
    }
    
    // Name returns name of the plugin. It is used in logs, etc.
    func (pl *NodePorts) Name() string {
    	return Name
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 10:53:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. releasenotes/notes/gogo-protobuf.yaml

        to using the [golang/protobuf](https://github.com/golang/protobuf) library for API types.
        
        This change does not have any impact on typical Istio users, but rather impacts users importing Istio as a Go library.
        
        For these users, upgrading the Istio libraries will likely cause compiliation issues. These issues are typically simple to address,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 25 00:08:22 UTC 2022
    - 775 bytes
    - Viewed (0)
  5. test/fixedbugs/issue5957.dir/c.go

    package p
    
    import (
    	"./a" // ERROR "imported and not used: \x22test/a\x22 as surprise|imported and not used: surprise|\x22test/a\x22 imported as surprise and not used"
    	"./b" // ERROR "imported and not used: \x22test/b\x22 as surprise2|imported and not used: surprise2|\x22test/b\x22 imported as surprise2 and not used"
    	b "./b" // ERROR "imported and not used: \x22test/b\x22$|imported and not used: surprise2|\x22test/b\x22 imported and not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 762 bytes
    - Viewed (0)
  6. test/import1.go

    import bufio "os"	// ERROR "redeclared|redefinition|incompatible" "imported and not used|imported as bufio and not used"
    
    import (
    	"fmt"	// ERROR "previous|not used"
    	fmt "math"	// ERROR "redeclared|redefinition|incompatible" "imported and not used: \x22math\x22 as fmt|imported as fmt and not used"
    	. "math"	// GC_ERROR "imported and not used: \x22math\x22$|imported and not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 703 bytes
    - Viewed (0)
  7. test/import4.dir/import4.go

    // Verify that various kinds of "imported and not used"
    // errors are caught by the compiler.
    // Does not compile.
    
    package main
    
    // standard
    import "fmt"	// ERROR "imported and not used.*fmt|\x22fmt\x22 imported and not used"
    
    // renamed
    import X "math"	// ERROR "imported and not used.*math|\x22math\x22 imported as X and not used"
    
    // import dot
    import . "bufio"	// ERROR "imported and not used.*bufio|imported and not used"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 877 bytes
    - Viewed (0)
  8. test/fixedbugs/issue10700.dir/test.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "./other"
    
    type Imported interface {
    	Do()
    }
    
    type HasAMethod struct {
    	x int
    }
    
    func (me *HasAMethod) Do() {
    	println(me.x)
    }
    
    func InMyCode(x *Imported, y *HasAMethod, z *other.Exported) {
    	x.Do() // ERROR "x\.Do undefined \(type \*Imported is pointer to interface, not interface\)|type that is pointer to interface"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 10 18:34:40 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  9. test/fixedbugs/issue20298.go

    	"fmt"         // ERROR "imported and not used"
    	"io"          // ERROR "imported and not used"
    	"io/ioutil"   // ERROR "imported and not used"
    	"log"         // ERROR "imported and not used"
    	"math"        // ERROR "imported and not used"
    	"math/big"    // ERROR "imported and not used" "too many errors"
    	"math/bits"
    	"net"
    	"net/http"
    	"os"
    	"path"
    	"path/filepath"
    	"regexp"
    	"strings"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 21:14:56 UTC 2017
    - 984 bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/importdecl0/importdecl0a.go

    	// reflect defines a type "flag" which shows up in the gc export data
    	"reflect"
    	. /* ERROR "imported and not used" */ "reflect"
    )
    
    import "math" /* ERROR "imported and not used" */
    import m /* ERROR "imported as m and not used" */ "math"
    import _ "math"
    
    import (
    	"math/big" /* ERROR "imported and not used" */
    	b /* ERROR "imported as b and not used" */ "math/big"
    	_ "math/big"
    )
    
    import "fmt"
    import f1 "fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top