Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for decSizes (0.32 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ResourceFilterMatcher.java

    package org.gradle.plugins.ide.eclipse.model;
    
    import org.gradle.api.Action;
    
    import javax.annotation.Nullable;
    import java.util.Set;
    /**
     * The model of an Eclipse resource filter matcher.
     * <p>
     * The matcher decides when the containing filter (or containing matcher) applies.  The
     * matcher configures things like whether this ResourceFilter matches resources by
     * name, project relative path, location, last modified, etc.  Eclipse has many types
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

     */
    public interface InstrumentingClassLoader {
        /**
         * This hook is called when the class is being defined in this classloader.
         * If the implementation decides to replace the bytecode, it returns a non-null byte array from this method.
         * Prefer returning {@code null} instead of the {@code classfileBuffer} to continue loading the original bytecode.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager.java

                        type.getLanguage().id(),
                        type.getPathTypes().contains(JavaPathType.CLASSES));
                // TODO: watch out for module path
            });
    
            // Note: here, type decides is artifact added to "build path" (for example during resolution)
            // and "build path" is intermediate data that is used to create actual Java classpath/modulepath
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/RetryHttpInitializerWrapper.java

                    request.setCurlLoggingEnabled(loggingEnabled);
                    if (credential.handleResponse(request, response, supportsRetry)) {
                        // If credential decides it can handle it, the return code or message indicated
                        // something specific to authentication, and no backoff is desired.
                        return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirVisibilityChecker.kt

                effectiveSession,
                useSiteFile.firSymbol.fir,
                effectiveContainers,
                explicitDispatchReceiver
            )
        }
    
        /**
         * [isVisibleByPsi] is a heuristic that decides visibility for most [KaFirPsiJavaClassSymbol]s without deferring to its FIR symbol,
         * thereby avoiding lazy construction of the FIR class. The visibility rules are tailored specifically for Java classes accessed from
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. pkg/version/version.go

    type ServerInfo struct {
    	Component string
    	Revision  string
    	Info      BuildInfo
    }
    
    // MeshInfo contains the versions for all Istio control plane components
    type MeshInfo []ServerInfo
    
    // NodeType decides the responsibility of the proxy serves in the mesh
    type NodeType string
    
    func ToUserFacingNodeType(t string) NodeType {
    	switch t {
    	case "router":
    		return "gateway"
    	default:
    		return NodeType(t)
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/failure/TestFailureMapper.java

     * Instead, they should rely completely on reflection.
     */
    @NonNullApi
    public abstract class TestFailureMapper {
    
        /**
         * Decides whether this mapper supports the given {@link Throwable}.
         * A {@link Throwable} is supported if its class name, or any of its superclasses, is present in the list returned by {@link #getSupportedClassNames()}.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:48:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace/matcher.go

    )
    
    type NamespaceSelectorProvider interface {
    	// GetNamespaceSelector gets the webhook NamespaceSelector field.
    	GetParsedNamespaceSelector() (labels.Selector, error)
    }
    
    // Matcher decides if a request is exempted by the NamespaceSelector of a
    // webhook configuration.
    type Matcher struct {
    	NamespaceLister corelisters.NamespaceLister
    	Client          clientset.Interface
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 00:53:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/interface.go

    	// DO NOT use outside of tests.
    	PodCount() (int, error)
    
    	// AssumePod assumes a pod scheduled and aggregates the pod's information into its node.
    	// The implementation also decides the policy to expire pod before being confirmed (receiving Add event).
    	// After expiration, its information would be subtracted.
    	AssumePod(logger klog.Logger, pod *v1.Pod) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. src/internal/coverage/cfile/apis.go

    	// counter array to write number-of-counters, pkgid, funcid. Later
    	// in the function there is also a store to increment a counter
    	// for the block containing the call to XYZ(). If the CPU is
    	// allowed to reorder stores and decides to issue the XYZ store
    	// before the prolog stores, this could be observable as an
    	// inconsistency similar to the one above. Hence the requirement
    	// for atomic counter mode: according to package atomic docs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top