Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 855 for SELF (0.03 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/SelfResolvingDependency.java

        Set<File> resolve();
    
        /**
         * Resolves this dependency by specifying the transitive mode. This mode has only an effect if the self resolved dependency
         * is of type {@link org.gradle.api.artifacts.ProjectDependency}. In this case, if transitive is <code>false</code>,
         * only the self resolving dependencies of the project configuration which are no project dependencies are resolved. If transitive
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Multisets.java

      static <E extends @Nullable Object> boolean addAllImpl(
          Multiset<E> self, Collection<? extends E> elements) {
        checkNotNull(self);
        checkNotNull(elements);
        if (elements instanceof Multiset) {
          return addAllImpl(self, cast(elements));
        } else if (elements.isEmpty()) {
          return false;
        } else {
          return Iterators.addAll(self, elements.iterator());
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. tools/certs/README.md

    `kubeconfig` is used for accessing the cluster.
    - `Makefile.selfsigned.mk`: Creates certificates based on a generated self-signed root.
    
    The table below describes the targets supported by both Makefiles.
    
    Make Target | Makefile | Description
    ------ | -------- | -----------
    `root-ca` | `Makefile.selfsigned.mk` | Generates a self-signed root CA key and certificate.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 17 20:29:15 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/tls/BasicCertificateChainCleaner.kt

          // certificate in the chain is itself a self-signed and trusted CA certificate.)
          val trustedCert = trustRootIndex.findByIssuerAndSignature(toVerify)
          if (trustedCert != null) {
            if (result.size > 1 || toVerify != trustedCert) {
              result.add(trustedCert)
            }
            if (verifySignature(trustedCert, trustedCert, result.size - 2)) {
              return result // The self-signed cert is a root CA. We're done.
            }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/audit/log/backend_test.go

    		expected string
    	}{
    		{
    			&auditinternal.Event{
    				AuditID: types.UID(uuid.New().String()),
    			},
    			`[\d\:\-\.\+TZ]+ AUDIT: id="[\w-]+" stage="" ip="<unknown>" method="" user="<none>" groups="<none>" as="<self>" asgroups="<lookup>" user-agent="" namespace="<none>" uri="" response="<deferred>"`,
    		},
    		{
    			&auditinternal.Event{
    				ResponseStatus: &metav1.Status{
    					Code: 200,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 08 06:37:26 UTC 2022
    - 5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ForwardingSortedSet.java

        try {
          // any ClassCastExceptions and NullPointerExceptions are caught
          @SuppressWarnings({"unchecked", "nullness"})
          SortedSet<@Nullable Object> self = (SortedSet<@Nullable Object>) this;
          Object ceiling = self.tailSet(object).first();
          return unsafeCompare(comparator(), ceiling, object) == 0;
        } catch (ClassCastException | NoSuchElementException | NullPointerException e) {
          return false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_retract_self_prev_v1.1.0.txt

    See example.com_retract_self_pref_v1.9.0.txt.
    
    This version is the latest (only) non-retracted version.
    
    -- .mod --
    module example.com/retract/self/prev
    
    go 1.15
    
    -- .info --
    {"Version":"v1.1.0"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:12:37 UTC 2020
    - 218 bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/modifiers/renderers/KtRendererVisibilityModifierProvider.kt

        ): KaRendererVisibilityModifierProvider {
            val self = this
            return object : KaRendererVisibilityModifierProvider {
                override fun getVisibilityModifier(analysisSession: KaSession, symbol: KaSymbolWithVisibility): KtModifierKeywordToken? =
                    if (condition(analysisSession, symbol)) self.getVisibilityModifier(analysisSession, symbol) else null
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. pkg/apis/autoscaling/fuzzer/fuzzer.go

    			c.FuzzNoCustom(s) // fuzz self without calling this function again
    
    			// ensure we have a valid selector
    			metaSelector := &metav1.LabelSelector{}
    			c.Fuzz(metaSelector)
    			labelSelector, _ := metav1.LabelSelectorAsSelector(metaSelector)
    			s.Selector = labelSelector.String()
    		},
    		func(s *autoscaling.HorizontalPodAutoscalerSpec, c fuzz.Continue) {
    			c.FuzzNoCustom(s) // fuzz self without calling this function again
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 15 06:03:59 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/RuleApplicationScope.java

    import org.gradle.model.Path;
    
    import java.lang.annotation.Annotation;
    import java.util.List;
    
    public enum RuleApplicationScope {
        /**
         * Rule should be applied to the scope element only.
         */
        SELF,
    
        /**
         * Rule should be applied to the all matching descendant elements of the scope.
         */
        DESCENDANTS;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top