Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for decSizes (0.39 sec)

  1. src/cmd/go/internal/toolchain/switch.go

    	return s.TooNew != nil && (HasAuto() || HasPath())
    }
    
    // Switch decides whether to switch to a newer toolchain
    // to resolve any of the saved errors.
    // It switches if toolchain switches are permitted and there is at least one TooNewError.
    //
    // If Switch decides not to switch toolchains, it prints the errors using base.Error and returns.
    //
    // If Switch decides to switch toolchains but cannot identify a toolchain to use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/DependencyInsightOutputNormalizer.groovy

            output.replaceAll("(?x)" +
                "# Captures first half of the table\n" +
                "(\\s+\\|\\s+org\\.gradle\\.jvm\\.version\\s+\\|\\s+\\|\\s+)" +
                "# Decides between a single digit + spacing (e.g. '8 '), or two digits (e.g. 17)\n" +
                "# This is the value being replaced.\n" +
                "(?:\\d\\s|\\d{2})" +
                "# Capture the tail end of the table\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/object/matcher.go

    	"k8s.io/klog/v2"
    )
    
    type ObjectSelectorProvider interface {
    	// GetObjectSelector gets the webhook ObjectSelector field.
    	GetParsedObjectSelector() (labels.Selector, error)
    }
    
    // Matcher decides if a request selected by the ObjectSelector.
    type Matcher struct {
    }
    
    func matchObject(obj runtime.Object, selector labels.Selector) bool {
    	if obj == nil {
    		return false
    	}
    	accessor, err := meta.Accessor(obj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 26 00:41:14 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/string_util.h

    std::string AttrAsString(mlir::Attribute& attr);
    
    // b/281863212 enable automatic without Op/AttrAsString.
    // We add logging via a wrapper struct in order to respect ODS and avoid
    // multiple symbol definitions if MLIR or someone else decides to add ostream
    // definitions for the MLIR symbols.
    struct LoggableOperation {
      mlir::Operation& v;
      // NOLINTNEXTLINE(google-explicit-constructor)
      LoggableOperation(mlir::Operation& v) : v(v) {}
    };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 15 19:47:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. cmd/shared-lock.go

    	ctx, cancel := context.WithCancel(context.Background())
    	go func() {
    		select {
    		case <-ctx1.Done():
    		case <-ctx2.Done():
    		// The lock acquirer decides to cancel, exit this goroutine
    		case <-ctx.Done():
    		}
    
    		cancel()
    	}()
    	return ctx, cancel
    }
    
    func (ld sharedLock) GetLock(ctx context.Context) (context.Context, context.CancelFunc) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 13 09:26:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top