Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 126 for fieldsV1 (0.12 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    }
    
    // startSpec wraps the spec required to start a container, either a regular/init container
    // or an ephemeral container. Ephemeral containers contain all the fields of regular/init
    // containers, plus some additional fields. In both cases startSpec.container will be set.
    type startSpec struct {
    	container          *v1.Container
    	ephemeralContainer *v1.EphemeralContainer
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. src/strings/strings_test.go

    	{"1\xFF\u2000\xFF2\xFF \xFF", []string{"1\xFF", "\xFF2\xFF", "\xFF"}},
    	{faces, []string{faces}},
    }
    
    func TestFields(t *testing.T) {
    	for _, tt := range fieldstests {
    		a := Fields(tt.s)
    		if !eq(a, tt.a) {
    			t.Errorf("Fields(%q) = %v; want %v", tt.s, a, tt.a)
    			continue
    		}
    	}
    }
    
    var FieldsFuncTests = []FieldsTest{
    	{"", []string{}},
    	{"XX", []string{}},
    	{"XXhiXXX", []string{"hi"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

                 * don't invoke interruptTask.
                 */
                false);
          }
        }
      }
    
      // TODO(lukes): investigate using the @Contended annotation on these fields when jdk8 is
      // available.
      /**
       * This field encodes the current state of the future.
       *
       * <p>The valid values are:
       *
       * <ul>
       *   <li>{@code null} initial state, nothing has happened.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

                 * don't invoke interruptTask.
                 */
                false);
          }
        }
      }
    
      // TODO(lukes): investigate using the @Contended annotation on these fields when jdk8 is
      // available.
      /**
       * This field encodes the current state of the future.
       *
       * <p>The valid values are:
       *
       * <ul>
       *   <li>{@code null} initial state, nothing has happened.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  5. src/crypto/tls/tls_test.go

    			f.Set(reflect.ValueOf([]byte{'x'}))
    		case "mutex", "autoSessionTicketKeys", "sessionTicketKeys":
    			continue // these are unexported fields that are handled separately
    		default:
    			t.Errorf("all fields must be accounted for, but saw unknown field %q", fn)
    		}
    	}
    	// Set the unexported fields related to session ticket keys, which are copied with Clone().
    	c1.autoSessionTicketKeys = []ticketKey{c1.ticketKeyFromBytes(c1.SessionTicketKey)}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    	workFilePath string
    )
    
    type MainModuleSet struct {
    	// versions are the module.Version values of each of the main modules.
    	// For each of them, the Path fields are ordinary module paths and the Version
    	// fields are empty strings.
    	// versions is clipped (len=cap).
    	versions []module.Version
    
    	// modRoot maps each module in versions to its absolute filesystem path.
    	modRoot map[module.Version]string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      optional string name = 1;
    
      // namespace is the namespace of the referenced resource. Allows limiting
      // the search for params to a specific namespace. Applies to both `name` and
      // `selector` fields.
      //
      // A per-namespace parameter may be used by specifying a namespace-scoped
      // `paramKind` in the policy and leaving this field empty.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework.go

    func WithLogger(logger klog.Logger) Option {
    	return func(o *frameworkOptions) {
    		o.logger = &logger
    	}
    }
    
    // defaultFrameworkOptions are applied when no option corresponding to those fields exist.
    func defaultFrameworkOptions(stopCh <-chan struct{}) frameworkOptions {
    	return frameworkOptions{
    		metricsRecorder: metrics.NewMetricsAsyncRecorder(1000, time.Second, stopCh),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  9. cmd/api-errors.go

    			return apiErr
    		}
    	}
    	return apiErr
    }
    
    func (e errorCodeMap) ToAPIErr(errCode APIErrorCode) APIError {
    	return e.ToAPIErrWithErr(errCode, nil)
    }
    
    // error code to APIError structure, these fields carry respective
    // descriptions for all the error responses.
    var errorCodes = errorCodeMap{
    	ErrInvalidCopyDest: {
    		Code:           "InvalidRequest",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  10. pilot/pkg/model/virtualservice_test.go

    			got := hasConflict(tc.root, tc.leaf)
    			if got != tc.expected {
    				t.Errorf("got %v, expected %v", got, tc.expected)
    			}
    		})
    	}
    }
    
    // Note: this is to prevent missing merge new added HTTPRoute fields
    func TestFuzzMergeHttpRoute(t *testing.T) {
    	f := fuzz.New().NilChance(0.5).NumElements(0, 1).Funcs(
    		func(r *networking.HTTPRoute, c fuzz.Continue) {
    			c.FuzzNoCustom(r)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top