Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 535 for _empty (0.11 sec)

  1. buildscripts/verify-healing-empty-erasure-set.sh

    Anis Eleuch <******@****.***> 1717166930 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

      }
    
      /**
       * Returns an empty immutable range set.
       *
       * <p><b>Performance note:</b> the instance returned is a singleton.
       */
      @SuppressWarnings("unchecked")
      public static <C extends Comparable> ImmutableRangeSet<C> of() {
        return (ImmutableRangeSet<C>) EMPTY;
      }
    
      /**
       * Returns an immutable range set containing the specified single range. If {@link Range#isEmpty()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                            EMPTY,
                            request);
                }
    
                validateRawRepositories(problems, m.getRepositories(), "repositories.repository.", EMPTY, request);
    
                validateRawRepositories(
                        problems, m.getPluginRepositories(), "pluginRepositories.pluginRepository.", EMPTY, request);
    
                Build build = m.getBuild();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            if (capabilities.isEmpty() && (component.hasMoreThanOneSelectedNodeUsingVariantAwareResolution() || capabilitiesConflictHandler.hasSeenCapability(component.getImplicitCapability()))) {
                action.execute(component.getImplicitCapability());
            } else {
                // The isEmpty check is not required, might look innocent, but Guava's performance bad for an empty immutable list
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

            val possibleReceivers =
                getSymbolsFromScopes(receiverTypeName, contextElement).ifEmpty { null }
                    ?: getNonImportedSymbolsByFullyQualifiedName(receiverTypeName).ifEmpty { null }
                    ?: emptyList()
    
            return possibleReceivers.filterIsInstance<KaClassLikeSymbol>()
        }
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. cmd/iam-store.go

    					return nil, time.Time{}, err
    				}
    				mp, _ = c.iamSTSPolicyMap.Load(name)
    			}
    		}
    	}
    
    	// returned policy could be empty
    	policies := mp.toSlice()
    
    	for _, group := range c.iamUserGroupMemberships[name].ToSlice() {
    		if store.getUsersSysType() == MinIOUsersSysType {
    			g, ok := c.iamGroupsMap[group]
    			if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            // TODO - should not invalidate the cache for this expression
            "'empty=' + tree.empty"                                                                         | "empty=false"               | "empty=false"                      | "empty=false"
            // TODO - should not invalidate the cache for this expression until the file is removed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	// This is intentionally empty because component config does not exists in the public api
    	// (empty mean all ComponentConfigs fields nil, and this is necessary for getting roundtrip passing)
    }
    
    func fuzzLocalEtcd(obj *kubeadm.LocalEtcd, c fuzz.Continue) {
    	c.FuzzNoCustom(obj)
    
    	// Pinning values for fields that get defaults if fuzz value is empty string or nil (thus making the round trip test fail)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    	return fmt.Sprintf("%s/%s/%s.%s",
    		ptr.OrEmpty(ref.Group),
    		ptr.OrEmpty(ref.Kind),
    		ref.Name,
    		ptr.OrEmpty(ref.Namespace))
    }
    
    func parentRefString(ref k8s.ParentReference) string {
    	return fmt.Sprintf("%s/%s/%s/%s/%d.%s",
    		ptr.OrEmpty(ref.Group),
    		ptr.OrEmpty(ref.Kind),
    		ref.Name,
    		ptr.OrEmpty(ref.SectionName),
    		ptr.OrEmpty(ref.Port),
    		ptr.OrEmpty(ref.Namespace))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            then:
            childNode.ancestorsStrictVersionConstraints == StrictVersionConstraints.EMPTY
            parent1.ownStrictVersionConstraints != StrictVersionConstraints.EMPTY
            parent2.ownStrictVersionConstraints == StrictVersionConstraints.EMPTY
        }
    
        def "computes intersection of ancestors"() {
            when:
            def parent1Edge = edge(root, false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top