Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,119 for nothings (0.2 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            when:
            succeeds "nothing"
    
            then:
            result.assertTasksNotSkipped(":nothing")
    
            // Is up to date
            when:
            succeeds "nothing", "-Puptodate"
    
            then:
            result.assertTasksSkipped(":nothing")
    
            // Predicate is false
            when:
            succeeds "nothing"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                }
                extensions.add('things', SomeThing)
                things {
                    letter = 'a'
                    withLetter('b')
                }
                assert things.letter == Letter.B
                things.other('ABC')
                assert things.letter == Letter.A
                things.other(Letter.C)
                assert things.letter == Letter.C
                things.other('A', 'ignore')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.ir.txt

                correspondingProperty: PROPERTY name:firstValue visibility:public modality:FINAL [val]
                $this: VALUE_PARAMETER name:<this> type:<root>.Operation.Add
                BLOCK_BODY
                  RETURN type=kotlin.Nothing from='public final fun <get-firstValue> (): kotlin.Int declared in <root>.Operation.Add'
                    GET_FIELD 'FIELD PROPERTY_BACKING_FIELD name:firstValue type:kotlin.Int visibility:private [final]' type=kotlin.Int origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 04 09:35:38 UTC 2024
    - 25K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/calloptions.go

    func (o *CallOptions) FillDefaultsOrFail(t test.Failer) {
    	t.Helper()
    	if err := o.FillDefaults(); err != nil {
    		t.Fatal(err)
    	}
    }
    
    func (o *CallOptions) fillCallCount() {
    	if o.Count > 0 {
    		// Nothing to do.
    		return
    	}
    
    	o.Count = common.DefaultCount
    
    	// Try setting an appropriate count for the number of workloads.
    	newCount := DefaultCallsPerWorkload() * o.numWorkloads()
    	if newCount > o.Count {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFileCollectionFactoryTest.groovy

            collection.visitStructure(new BrokenVisitor())
            collection.toString() == "some collection"
        }
    
        def "returns empty collection when fixed collection constructed with a fixed list containing nothing"() {
            expect:
            def collection = factory.fixed([])
            collection.files.empty
            collection.buildDependencies.getDependencies(null).empty
            collection.visitStructure(new BrokenVisitor())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryIntegrationTest.groovy

                }
    
                def bag = project.objects.newInstance(Bag)
                bag.things.registerBinding(Thing, Thing)
                bag.things.registerBinding(AnotherThing, AnotherThing)
    
                bag.things {
                    a(Thing) {
                        value = 1
                    }
                    b(AnotherThing) {
                        value = "foo"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 07 02:25:12 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  7. src/text/template/parse/lex.go

    func lexVariable(l *lexer) stateFn {
    	if l.atTerminator() { // Nothing interesting follows -> "$".
    		return l.emit(itemVariable)
    	}
    	return lexFieldOrVariable(l, itemVariable)
    }
    
    // lexFieldOrVariable scans a field or variable: [.$]Alphanumeric.
    // The . or $ has been scanned.
    func lexFieldOrVariable(l *lexer, typ itemType) stateFn {
    	if l.atTerminator() { // Nothing interesting follows -> "." or "$".
    		if typ == itemVariable {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

            def dep = new LocalComponentDependencyMetadata(Stub(ComponentSelector), Dependency.DEFAULT_CONFIGURATION, [] as List, [], false, false, true, false, false, null)
            def conf = defaultConfiguration(attributes(key: 'nothing'))
            toComponent.getCandidatesForGraphVariantSelection().variants.addAll(conf)
            attributesSchema.attribute(Attribute.of('key', String))
            attributesSchema.attribute(Attribute.of('will', String))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    			// Node2 scores (used resources) on 0-MaxNodeScore scale
    			// CPU Score: (0 * MaxNodeScore) / 4000 = 0
    			// Memory Score: (0 * MaxNodeScore) / 10000 = 0
    			// Node2 Score: (0 + 0) / 2 = 0
    			name:         "nothing scheduled, nothing requested",
    			requestedPod: st.MakePod().Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/snapshot_test.go

    								{
    									Namespaces:        sets.New("ns"),
    									Selector:          labels.SelectorFromSet(map[string]string{"baz": "qux"}),
    									TopologyKey:       "baz",
    									NamespaceSelector: labels.Nothing(),
    								},
    							},
    						},
    					},
    				},
    			},
    			expectedNumNodes:         3,
    			expectedPodsWithAffinity: 1,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top