Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 203 for isImplicit (0.14 sec)

  1. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildRegistry.java

                includedBuildsByRootDir.put(buildDir, includedBuild);
                nestedBuildsByRootDir.put(buildDir, includedBuild);
                pendingIncludedBuilds.add(includedBuild);
                addBuild(includedBuild);
            } else {
                if (includedBuild.isImplicitBuild() != isImplicit) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

            reportActiveExternalHost = getInitParameter("reportActiveExternalHost", null, String.class);
            useEPSVwithIPv4 = getInitParameter("useEPSVwithIPv4", false, Boolean.class);
            isImplicit = getInitParameter("isImplicit", null, Boolean.class);
            trustManager = getInitParameter("trustManager", null, String.class);
    
            // ftp auth
            final FtpAuthenticationHolder holder = new FtpAuthenticationHolder();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. api/go1.18.txt

    pkg go/types, method (*ArgumentError) Error() string
    pkg go/types, method (*ArgumentError) Unwrap() error
    pkg go/types, method (*Interface) IsComparable() bool
    pkg go/types, method (*Interface) IsImplicit() bool
    pkg go/types, method (*Interface) IsMethodSet() bool
    pkg go/types, method (*Interface) MarkImplicit()
    pkg go/types, method (*Named) Origin() *Named
    pkg go/types, method (*Named) SetTypeParams([]*TypeParam)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

        }
    
        assertThat(buffer.readByteString()).isEqualTo("A20743054A6F6E6573".decodeHex())
      }
    
      @Test fun `decode implicit tagged implicit prefixed type`() {
        // Type1 ::= VisibleString
        // Type2 ::= [APPLICATION 3] IMPLICIT Type1
        // Type3 ::= [2] Type2
        // Type4 ::= [APPLICATION 7] IMPLICIT Type3
        val buffer =
          Buffer()
            .write("670743054A6F6E6573".decodeHex())
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

            }
        }
    
        /**
         * Returns the set of implicit selector names expected for any project for the target Gradle version.
         *
         * <p>Note that in some versions the handling of implicit selectors was broken, so this method may return a different value
         * to {@link #getImplicitTasks()}.
         */
        Set<String> getImplicitSelectors() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/vendor.go

    				for _, r := range modFile.Require {
    					isExplicit[r.Mod] = true
    				}
    			}
    
    		}
    		includeAllReplacements = true
    	}
    	if gover.Compare(gv, "1.17") >= 0 {
    		// If the Go version is at least 1.17, annotate all modules with their
    		// 'go' version directives.
    		includeGoVersions = true
    	}
    
    	var vendorMods []module.Version
    	for m := range isExplicit {
    		vendorMods = append(vendorMods, m)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

        }
    
        /**
         * A method that helps performance of selection by quickly checking if a
         * metadata container only contains a single, shadowed (the implicit) capability.
         *
         * @return {@code true} if the variant only contains the implicit capability
         */
        private static boolean fastContainsImplicitCapability(ImmutableSet<ImmutableCapability> capabilities) {
            if (capabilities.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

         * First, attribute matching is performed against the implicit variants of each consumable configuration.
         * Then, assuming attribute matching returns a single matched configuration, Gradle will then perform
         * attribute matching against each sub-variant (including the implicit) of the matched configuration.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutor.java

                encoder.writeSmallInt(implicits.size());
                for (ImplicitInputRecord<?, ?> implicit : implicits) {
                    writeAny(encoder, implicit.getInput());
                    writeAny(encoder, implicit.getOutput());
                }
            }
    
            private void writeAny(Encoder encoder, Object any) throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/typecheck.go

    		for x := n.X; ; {
    			var inner ir.Node
    			implicit := false
    			switch x := x.(type) {
    			case *ir.AddrExpr:
    				inner, implicit = x.X, x.Implicit()
    			case *ir.SelectorExpr:
    				inner, implicit = x.X, x.Implicit()
    			case *ir.StarExpr:
    				inner, implicit = x.X, x.Implicit()
    			}
    			if !implicit {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top