Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 95 for setZero (0.17 sec)

  1. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

                is ConeLookupTagBasedType -> lookupTag.name.asString()
    
                // NOTE: Flexible types can occur not only as implicit return types,
                // but also as implicit parameter types, for example in setters with implicit types
                is ConeFlexibleType -> {
                    // since Kotlin decompiler always "renders" flexible types as their lower bound, we can do the same here
                    lowerBound.renderTypeAsKotlinType()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            }
            testNg.addListener((Object) adaptListener(new TestNGTestResultProcessorAdapter(resultProcessor, idGenerator, clock)));
            testNg.run();
        }
    
        /**
         * The setter for {@code configFailurePolicy} has a different signature depending on TestNG version.
         * This method uses reflection to detect the API and calls the version with the correct signature.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status_test.go

    					v1.ResourceEphemeralStorage: *resource.NewQuantity(5000, resource.BinarySI),
    				},
    			}
    			// Since this test retroactively overrides the stub container manager,
    			// we have to regenerate default status setters.
    			kubelet.setNodeStatusFuncs = kubelet.defaultNodeStatusFuncs()
    
    			kubeClient := testKubelet.fakeKubeClient
    			existingNode := v1.Node{ObjectMeta: metav1.ObjectMeta{Name: testKubeletHostname}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

        KaSymbolWithKind {
    
        public abstract val hasGetter: Boolean
        public abstract val hasSetter: Boolean
    
        public abstract val getter: KaPropertyGetterSymbol?
        public abstract val setter: KaPropertySetterSymbol?
        public abstract val backingFieldSymbol: KaBackingFieldSymbol?
    
        public abstract val hasBackingField: Boolean
    
        public abstract val isDelegatedProperty: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

                        is KaConstructorSymbol -> "<constructor>"
                        is KaPropertyGetterSymbol -> callableId ?: "<getter>"
                        is KaPropertySetterSymbol -> callableId ?: "<setter>"
                        is KaAnonymousFunctionSymbol -> "<anonymous function>"
                        else -> error("unexpected symbol kind in KaCall: ${this@with::class}")
                    }
                )
                append("(")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

            when:
            parameter.taskRequests = requests
    
            then:
            parameter.taskNames == [ 'a', 'b' ]
            parameter.taskRequests == requests
        }
    
        def 'taskNames setter defaults to taskParameters'() {
            StartParameter parameter = new StartParameter()
    
            when:
            parameter.taskNames = [ 'a', 'b' ]
    
            then:
            parameter.taskNames == [ 'a', 'b' ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultConvention.java

            if (extensionsStorage.hasExtension(name)) {
                throw new IllegalArgumentException(
                    format("There's an extension registered with name '%s'. You should not reassign it via a property setter.", name));
            }
        }
    
        private boolean isConfigureExtensionMethod(String name, @Nullable Object[] args) {
            return args.length == 1 &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

                    yieldAll(parameter.withImplicitSymbols())
                }
            }
    
            if (ktSymbol is KaPropertySymbol) {
                yieldAll(ktSymbol.getter.withImplicitSymbols())
                yieldAll(ktSymbol.setter.withImplicitSymbols())
            }
    
            if (ktSymbol is KaFunctionLikeSymbol) {
                for (parameter in ktSymbol.valueParameters) {
                    yieldAll(parameter.withImplicitSymbols())
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

                            backingField?.findAnnotationTypeRef(annotationEntry)
                                ?: getter?.findAnnotationTypeRef(annotationEntry)
                                ?: setter?.findAnnotationTypeRef(annotationEntry)
                        }
                    } else null
                }
                else -> null
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsGenerator.java

                return newValueParameter.orElseThrow(() -> new IllegalArgumentException("a setter interceptor must accept a parameter")).getParameterType();
            } else {
                throw new IllegalArgumentException("expected a property interception request, got " + request);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top