Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 433 for newUser (0.16 sec)

  1. cmd/kubeadm/app/util/pubkeypin/pubkeypin_test.go

    	result, err := x509.ParseCertificate(pemBlock.Bytes)
    	if err != nil {
    		t.Fatalf("failed to parse test certificate: %v", err)
    		return nil
    	}
    	return result
    }
    
    func TestSet(t *testing.T) {
    	s := NewSet()
    	if !s.Empty() {
    		t.Error("expected a new set to be empty")
    		return
    	}
    	err := s.Allow("xyz")
    	if err == nil || !s.Empty() {
    		t.Error("expected allowing junk to fail")
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 11:38:39 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  2. pkg/registry/storage/volumeattachment/strategy.go

    // and should not be modified by the user.
    func (volumeAttachmentStrategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set {
    	fields := map[fieldpath.APIVersion]*fieldpath.Set{
    		"storage.k8s.io/v1": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    	}
    
    	return fields
    }
    
    // ResetBeforeCreate clears the Status field which is not allowed to be set by end users on creation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 06 21:19:19 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  3. pkg/registry/apiserverinternal/storageversion/strategy.go

    // and should not be modified by the user.
    func (storageVersionStrategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set {
    	fields := map[fieldpath.APIVersion]*fieldpath.Set{
    		"internal.apiserver.k8s.io/v1alpha1": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    	}
    
    	return fields
    }
    
    // PrepareForCreate clears the status of an StorageVersion before creation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  4. pkg/registry/core/namespace/strategy.go

    // and should not be modified by the user.
    func (namespaceStrategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set {
    	return map[fieldpath.APIVersion]*fieldpath.Set{
    		"v1": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    	}
    }
    
    // PrepareForCreate clears fields that are not allowed to be set by end users on creation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 07 08:51:17 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_upgrade_pseudo.txt

    #   * v0.1.0
    #   * v0.0.0-20190430073000-30950c05d534
    # Only v0.1.0 is tagged.
    #
    # The v0.1.1 pseudo-version is semantically higher than the latest tag.
    # The v0.0.0 pseudo-version is chronologically newer.
    
    # Start at v0.1.1-0.20190429073117-b5426c86b553
    go get example.com/pseudoupgrade@b5426c8
    go list -m -u all
    stdout '^example.com/pseudoupgrade v0.1.1-0.20190429073117-b5426c86b553$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_usemissingpre_v1.0.0.txt

    This module requires example.com/missingpkg at a prerelease version, which
    is newer than @latest.
    
    -- .mod --
    module example.com/usemissingpre
    
    require example.com/missingpkg v1.0.1-beta
    -- .info --
    {"Version":"v1.0.0"}
    -- use.go --
    package use
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:25:56 UTC 2019
    - 280 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_exec_toolchain.txt

    env GOTOOLCHAIN=go1.21+auto
    cp go.mod.new go.mod
    go get rsc.io/needgo121 rsc.io/needgo122 rsc.io/needgo123 rsc.io/needall
    stderr '^go: rsc.io/needall@v0.0.1 requires go >= 1.23; switching to go1.23.9$'
    ! stderr '\(running'
    stderr '^go: added rsc.io/needall v0.0.1'
    grep 'go 1.23' go.mod
    grep 'toolchain go1.23.9' go.mod
    
    # GOTOOLCHAIN=go1.21 should NOT run the newer toolchain
    env GOTOOLCHAIN=go1.21
    cp go.mod.new go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBuildController.java

     *
     * <p>Consumer compatibility: This interface is used by all consumer versions from 1.8-rc-1 to 4.3. It is also used by later consumers when the provider does not
     * implement newer interfaces.
     * </p>
     * <p>Provider compatibility: This interface is implemented by all provider versions from 1.8-rc-1.</p>
     *
     * @since 1.8-rc-1
     * @deprecated 4.4. Use {@link InternalBuildControllerVersion2} instead.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. cluster/addons/fluentd-gcp/fluentd-gcp-ds.yaml

                  if [ -z "$(find /var/log/fluentd-buffers -type d -newer /tmp/marker-stuck -print -quit)" ];
                  then
                    rm -rf /var/log/fluentd-buffers;
                    exit 1;
                  fi;
                  touch -d "${LIVENESS_THRESHOLD_SECONDS} seconds ago" /tmp/marker-liveness;
                  if [ -z "$(find /var/log/fluentd-buffers -type d -newer /tmp/marker-liveness -print -quit)" ];
                  then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 27 17:54:10 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  10. pkg/registry/resource/resourceclaim/strategy.go

    // status.
    func (resourceclaimStrategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set {
    	fields := map[fieldpath.APIVersion]*fieldpath.Set{
    		"resource.k8s.io/v1alpha2": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    	}
    
    	return fields
    }
    
    func (resourceclaimStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    	claim := obj.(*resource.ResourceClaim)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:39:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top