Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,648 for nothings (0.19 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelMapIntegrationTest.groovy

                  void container(Container container) {
                    container.things.create("a") { value = "1" }
                    container.things.create("b") { value = "2" }
                  }
    
                  @Model
                  void things(ModelMap<Thing> things) {
                    things.create("a") { value = "1" }
                    things.create("b") { value = "2" }
                  }
                }
    
                apply type: Rules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    		expectedScores framework.NodeScoreList
    		resources      []config.ResourceSpec
    		shape          []config.UtilizationShapePoint
    		wantErrs       field.ErrorList
    	}{
    		{
    			name:         "nothing scheduled, nothing requested (default - least requested nodes have priority)",
    			requestedPod: st.MakePod().Obj(),
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/language/LanguageTreeResult.kt

    }
    
    
    data class Element<T : LanguageTreeElement>(val element: T) : ElementResult<T>
    
    
    data class Syntactic<out T>(val value: T) : SyntacticResult<T>
    
    
    sealed interface FailingResult : ElementResult<Nothing>, SyntacticResult<Nothing>
    
    
    sealed interface SingleFailureResult : FailingResult
    
    
    data class UnsupportedConstruct(
        val potentialElementSource: SourceData,
        val erroneousSource: SourceData,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 12:28:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. releasenotes/notes/51174.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 21:20:01 UTC 2024
    - 232 bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-jar-plugin/0.1/maven-jar-plugin-0.1.jar

    Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-jar-plugin 0.1 jar false true jar Does nothing. runtime false true false false false true org.apache.maven.plugin.coreit.ItMojo java per-lookup once-per-session org.apache.maven maven-plugin-api jar 2.0 org/apache/maven/plugin/coreit/ItMojo.class package org.apache.maven.plugin.coreit; public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. test/fixedbugs/issue66575.go

    func initv0() string {
    	println("initv0")
    	if c != "" { // have a dependency on c
    		return ""
    	}
    	return ""
    }
    
    func initv1() string {
    	println("initv1")
    	return ""
    }
    
    func main() {
    	// do nothing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 434 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionQuery.java

            // nothing
        }
    
        @Override
        public void invokeQuery(String columnFlexibleName, String conditionKeyName, Object conditionValue, ConditionOption conditionOption) {
            // nothing
        }
    
        @Override
        public void invokeQueryEqual(String columnFlexibleName, Object conditionValue) {
            // nothing
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionQuery.java

            // nothing
        }
    
        @Override
        public void invokeQuery(String columnFlexibleName, String conditionKeyName, Object conditionValue, ConditionOption conditionOption) {
            // nothing
        }
    
        @Override
        public void invokeQueryEqual(String columnFlexibleName, Object conditionValue) {
            // nothing
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

        }
    
        public static <T> List<T> toList(T[] things) {
            if (things == null || things.length == 0) {
                return new ArrayList<T>(0);
            }
    
            List<T> list = new ArrayList<T>(things.length);
            Collections.addAll(list, things);
            return list;
        }
    
        public static <T> Set<T> toSet(Iterable<? extends T> things) {
            if (things == null) {
                return new HashSet<T>(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. pkg/controller/resourceclaim/controller.go

    			claimName, _, err := resourceclaim.Name(pod, &podClaim)
    			switch {
    			case err != nil:
    				// Either the claim was not created (nothing to do here) or
    				// the API changed. The later will also get reported elsewhere,
    				// so here it's just a debug message.
    				logger.V(6).Info("Nothing to do for claim during pod change", "err", err, "reason", reason)
    			case claimName != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top