Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 118 for necessarily (0.2 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          keys[size] = key;
          values[size] = value;
          size++;
          return this;
        }
    
        /**
         * Adds the given {@code entry} to the map, making it immutable if necessary. Duplicate keys,
         * according to the comparator (which might be the keys' natural order), are not allowed, and
         * will cause {@link #build} to fail.
         *
         * @since 11.0
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    	ParallelPodManagement PodManagementPolicyType = "Parallel"
    )
    
    // StatefulSetUpdateStrategy indicates the strategy that the StatefulSet
    // controller will use to perform updates. It includes any additional parameters
    // necessary to perform the update for the indicated strategy.
    type StatefulSetUpdateStrategy struct {
    	// Type indicates the type of the StatefulSetUpdateStrategy.
    	// Default is RollingUpdate.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. src/go/printer/testdata/parser.go

    		// a field declaration cannot start with a '(' but we accept
    		// it here for more robust parsing and better error messages
    		// (parseFieldDecl will check and complain if necessary)
    		list = append(list, p.parseFieldDecl(scope))
    	}
    	rbrace := p.expect(token.RBRACE)
    
    	// TODO(gri): store struct scope in AST
    	return &ast.StructType{pos, &ast.FieldList{lbrace, list, rbrace}, false}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

              "apiVersion": {
                "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
                "type": "string"
              },
              "fieldsType": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta2/types.go

    	ParallelPodManagement PodManagementPolicyType = "Parallel"
    )
    
    // StatefulSetUpdateStrategy indicates the strategy that the StatefulSet
    // controller will use to perform updates. It includes any additional parameters
    // necessary to perform the update for the indicated strategy.
    type StatefulSetUpdateStrategy struct {
    	// Type indicates the type of the StatefulSetUpdateStrategy.
    	// Default is RollingUpdate.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    		t.Errorf("unexpected items: %#v", items)
    	}
    }
    
    // testListTableConversion verifies a set of known bounds and expected limitations for the values
    // returned from a TableList. These conditions may be changed if necessary with adequate review.
    func (t *Tester) testListTableConversion(obj runtime.Object, assignFn AssignFunc) {
    	ctx := t.TestContext()
    	testLabels := map[string]string{"key": "value"}
    
    	foo3 := obj.DeepCopyObject()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    ----
    
    Each tool chain implementation allows for a certain degree of configuration (see the API documentation for more details).
    
    [[sec:using_tool_chains]]
    === Using tool chains
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"apiVersion":  "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    	// For each slice s, a map from s to a len(s)/cap(s) value (if any)
    	// TODO: check if there are cases that matter where we have
    	// more than one len(s) for a slice. We could keep a list if necessary.
    	lens map[ID]*Value
    	caps map[ID]*Value
    
    	// zero is a zero-valued constant
    	zero *Value
    }
    
    // checkpointFact is an invalid value used for checkpointing
    // and restoring factsTable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. pkg/kubelet/nodestatus/setters_test.go

    		if len(names) > int(maxNames) {
    			names = names[0:maxNames]
    		}
    		expectedImage.Names = names
    		expectedImage.SizeBytes = image.Size
    	}
    	// -1 means no limit, truncate result list if necessary.
    	if maxImages > -1 &&
    		int(maxImages) < len(expectedImages) {
    		return expectedImages[0:maxImages]
    	}
    	return expectedImages
    }
    
    func makeImageTags(num int32) []string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top