Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 303 for deduplicated (0.18 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ChecksumAlgorithmService.java

         * any of the algorithm name is not supported. The returned collection has equal count of elements as passed in
         * collection of names, and if names contains duplicated elements, the returned list of algorithms will have
         * duplicates as well.
         *
         * @throws ChecksumAlgorithmServiceException if any asked algorithm name is not supported.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 21 08:05:10 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/DefaultTask.java

    @DisableCachingByDefault(because = "Gradle would require more information to cache this task")
    public abstract class DefaultTask extends org.gradle.api.internal.AbstractTask implements Task {
        // NOTE: These methods are duplicated here because Eclipse treats methods implemented in the deprecated
        // AbstractTask as also deprecated in DefaultTask.
    
        @Override
        public AntBuilder getAnt() {
            return super.getAnt();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/admission_test.go

    		},
    
    		// scenario 6: set valid `--disable-admission-plugins`
    		{
    			setDisablePlugins: []string{"pluginA"},
    			expectedResult:    true,
    		},
    
    		// scenario 7: RecommendedPluginOrder has duplicated plugin
    		{
    			setRecommendedPluginsOrder: []string{"pluginA", "pluginB", "pluginB", "pluginC"},
    			expectedResult:             false,
    		},
    
    		// scenario 8: RecommendedPluginOrder not equal to registered
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. pkg/kubelet/network/dns/dns.go

    	}
    	// This should not happen as kube-apiserver should have rejected
    	// invalid dnsPolicy.
    	return podDNSCluster, fmt.Errorf("invalid DNSPolicy=%v", dnsPolicy)
    }
    
    // mergeDNSOptions merges DNS options. If duplicated, entries given by PodDNSConfigOption will
    // overwrite the existing ones.
    func mergeDNSOptions(existingDNSConfigOptions []string, dnsConfigOptions []v1.PodDNSConfigOption) []string {
    	optionsMap := make(map[string]string)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/RegularImmutableMap.java

        @Nullable ImmutableMapEntry<K, V>[] table = createEntryArray(tableSize);
        int mask = tableSize - 1;
        // If duplicates are allowed, this IdentityHashMap will record the final Entry for each
        // duplicated key. We will use this final Entry to overwrite earlier slots in the entries array
        // that have the same key. Then a second pass will remove all but the first of the slots that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. pilot/pkg/security/trustdomain/bundle_test.go

    			trustDomainBundle: NewBundle("new-td", []string{"td2", "td3"}),
    			principals:        []string{"/ns/some-ns/sa/some-sa"},
    			expect:            []string{"/ns/some-ns/sa/some-sa"},
    		},
    		{
    			name:              "No duplicated principals for prefix",
    			trustDomainBundle: NewBundle("new-td", []string{"old-td"}),
    			principals:        []string{"*-td/ns/some-ns/sa/some-sa"},
    			// Rather than output *-td/ns/some-ns/sa/some-sa once for each trust domain.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 11 16:19:15 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                lifecycle.phases().forEach(phase -> {
                    if (!set.add(phase.name())) {
                        throw new IllegalArgumentException(
                                "Found duplicated phase '" + phase.name() + "' in '" + lifecycle.id() + "' lifecycle");
                    }
                });
            }
        }
    
        @Override
        public Iterator<Lifecycle> iterator() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/mdo/reader-stax.vm

                break;
            default:
                if (!parsed.add(tagName)) {
                    throw new XMLStreamException("Duplicated tag: '" + tagName + "'", parser.getLocation(), null);
                }
            }
    #else
            if (!parsed.add(tagName)) {
                throw new XMLStreamException("Duplicated tag: '" + tagName + "'", parser.getLocation(), null);
            }
    #end
            return tagName;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  9. pkg/apis/certificates/types.go

    	// contain duplicate certificates, or that use PEM block headers.
    	//
    	// Users of ClusterTrustBundles, including Kubelet, are free to reorder and
    	// deduplicate certificate blocks in this file according to their own logic,
    	// as well as to drop PEM block headers and inter-block data.
    	TrustBundle string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/validation/validation_test.go

    			config: invalidPluginArgs,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: "profiles[0].pluginConfig[0].args",
    				},
    			},
    		},
    		"duplicated-plugin-config": {
    			config: duplicatedPluginConfig,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeDuplicate,
    					Field: "profiles[0].pluginConfig[1]",
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top