Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for apiall (1.21 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                        // candidate is selected.
                        source = ******@****.***
                        annotations.addAll(******@****.***tions)
                        typeArguments.addAll(******@****.***guments)
                        explicitReceiver = unwrappedExplicitReceiver.explicitReceiver
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    html {
    	font-size: 16px;
    	font-weight: 400;
    	line-height: 1.5;
    }
    
    body {
    	color: var(--text-color);
    	background-color: var(--white-color);
    	font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    	line-height: 1.5;
    	-webkit-text-size-adjust: 100%;
    	-ms-text-size-adjust: 100%;
    }
    
    /* Links */
    a {
    	color: #1DA2BD;
    	text-decoration: none;
    }
    
    a:hover,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

        // If we're set to a default port, unset it in case of a scheme change.
        result.port = if (port != defaultPort(scheme)) port else -1
        result.encodedPathSegments.clear()
        result.encodedPathSegments.addAll(encodedPathSegments)
        result.encodedQuery(encodedQuery)
        result.encodedFragment = encodedFragment
        return result
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey();
            if (StringUtil.isNotBlank(key)) {
                tags = ArrayUtils.addAll(tags, key);
            }
            final String[] fields = request.getParameterValues("field");
    
            final PopularWordHelper popularWordHelper = ComponentUtil.getPopularWordHelper();
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    }
                    // validation error, continue project building and delay failing to help IDEs
                    // result.getProblems().addAll(e.getProblems()) ?
                }
    
                Model model = result.getActivatedFileModel();
    
                modelPool.put(model.getPomFile(), model);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                        outputFile.get().asFile.text = artifactIds.get().join('\\n')
                    }
                }
    
                tasks.register('printArtifactIds', PrintArtifactIds) {
                    artifactIds.addAll(
                      configurations
                          .compileClasspath
                          .incoming.artifactView {
                              attributes.attribute(Attribute.of('artifactType', String), 'jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ppc64/ssa.go

    		ssagen.AddrAuto(&p.To, v)
    
    	case ssa.OpArgIntReg, ssa.OpArgFloatReg:
    		// The assembler needs to wrap the entry safepoint/stack growth code with spill/unspill
    		// The loop only runs once.
    		for _, a := range v.Block.Func.RegArgs {
    			// Pass the spill/unspill information along to the assembler, offset by size of
    			// the saved LR slot.
    			addr := ssagen.SpillSlotAddr(a, ppc64.REGSP, base.Ctxt.Arch.FixedFrameSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            for (Class<? extends Annotation> annotation : enabledAnnotations) {
                customAnnotationPropertyHandlers.add(new CustomInjectAnnotationPropertyHandler(annotation));
            }
            handlers.addAll(customAnnotationPropertyHandlers);
            handlers.add(injectionHandler);
    
            // Order is significant
            List<ClassValidator> validators = new ArrayList<>(2 + disabledAnnotations.size());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            }
    
            if (project.getManagedVersionMap() != null) {
                setManagedVersionMap(project.getManagedVersionMap());
            }
    
            lifecyclePhases.addAll(project.lifecyclePhases);
        }
    
        private static String getProjectReferenceId(String groupId, String artifactId, String version) {
            StringBuilder buffer = new StringBuilder(128);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Iterators.java

       *
       * @return {@code true} if {@code collection} was modified as a result of this operation
       */
      @CanIgnoreReturnValue
      public static <T extends @Nullable Object> boolean addAll(
          Collection<T> addTo, Iterator<? extends T> iterator) {
        checkNotNull(addTo);
        checkNotNull(iterator);
        boolean wasModified = false;
        while (iterator.hasNext()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top