Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 78 for getCaches (0.25 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfo.java

            if ( info502.security_descriptor != null ) {
                SecurityDescriptor sd;
                sd = new SecurityDescriptor(info502.security_descriptor, 0, info502.sd_size);
                return sd.getAces();
            }
            return null;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultMultipleCandidateResult.java

            this.consumerValue = consumerValue;
        }
    
        @Override
        public boolean hasResult() {
            return singleMatch != null || multipleMatches!=null;
        }
    
        @Override
        public Set<T> getMatches() {
            assert hasResult();
            if (singleMatch != null) {
                return Collections.singleton(singleMatch);
            }
            return multipleMatches;
        }
    
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

            request.userProperties(session.getUserProperties());
            request.modelCache(DefaultModelCache.newInstance(session, false));
            if (session.getCache() != null) {
                Map<?, ?> map = (Map) session.getCache().get(session, DefaultModelCache.class.getName());
                List<String> paths = map.keySet().stream()
                        .map(Object::toString)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/cached/AbstractCachedIndexTest.groovy

            when:
            cachedIndex.storeInternal("foo", cachedItem(cachedFile))
            def item = cachedIndex.lookup("foo")
    
            then:
            item == null
            cacheAccessCoordinator.getCache(CACHE_NAME).getIfPresent("foo") == null
            0 * fileAccessTracker.markAccessed(_)
        }
    
        def "returns missing items"() {
            given:
            def missingItem = cachedItem(null, true)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/setup_test.go

    	if err != nil {
    		return err
    	}
    	for _, c := range ctx.Clusters() {
    		ingr = append(ingr, ist.IngressFor(c))
    	}
    	mockProm = match.ServiceName(echo.NamespacedName{Name: "mock-prom", Namespace: apps.Namespace}).GetMatches(apps.Echos().All.Instances())
    	promInst, err = prometheus.New(ctx, prometheus.Config{})
    	if err != nil {
    		return
    	}
    
    	args := map[string]any{
    		"DockerConfigJson": base64.StdEncoding.EncodeToString(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/listener.go

    	for _, filterChain := range fChains {
    		fc := filterchain{
    			destination: getFilterType(filterChain.GetFilters()),
    			match:       getMatches(filterChain.FilterChainMatch),
    		}
    		resp = append(resp, fc)
    	}
    	return resp
    }
    
    func getMatches(f *listener.FilterChainMatch) string {
    	match := f
    	if match == nil {
    		match = &listener.FilterChainMatch{}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java

        }
    
    
        /**
         * @return the type
         */
        public final int getType () {
            return this.type;
        }
    
    
        /**
         * @return the aces
         */
        public final ACE[] getAces () {
            return this.aces;
        }
    
    
        /**
         * @return the ownerGroupSid
         */
        public final SID getOwnerGroupSid () {
            return this.ownerGroupSid;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultAttributesSchema.java

                    result = new DefaultMultipleCandidateResult<>(requested, candidates);
                    rules.execute(result);
                    if (result.hasResult()) {
                        return result.getMatches();
                    }
                }
    
                rules = producerSchema.disambiguationRules(attribute);
                if (rules.doesSomething()) {
                    if (result == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 16:59:54 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. tests/integration/pilot/mcs/autoexport/autoexport_test.go

    			ctx.NewSubTest("exported").RunParallel(
    				func(ctx framework.TestContext) {
    					serviceB := match.ServiceName(echo.NamespacedName{Name: common.ServiceB, Namespace: echos.Namespace})
    					for _, cluster := range serviceB.GetMatches(echos.Instances).Clusters() {
    						cluster := cluster
    						ctx.NewSubTest(cluster.StableName()).RunParallel(func(ctx framework.TestContext) {
    							// Verify that the ServiceExport was created.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelCache.java

        @SuppressWarnings("unchecked")
        public static ModelCache newInstance(RepositorySystemSession session) {
            ConcurrentHashMap<Object, Supplier<?>> cache;
            RepositoryCache repositoryCache = session.getCache();
            if (repositoryCache == null) {
                cache = new ConcurrentHashMap<>();
            } else {
                cache = (ConcurrentHashMap<Object, Supplier<?>>)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top