Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for Bajram (0.18 sec)

  1. .cm/plugins/filters/categorize/index.js

    /**
     * @module categorize
     * @description Returns a mapping of platforms to the information about the files involved in the PR contained in each platform
     * @param {Map} fileOwners mapping of platform name to a list of files involved in the change located in that platform
     * @param {[FileMetadata]} fileMetadatas - gitStream's list of metadata about file changes in the PR including path
    JavaScript
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/util/UtilPerformanceProject.kt

        buildType(AdHocPerformanceScenarioLinux)
        buildType(AdHocPerformanceScenarioWindows)
        buildType(AdHocPerformanceScenarioMacOS)
        buildType(AdHocPerformanceScenarioMacAppleSilicon)
    
        params {
            param("env.DEVELOCITY_ACCESS_KEY", "%ge.gradle.org.access.key%")
        }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 03:34:53 GMT 2024
    - 450 bytes
    - Viewed (0)
  3. build-logic/documentation/src/test/resources/org/gradle/test/JavaClass.java

        }
    
        /**
         * A property.
         */
        public JavaInterface getSomeProp() {
            return this;
        }
    
        /**
         * The setter for a property.
         * @param value
         */
        public void setSomeProp(JavaInterface value) {
        }
    
        /**
         * A boolean property.
         */
        boolean isFlag() {
            return false;
        }
    
        /**
    Java
    - Registered: Wed Apr 10 11:36:10 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.1K bytes
    - Viewed (0)
  4. .idea/codeStyles/Project.xml

        <JavaCodeStyleSettings>
          <option name="CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND" value="999" />
          <option name="NAMES_COUNT_TO_USE_IMPORT_ON_DEMAND" value="999" />
          <option name="JD_ALIGN_PARAM_COMMENTS" value="false" />
          <option name="JD_ALIGN_EXCEPTION_COMMENTS" value="false" />
          <option name="JD_P_AT_EMPTY_LINES" value="false" />
          <option name="JD_KEEP_EMPTY_PARAMETER" value="false" />
    XML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jul 31 14:47:08 GMT 2023
    - 3.4K bytes
    - Viewed (1)
  5. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

            def paramTypes = args.paramTypes ?: []
            _ * metaData.parameters >> paramTypes.collect {
                def param = new ParameterMetaData("p");
                param.type = new TypeMetaData(it)
                return param
            }
            return methodDoc
        }
    
        def blockDoc(Map<String, ?> args = [:], String name) {
            BlockDoc blockDoc = Mock()
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 40.8K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/MethodMetaData.java

            return parameters;
        }
    
        public ParameterMetaData addParameter(String name, TypeMetaData type) {
            ParameterMetaData param = new ParameterMetaData(name);
            param.setType(type);
            parameters.add(param);
            return param;
        }
    
        public String getSignature() {
            StringBuilder builder = new StringBuilder();
            builder.append(returnType.getSignature());
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.9K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                    param("env.JPROFILER_HOME", "C:\\Program Files\\jprofiler\\jprofiler11.1.4")
                }
    
                else -> {
                    profilerParam("async-profiler")
                    param("env.FG_HOME_DIR", "/opt/FlameGraph")
                    param("env.PATH", "%env.PATH%:/opt/swift/4.2.3/usr/bin:/opt/swift/4.2.4-RELEASE-ubuntu18.04/usr/bin")
                    param("env.HP_HOME_DIR", "/opt/honest-profiler")
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Feb 13 13:53:39 GMT 2024
    - 4.9K bytes
    - Viewed (2)
  8. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/BinaryCompatibilityRepositoryLifecycle.kt

            (context.userData as MutableMap<String, Any?>)[REPOSITORY_CONTEXT_KEY] = BinaryCompatibilityRepository.openRepositoryFor(
                param(Params.sourceRoots),
                param(Params.sourceCompilationClasspath)
            )
        }
    
        @Suppress("unchecked_cast")
        private
        fun param(name: String): List<File> =
            (params[name] as? Set<String>)?.map(::File) ?: emptyList()
    }
    
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/model/bucket-extensions.kt

     *
     * @param list the list to split, must be ordered by size desc
     * @param toIntFunction the function used to map the element to its "size"
     * @param largeElementSplitFunction the function used to further split the large element into smaller pieces
     * @param smallElementAggregateFunction the function used to aggregate tiny elements into a large bucket
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Nov 17 05:17:44 GMT 2022
    - 4K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/MethodDetailRenderer.java

            for (int i = 0; i < parameters.size(); i++) {
                ParameterMetaData param = parameters.get(i);
                if (i > 0) {
                    title.appendChild(document.createTextNode(", "));
                }
                title.appendChild(linkRenderer.link(param.getType(), listener));
                title.appendChild(document.createTextNode(" " + param.getName()));
            }
            title.appendChild(document.createTextNode(")"));
    
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.7K bytes
    - Viewed (0)
Back to top