Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 120 for yield (0.59 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	// Note: even if pod name is a field, we have to use labels,
    	// because field selector doesn't support "IN" operator.
    	l, err := labels.NewRequirement("name", selection.In, names)
    	if err != nil {
    		panic("Labels requirement must validate successfully")
    	}
    	return storage.SelectionPredicate{
    		Label:    labels.Everything().Add(*l),
    		Field:    fields.Everything(),
    		GetAttrs: getPodAttrs,
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    	rulen, matchn int,
    ) (matchHTTPRoutes *OverlappingMatchValidationForHTTPRoute) {
    	// skip current match if no match field for current route
    	if match == nil {
    		return nil
    	}
    	// skip current match if no URI field
    	if match.Uri == nil {
    		return nil
    	}
    	// store all httproute with prefix match uri
    	tmpPrefix := match.Uri.GetPrefix()
    	if tmpPrefix != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // printing. Erroneous packages will have a non-empty ImportPath and
    // a non-nil Error field; other information may or may not be missing
    // (zeroed).
    //
    // The -export flag causes list to set the Export field to the name of a
    // file containing up-to-date export information for the given package,
    // and the BuildID field to the build ID of the compiled package.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    org.codehaus.plexus.classworlds.realm.ClassRealm) throws CompositionException; private java.util.List assignRequirementToF(Object, reflect.Field, org.codehaus.plexus.PlexusContainer, org.codehaus.plexus.component.repository.ComponentRequirement, org.codehaus.plexus.classworlds.realm.ClassRealm) throws CompositionException; private String getURLs(ClassLoader); protected reflect.Field findMatchingField(Object, org.codehaus.plexus.component.repository.ComponentDescriptor, org.codehaus.plexus.component.reposito...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

          metadata.is_list = 1;
          metadata.list_size = 0;
          metadata.total_size = -1;
    #define LIST_CASE(field, attr_type, ...)              \
      if (attr->list().field##_size() > 0) {              \
        metadata.type = attr_type;                        \
        metadata.list_size = attr->list().field##_size(); \
        __VA_ARGS__;                                      \
        break;                                            \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    org.codehaus.plexus.classworlds.realm.ClassRealm) throws CompositionException; private java.util.List assignRequirementToF(Object, reflect.Field, org.codehaus.plexus.PlexusContainer, org.codehaus.plexus.component.repository.ComponentRequirement, org.codehaus.plexus.classworlds.realm.ClassRealm) throws CompositionException; private String getURLs(ClassLoader); protected reflect.Field findMatchingField(Object, org.codehaus.plexus.component.repository.ComponentDescriptor, org.codehaus.plexus.component.reposito...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 233.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    // DS form for use in finding the size of the offset field in the instruction.
    // The size is needed when setting the offset value in the instruction
    // and when generating relocation for that field.
    // DS form instructions include: ld, ldu, lwa, std, stdu.  All other
    // loads and stores with an offset field are D form.  This function should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/validation/validation_test.go

    */
    
    package validation
    
    import (
    	"fmt"
    	"strings"
    	"testing"
    
    	"github.com/google/cel-go/cel"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/apimachinery/pkg/util/version"
    	plugincel "k8s.io/apiserver/pkg/admission/plugin/cel"
    	"k8s.io/apiserver/pkg/cel/environment"
    	"k8s.io/apiserver/pkg/cel/library"
    	"k8s.io/apiserver/pkg/features"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    			}
    
    			field := nodeSelector.NodeSelectorTerms[0].MatchFields[0]
    			if field.Key == metav1.ObjectNameField {
    				if field.Operator != v1.NodeSelectorOpIn {
    					t.Fatalf("the operation of hostname NodeAffinity is not %v", v1.NodeSelectorOpIn)
    				}
    
    				if len(field.Values) != 1 {
    					t.Fatalf("incorrect hostname in node affinity: expected 1, got %v", len(field.Values))
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

         * purposes, the "count" field, tracking the number of elements, serves as that volatile
         * variable ensuring visibility. This is convenient because this field needs to be read in many
         * read operations anyway:
         *
         * - All (unsynchronized) read operations must first read the "count" field, and should not look
         * at table entries if it is 0.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top