Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 433 for newUser (0.17 sec)

  1. maven-model/src/test/java/org/apache/maven/model/v4/ModelXmlTest.java

            Model model = Model.newBuilder(true).properties(props).build();
            String xml = toXml(model);
    
            for (int i = 0; i < 10; i++) {
                String newStr = toXml(fromXml(xml));
                assertEquals(newStr, xml);
            }
        }
    
        @Test
        void testNamespaceInXmlNode() throws XMLStreamException {
            String xml = "<project xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 27 23:11:34 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolutionPolicy.java

         * artifact, closer to the entry point, is selected
         */
        @Configuration(name = "closer-first", value = "true")
        private boolean closerFirst = true;
    
        /**
         * newer artifact is selected
         */
        @Configuration(name = "newer-first", value = "true")
        private boolean newerFirst = true;
    
        public MetadataGraphEdge apply(MetadataGraphEdge e1, MetadataGraphEdge e2) {
            int depth1 = e1.getDepth();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/pubkeypin/pubkeypin.go

    	supportedFormats = strings.Join([]string{formatSHA256}, ", ")
    )
    
    // Set is a set of pinned x509 public keys.
    type Set struct {
    	sha256Hashes map[string]bool
    }
    
    // NewSet returns a new, empty PubKeyPinSet
    func NewSet() *Set {
    	return &Set{make(map[string]bool)}
    }
    
    // Allow adds an allowed public key hash to the Set
    func (s *Set) Allow(pubKeyHashes ...string) error {
    	for _, pubKeyHash := range pubKeyHashes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 11:38:39 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  4. pkg/registry/core/resourcequota/strategy.go

    // and should not be modified by the user.
    func (resourcequotaStrategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set {
    	fields := map[fieldpath.APIVersion]*fieldpath.Set{
    		"v1": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    	}
    
    	return fields
    }
    
    // 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: Fri Feb 18 17:07:29 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_require_exclude.txt

    stdout '^x $'
    ! stdout '^rsc.io/sampler v1.99.99'
    stdout '^rsc.io/sampler v1.3.0'
    
    # build with newer version available
    cp go.mod2 go.mod
    go list -mod=mod -f '{{with .Module}}{{.Path}} {{.Version}}{{end}}' all
    stderr '^go: dropping requirement on excluded version rsc.io/quote v1\.5\.1$'
    stdout 'rsc.io/quote v1.5.2'
    
    # build with excluded newer version
    cp go.mod3 go.mod
    go list -mod=mod -f '{{with .Module}}{{.Path}} {{.Version}}{{end}}' all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 14 15:02:11 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  6. internal/logger/legacy.go

    // Legacy envs
    const (
    	legacyEnvAuditLoggerHTTPEndpoint = "MINIO_AUDIT_LOGGER_HTTP_ENDPOINT"
    	legacyEnvLoggerHTTPEndpoint      = "MINIO_LOGGER_HTTP_ENDPOINT"
    )
    
    // SetLoggerHTTPAudit - helper for migrating older config to newer KV format.
    func SetLoggerHTTPAudit(scfg config.Config, k string, args http.Config) {
    	if !args.Enabled {
    		// Do not enable audit targets, if not enabled
    		return
    	}
    	scfg[config.AuditWebhookSubSys][k] = config.KVS{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 03 09:47:07 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/internal/syscall/unix/kernel_version_solaris_test.go

    		}
    		if !gotSock && !gotAccept4 && (major > 5 || (major == 5 && minor >= 11)) {
    			t.Errorf("SupportSockNonblockCloexec and SupportAccept4 are false, but kernel version is 5.11 or newer, SunOS version: %d.%d", major, minor)
    		}
    	} else { // Solaris
    		if gotSock && gotAccept4 && (major < 11 || (major == 11 && minor < 4)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. pkg/registry/storagemigration/storagemigration/strategy.go

    // and should not be modified by the user.
    func (strategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set {
    	fields := map[fieldpath.APIVersion]*fieldpath.Set{
    		"storagemigration.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: Fri Mar 08 04:18:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_sync_toolchain.txt

    grep '^go 1.50$' go.work
    ! grep toolchain go.work
    
    # work sync with older modules should leave go 1.50 in the go.work.
    go work sync
    cat go.work
    grep '^go 1.50$' go.work
    ! grep toolchain go.work
    
    # work sync with newer modules should update go 1.21 -> 1.22.1 and toolchain -> go1.22.9 in go.work
    env TESTGO_VERSION=go1.21
    env TESTGO_VERSION_SWITCH=switch
    go work edit -go=1.21
    grep '^go 1.21$' go.work
    ! grep toolchain go.work
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/eventbus/SubscriberRegistry.java

          if (eventSubscribers == null) {
            CopyOnWriteArraySet<Subscriber> newSet = new CopyOnWriteArraySet<>();
            eventSubscribers =
                MoreObjects.firstNonNull(subscribers.putIfAbsent(eventType, newSet), newSet);
          }
    
          eventSubscribers.addAll(eventMethodsInListener);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 10.5K bytes
    - Viewed (0)
Back to top