Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,927 for classy2 (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc.go

    // For each J in [0, len(classes)):
    //  1. `classes[J].lowerBound <= allocs[J] <= classes[J].upperBound` and
    //  2. exactly one of the following is true:
    //     2a. `allocs[J] == fairProp * classes[J].target`,
    //     2b. `allocs[J] == classes[J].lowerBound && classes[J].lowerBound > fairProp * classes[J].target`, or
    //     2c. `allocs[J] == classes[J].upperBound && classes[J].upperBound < fairProp * classes[J].target`.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/antMigration/multiProject/groovy/web/build.xml

        <property name="build.dir" value="target"/>
        <property name="classes.dir" value="${build.dir}/classes"/>
    
        <!-- tag::build-required[] -->
        <target name="buildRequiredProjects">
            <ant dir="${root.dir}/util" target="build"/>  <!--1-->
        </target>
        <!-- end::build-required[] -->
    
        <target name="compile" depends="buildRequiredProjects">
            <mkdir dir="${classes.dir}"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 922 bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorInnerClassTest.groovy

            extractedOuter.classes.length == 0
        }
    
        def "should not keep anonymous local classes"() {
            given:
            def api = toApi 'A': '''
                public class A {
                   public void foo() {
                       class Person {}
                   }
                }
            '''
    
            when:
            def outer = api.classes.A
            def inner = api.classes['A$1Person']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorAnnotationsTest.groovy

                        String value();
                    }
                '''
            ])
    
            when:
            def clazz = api.classes.A
            def annotations = clazz.clazz.annotations
            def annClazz = api.classes.Ann
            def subAnnClazz = api.classes.SubAnn
    
            api.extractAndLoadApiClassFrom(subAnnClazz)
            def extractedAnn = api.extractAndLoadApiClassFrom(annClazz)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  5. src/runtime/mksizeclasses.go

    		// use just this size instead of having two
    		// different sizes.
    		if len(classes) > 1 && npages == classes[len(classes)-1].npages && allocsize/size == allocsize/classes[len(classes)-1].size {
    			classes[len(classes)-1].size = size
    			continue
    		}
    		classes = append(classes, class{size: size, npages: npages})
    	}
    
    	// Increase object sizes if we can fit the same number of larger objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

                            attributes { it.attribute(artifactType, 'classes') }
                        }
                        inputs.files view.files
                        doLast {
                            assert view.files.collect { it.name } == ['lib.classes', 'lib-util.classes', 'ui.classes', 'some-classes-1.0.classes']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/BuildableTestResultsProvider.groovy

        }
    
        void writeAllOutput(long classId, TestOutputEvent.Destination destination, Writer writer) {
            doWrite(classId, 0, true, destination, writer)
        }
    
        void writeNonTestOutput(long classId, TestOutputEvent.Destination destination, Writer writer) {
            doWrite(classId, 0, false, destination, writer)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/AggregateTestResultsProvider.java

        @Override
        public void writeNonTestOutput(long classId, TestOutputEvent.Destination destination, Writer writer) {
            for (DelegateProvider delegateProvider : classOutputProviders.get(classId)) {
                delegateProvider.provider.writeNonTestOutput(delegateProvider.id, destination, writer);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/GroovyCompileTransformingClassLoaderTest.groovy

            annotation.classes() == [] as Class[]
        }
    
        def "loads class annotated with transformer class"() {
            expect:
            def cl = loader.loadClass(WithClassSpecified.name)
            def annotation = cl.getAnnotation(classAnnotation)
            annotation.value() == [Transformer.name] as String[]
            annotation.classes() == [] as Class[]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/listeners/ConstantsCollectorTest.groovy

        def "inherited constants points to original class"() {
            given:
            String clazz = """
    class A {
        static final String STATIC_FINAL_FIELD = "hello";
    }
    class B extends A {
    }
    class C {
        static final String STATIC_FINAL_FIELD = B.STATIC_FINAL_FIELD;
    }
    """
            List<File> classes = toSourceFile(clazz)
    
            when:
            compiler.compile(classes)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 22.4K bytes
    - Viewed (0)
Back to top