Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 141 for circuit (0.13 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java

         */
        static boolean matchPattern(ArtifactRepository originalRepository, String pattern) {
            boolean result = false;
            String originalId = originalRepository.getId();
    
            // simple checks first to short circuit processing below.
            if (WILDCARD.equals(pattern) || pattern.equals(originalId)) {
                result = true;
            } else {
                // process the list
                String[] repos = pattern.split(",");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/test_matchers.h

      return (status.status() ==
              tensorflow::CompileToHloGraphAnalysisFailedError());
    }
    
    /* The third party version of the Graph Analysis always returns disabled so
     * these matchers short circuit on that error. */
    MATCHER(IsOkOrFiltered,
            "Status was OK or equal to the Graph Analysis failure") {
      bool is_ok = arg.ok();
      auto graph_analysis_failure = WasGraphAnalysisFailure(arg);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 19 22:54:26 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/assign/assign.go

    				analysisutil.HasSideEffects(pass.TypesInfo, rhs) ||
    				isMapIndex(pass.TypesInfo, lhs) {
    				continue // expressions may not be equal
    			}
    			if reflect.TypeOf(lhs) != reflect.TypeOf(rhs) {
    				continue // short-circuit the heavy-weight gofmt check
    			}
    			le := analysisutil.Format(pass.Fset, lhs)
    			re := analysisutil.Format(pass.Fset, rhs)
    			if le == re {
    				pass.Report(analysis.Diagnostic{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RootComponentResolutionIntegrationTest.groovy

                    conf {
                        outgoing {
                            artifact file("foo.txt")
                        }
                    }
                }
    
                // To ensure we do not run into short-circuit resolver
                repositories { maven { url "${mavenRepo.uri}" } }
                dependencies {
                    conf "org:foo:1.0"
                }
    
                task resolve {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 23 22:33:17 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. docs/features/interceptors.md

     * Permitted to short-circuit and not call `Chain.proceed()`.
     * Permitted to retry and make multiple calls to `Chain.proceed()`.
     * Can adjust Call timeouts using withConnectTimeout, withReadTimeout, withWriteTimeout.
    
    **Network Interceptors**
    
     * Able to operate on intermediate responses like redirects and retries.
     * Not invoked for cached responses that short-circuit the network.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  6. pkg/apis/rbac/types.go

    */
    
    package rbac
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // Authorization is calculated against
    // 1. evaluation of ClusterRoleBindings - short circuit on match
    // 2. evaluation of RoleBindings in the namespace requested - short circuit on match
    // 3. deny by default
    
    // APIGroupAll and these consts are default values for rbac authorization.
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/GroovyCompileTransformingClassLoader.java

            super("groovy-compile-transforming-loader", parent, classPath);
        }
    
        @Override
        protected byte[] transform(String className, byte[] bytes) {
            // First scan for annotation, and short circuit transformation if not present
            ClassReader classReader = new ClassReader(bytes);
    
            AnnotationDetector detector = new AnnotationDetector();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/InjectUtil.java

                    return constructor;
                }
                if (constructor.getAnnotation(Inject.class) != null) {
                    // Otherwise, if there is a single constructor that is annotated with `@Inject`, we select it (short-circuit).
                    return constructor;
                }
            }
    
            // Search for a valid `@Inject` constructor to use instead.
            Constructor<?> match = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/DefaultFailureFactory.java

            }
    
            @SuppressWarnings("Since15")
            private List<Failure> convertSuppressed(Throwable parent) {
                // Short-circuit if suppressed exceptions are not supported by the current JVM
                if (!JavaVersion.current().isJava7Compatible()) {
                    return ImmutableList.of();
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pkg/security/apparmor/helpers.go

    		if c.SecurityContext != nil && c.SecurityContext.AppArmorProfile != nil &&
    			c.SecurityContext.AppArmorProfile.Type != v1.AppArmorProfileTypeUnconfined {
    			return false // is in use; short-circuit
    		}
    		return true
    	})
    	if inUse {
    		return true
    	}
    
    	for key, value := range pod.Annotations {
    		if strings.HasPrefix(key, v1.DeprecatedAppArmorBetaContainerAnnotationKeyPrefix) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:32 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top