Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 153 for getters (0.26 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. cmd/kubeadm/app/cmd/upgrade/common.go

    	if ok && *printConfig {
    		printConfiguration(&initCfg.ClusterConfiguration, os.Stdout, printer)
    	} else if !ok {
    		return nil, nil, nil, nil, cmdutil.TypeMismatchErr("printConfig", "bool")
    	}
    
    	// Use a real version getter interface that queries the API server, the kubeadm client and the Kubernetes CI system for latest versions
    	return client, upgrade.NewOfflineVersionGetter(upgrade.NewKubeVersionGetter(client), newK8sVersion), initCfg, upgradeCfg, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. src/time/format_test.go

    	{"GMT-51 hi there", 3, true},
    	{"ChST hi there", 4, true},
    	{"MeST hi there", 4, true},
    	{"MSDx", 3, true},
    	{"MSDY", 0, false}, // four letters must end in T.
    	{"ESAST hi", 5, true},
    	{"ESASTT hi", 0, false}, // run of upper-case letters too long.
    	{"ESATY hi", 0, false},  // five letters must end in T.
    	{"WITA hi", 4, true},    // Issue #18251
    	// Issue #24071
    	{"+03 hi", 3, true},
    	{"-04 hi", 3, true},
    	// Issue #26032
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/BaseEncoding.java

       * lowercase letters. Padding and separator characters remain in their original case.
       *
       * @throws IllegalStateException if the alphabet used by this encoding contains mixed upper- and
       *     lower-case characters
       */
      public abstract BaseEncoding lowerCase();
    
      /**
       * Returns an encoding that behaves equivalently to this encoding, but decodes letters without
       * regard to case.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

                propertyDescCache.remove(name);
            }
            invalidPropertyNames.clear();
        }
    
        /**
         * getterメソッドを準備します。
         *
         * @param readMethod
         *            getterメソッド
         * @param propertyName
         *            プロパティ名
         */
        protected void setupReadMethod(final Method readMethod, final String propertyName) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

      for (Operation& head_outside_compiled_op : *launch_block) {
        for (Value result : head_outside_compiled_op.getResults()) {
          bool has_external_uses = false;
          for (Operation* user : result.getUsers()) {
            if (OpInBlock(user, launch_block)) continue;
            has_external_uses = true;
            break;
          }
          if (has_external_uses) {
            launch_results.push_back(result);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/Suggester.java

        }
    
        public SuggestIndexer indexer() {
            return createDefaultIndexer();
        }
    
        public static SuggesterBuilder builder() {
            return new SuggesterBuilder();
        }
    
        // getter
        public SuggestSettings settings() {
            return suggestSettings;
        }
    
        public ReadingConverter getReadingConverter() {
            return readingConverter;
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

                        is KaSamConstructorSymbol -> callableId ?: name
                        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}")
                    }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

            def distroInit2 = gradleHomeDir.createFile("init.d/2.gradle")
    
            then:
            parameter.allInitScripts == [userMainInit, userInit1, userInit2, distroInit1, distroInit2]
        }
    
        def 'taskNames getter defaults to taskParameters'() {
            def parameter = new StartParameter()
            def requests = [new DefaultTaskExecutionRequest(['a']), new DefaultTaskExecutionRequest(['b'])]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. plugin/pkg/admission/noderestriction/admission.go

    	if p.nodeIdentifier == nil {
    		return fmt.Errorf("%s requires a node identifier", PluginName)
    	}
    	if p.podsGetter == nil {
    		return fmt.Errorf("%s requires a pod getter", PluginName)
    	}
    	if p.nodesGetter == nil {
    		return fmt.Errorf("%s requires a node getter", PluginName)
    	}
    	return nil
    }
    
    var (
    	podResource           = api.Resource("pods")
    	nodeResource          = api.Resource("nodes")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top