Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for unstructured (0.16 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    				Obj()
    	structuredAllocatedImmediateClaim = st.FromResourceClaim(pendingImmediateClaim).
    						Allocation("some-driver", &resourcev1alpha2.AllocationResult{}).
    						Structured("worker", "instance-1").
    						Obj()
    	pendingDelayedClaim = st.FromResourceClaim(claim).
    				OwnerReference(podName, podUID, podKind).
    				AllocationMode(resourcev1alpha2.AllocationModeWaitForFirstConsumer).
    				Obj()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		want                          string
    		wantCELMapper                 bool
    		wantUsesEmailVerifiedClaim    bool
    	}{
    		{
    			name:                          "claim and expression are empty, structured authn feature enabled",
    			in:                            []api.ClaimValidationRule{{}},
    			structuredAuthnFeatureEnabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		modifiedClaim.Status.Allocation == nil {
    		// A claim with structured parameters was deallocated. This might have made
    		// resources available for other pods.
    		//
    		// TODO (https://github.com/kubernetes/kubernetes/issues/123697):
    		// check that the pending claims depend on structured parameters (depends on refactoring foreachPodResourceClaim, see other TODO).
    		//
    		// There is a small race here:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/go.sum

    sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0=
    sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4=
    sigs.k8s.io/structured-merge-diff/v4 v4.4.1/go.mod h1:N8hJocpFajUSSeSJ9bOZ77VzejKZaXsTtZo4/u7Io08=
    sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/go.sum

    sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0=
    sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4=
    sigs.k8s.io/structured-merge-diff/v4 v4.4.1/go.mod h1:N8hJocpFajUSSeSJ9bOZ77VzejKZaXsTtZo4/u7Io08=
    sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //                              is/isn't available.
    //   GTEST_HAS_SEH            - Define it to 1/0 to indicate whether the
    //                              compiler supports Microsoft's "Structured
    //                              Exception Handling".
    //   GTEST_HAS_STREAM_REDIRECTION
    //                            - Define it to 1/0 to indicate whether the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //                              is/isn't available.
    //   GTEST_HAS_SEH            - Define it to 1/0 to indicate whether the
    //                              compiler supports Microsoft's "Structured
    //                              Exception Handling".
    //   GTEST_HAS_STREAM_REDIRECTION
    //                            - Define it to 1/0 to indicate whether the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    limitations under the License.
    */
    
    package endpoints
    
    import (
    	"fmt"
    	"net/http"
    	"reflect"
    	"sort"
    	"strings"
    	"time"
    	"unicode"
    
    	restful "github.com/emicklei/go-restful/v3"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    
    	apidiscoveryv2 "k8s.io/api/apidiscovery/v2"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. go.sum

    sigs.k8s.io/kustomize/kyaml v0.17.1 h1:TnxYQxFXzbmNG6gOINgGWQt09GghzgTP6mIurOgrLCQ=
    sigs.k8s.io/kustomize/kyaml v0.17.1/go.mod h1:9V0mCjIEYjlXuCdYsSXvyoy2BTsLESH7TlGV81S282U=
    sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4=
    sigs.k8s.io/structured-merge-diff/v4 v4.4.1/go.mod h1:N8hJocpFajUSSeSJ9bOZ77VzejKZaXsTtZo4/u7Io08=
    sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package registry
    
    import (
    	"context"
    	"fmt"
    	"strings"
    	"sync"
    	"time"
    
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/apimachinery/pkg/api/validation"
    	"k8s.io/apimachinery/pkg/api/validation/path"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top