Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for Field3 (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	Reserved1         uint32
    	FileName          [MAX_PATH]uint16
    	AlternateFileName [14]uint16
    
    	// The Microsoft documentation for this struct¹ describes three additional
    	// fields: dwFileType, dwCreatorType, and wFinderFlags. However, those fields
    	// are empirically only present in the macOS port of the Win32 API,² and thus
    	// not needed for binaries built for Windows.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. 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)
  4. src/crypto/x509/x509_test.go

    				}
    			} else {
    				// When we hack our custom Subject in the test cases above,
    				// we don't set the additional fields (such as Names) in the
    				// hacked issuer. Round-trip a parsing of pkix.Name so that
    				// we add these missing fields for the comparison.
    				issuerRDN := tc.issuer.Subject.ToRDNSequence()
    				var caIssuer pkix.Name
    				caIssuer.FillFromRDNSequence(&issuerRDN)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    description. Overview Package Class Use Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES All Classes SUMMARY: NESTED | FIELD | CONSTR | METHOD DETAIL: FIELD | CONSTR | METHOD org/hamcrest/BaseMatcher.html Overview Package Class Use Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES All Classes SUMMARY: NESTED | FIELD | CONSTR | METHOD DETAIL: FIELD | CONSTR | METHOD org.hamcrest Class BaseMatcher<T> java.lang.Object org.hamcrest.BaseMatcher<T> All Implemented Interfaces: Matcher<T>,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          llvm::SmallVector<const FieldTy*, 4> fields;
          for (auto& field : dict.fields()) {
            fields.push_back(&field);
          }
          llvm::sort(fields, [](const FieldTy* a, const FieldTy* b) {
            return a->first < b->first;
          });
          for (auto& field : fields) {
            current_index_path_.push_back(builder_.getStringAttr(field->first));
            RecursivelyFindLeaves(field->second);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    )
    
    func alwaysReady() bool { return true }
    
    func fakeGetPodsAssignedToNode(c *fake.Clientset) func(string) ([]*v1.Pod, error) {
    	return func(nodeName string) ([]*v1.Pod, error) {
    		selector := fields.SelectorFromSet(fields.Set{"spec.nodeName": nodeName})
    		pods, err := c.CoreV1().Pods(v1.NamespaceAll).List(context.TODO(), metav1.ListOptions{
    			FieldSelector: selector.String(),
    			LabelSelector: labels.Everything().String(),
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  8. pkg/registry/batch/job/strategy_test.go

    				Status: batch.JobStatus{
    					FailedIndexes:    ptr.To("0,2"),
    					CompletedIndexes: "2-4",
    				},
    			},
    			wantErrs: field.ErrorList{
    				{Type: field.ErrorTypeInvalid, Field: "status.failedIndexes"},
    			},
    		},
    		"failedIndexes overlap with completedIndexes, unrelated field change": {
    			enableJobManagedBy: true,
    			job: &batch.Job{
    				ObjectMeta: validObjectMeta,
    				Spec: batch.JobSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    //	    sql.Named("end", endTime),
    //	)
    func Named(name string, value any) NamedArg {
    	// This method exists because the go1compat promise
    	// doesn't guarantee that structs don't grow more fields,
    	// so unkeyed struct literals are a vet error. Thus, we don't
    	// want to allow sql.NamedArg{name, value}.
    	return NamedArg{Name: name, Value: value}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K 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