Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 170 for applyTo (0.28 sec)

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

                    val getAccessArgumentMapping = LinkedHashMap<KtExpression, KaVariableLikeSignature<KaValueParameterSymbol>>().apply {
                        putAll(leftOperandPsi.indexExpressions.zip(getPartiallyAppliedSymbol.signature.valueParameters))
                    }
    
                    return if (resolveFragmentOfCall) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    .replaceAll(Pattern.quote("${fess.index.auto_expand_replicas}"), autoExpandReplicas);
            for (final UnaryOperator<String> rule : docSettingRewriteRuleList) {
                source = rule.apply(source);
            }
            return source;
        }
    
        public void addDocumentSettingRewriteRule(final UnaryOperator<String> rule) {
            docSettingRewriteRuleList.add(rule);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    	if err := Convert_v1beta4_UpgradeApplyConfiguration_To_kubeadm_UpgradeApplyConfiguration(&in.Apply, &out.Apply, s); err != nil {
    		return err
    	}
    	if err := Convert_v1beta4_UpgradeDiffConfiguration_To_kubeadm_UpgradeDiffConfiguration(&in.Diff, &out.Diff, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/Futures.java

      // final fields.
      //
      // For simplicity the rest of this description will discuss Futures.catching since it is the
      // simplest instance, though very similar descriptions apply to many other classes in this file.
      //
      // In the constructor of AbstractCatchingFuture, the delegate future is assigned to a field
      // 'inputFuture'. That field is non-final and non-volatile. There are 2 places where the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

                @Override
                void accept(ProviderInternal<?> property) {
                    impl.apply(property as MapProperty<String, String>)
                }
    
                @Override
                ProviderInternal<?> apply(ProviderInternal<?> property) {
                    return impl.apply(property as MapProperty<String, String>)
                }
    
                @Override
                String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    			return nil, gvk, err
    		}
    		decodingStrictErrs = decodeStrictErr.Errors()
    	}
    	var unknownFields []string
    	if u, ok := obj.(*unstructured.Unstructured); ok {
    		unknownFields, err = d.validator.apply(u)
    		if err != nil {
    			return nil, gvk, err
    		}
    	}
    	if d.validator.returnUnknownFieldPaths && (len(decodingStrictErrs) > 0 || len(unknownFields) > 0) {
    		for _, unknownField := range unknownFields {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/CharMatcher.java

        }
    
        @Override
        public boolean matches(char c) {
          return predicate.apply(c);
        }
    
        @SuppressWarnings("deprecation") // intentional; deprecation is for callers primarily
        @Override
        public boolean apply(Character character) {
          return predicate.apply(checkNotNull(character));
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Note this gives the DaemonSet a relatively high privilege, as it can delete any Pod.
      bool deletePods = 7;
    
      // The label key to apply to a broken pod when the controller is in labelPods mode.
      string brokenPodLabelKey = 8;
    
      // The label value to apply to a broken pod when the controller is in labelPods mode.
      string brokenPodLabelValue = 9;
    
      // The name of the init container to use for the repairPods mode.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                        doLast {
                            assert configurations._compileFreeDebug.collect { it.name } == []
                        }
                    }
                }
                project(':b') {
                    apply plugin: 'base'
                    configurations {
                        foo
                        bar
                        'default' {
                            canBeConsumed = false
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/CharMatcher.java

        }
    
        @Override
        public boolean matches(char c) {
          return predicate.apply(c);
        }
    
        @SuppressWarnings("deprecation") // intentional; deprecation is for callers primarily
        @Override
        public boolean apply(Character character) {
          return predicate.apply(checkNotNull(character));
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top