Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 232 for Types (0.18 sec)

  1. pkg/scheduler/framework/runtime/framework.go

    func (f *frameworkImpl) GetWaitingPod(uid types.UID) framework.WaitingPod {
    	if wp := f.waitingPods.get(uid); wp != nil {
    		return wp
    	}
    	return nil // Returning nil instead of *waitingPod(nil).
    }
    
    // RejectWaitingPod rejects a WaitingPod given its UID.
    // The returned value indicates if the given pod is waiting or not.
    func (f *frameworkImpl) RejectWaitingPod(uid types.UID) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/strategy_test.go

    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/apiserver/pkg/warning"
    	"k8s.io/client-go/tools/cache"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. pilot/pkg/model/virtualservice_test.go

    // limitations under the License.
    
    package model
    
    import (
    	"fmt"
    	"reflect"
    	"testing"
    	"time"
    
    	fuzz "github.com/google/gofuzz"
    	"google.golang.org/protobuf/types/known/durationpb"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // your pod is eligible to be scheduled based on labels on pods that are
      // already running on the node rather than based on labels on nodes.
      // There are currently two types of anti-affinity:
      //    "requiredDuringSchedulingIgnoredDuringExecution"
      //    "preferredDuringSchedulingIgnoredDuringExecution"
      // which denote “hard” vs. “soft” requirements, you can define your values
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. src/encoding/xml/marshal_test.go

    	UnmarshalOnly  bool
    	UnmarshalError string
    }{
    	// Test nil marshals to nothing
    	{Value: nil, ExpectXML: ``, MarshalOnly: true},
    	{Value: nilStruct, ExpectXML: ``, MarshalOnly: true},
    
    	// Test value types
    	{Value: &Plain{true}, ExpectXML: `<Plain><V>true</V></Plain>`},
    	{Value: &Plain{false}, ExpectXML: `<Plain><V>false</V></Plain>`},
    	{Value: &Plain{int(42)}, ExpectXML: `<Plain><V>42</V></Plain>`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    		}
    		if e != ERROR_INSUFFICIENT_BUFFER {
    			return "", "", 0, e
    		}
    		if n <= uint32(len(b)) {
    			return "", "", 0, e
    		}
    	}
    }
    
    // Various types of pre-specified SIDs that can be synthesized and compared at runtime.
    type WELL_KNOWN_SID_TYPE uint32
    
    const (
    	WinNullSid                                    = 0
    	WinWorldSid                                   = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	"time"
    
    	"github.com/google/go-cmp/cmp"
    
    	v1 "k8s.io/api/core/v1"
    	storagev1 "k8s.io/api/storage/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apimachinery/pkg/watch"
    	"k8s.io/client-go/informers"
    	coreinformers "k8s.io/client-go/informers/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2.go

    //         ├── legacy
    //         │   └── part.1
    //         └── xl.meta
    
    // VersionType defines the type of journal type of the current entry.
    type VersionType uint8
    
    // List of different types of journal type
    const (
    	invalidVersionType VersionType = 0
    	ObjectType         VersionType = 1
    	DeleteType         VersionType = 2
    	LegacyType         VersionType = 3
    	lastVersionType    VersionType = 4
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            conf.attributes.getAttribute(flavor).name == 'free'
            conf.attributes.getAttribute(buildType).name == 'release'
        }
    
        def "cannot define two attributes with the same name but different types"() {
            def conf = conf()
            def flavor = Attribute.of('flavor', Flavor)
    
            when:
            conf.getAttributes().attribute(flavor, new FlavorImpl(name: 'free'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

    from tensorflow.python.saved_model import signature_def_utils_impl
    from tensorflow.python.trackable import asset
    from tensorflow.python.trackable import autotrackable
    from tensorflow.python.types import core
    
    # Type aliases for supported attribute types.
    _AttrValType = Union[List[int], bool, str, None]
    
    
    class QuantizedModelTest(test.TestCase, parameterized.TestCase):
      """Base test class for TF-quant tests."""
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top