Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,947 for chansend (0.15 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Basic.h

    } CU_BasicRunMode;
    
    CU_EXPORT CU_ErrorCode CU_basic_run_tests(void);
    /**< 
     *  Runs all registered CUnit tests using the basic interface.
     *  The default CU_BasicRunMode is used unless it has been
     *  previously changed using CU_basic_set_mode().  The CUnit test
     *  registry must have been initialized before calling this function.
     *
     *  @return A CU_ErrorCode indicating the framework error condition, including
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. tests/hooks_test.go

    	tx.Statement.SetColumn("Price", s.Price+100)
    	return nil
    }
    
    func (s Product3) BeforeUpdate(tx *gorm.DB) (err error) {
    	if tx.Statement.Changed() {
    		tx.Statement.SetColumn("Price", s.Price+10)
    	}
    
    	if tx.Statement.Changed("Code") {
    		s.Price += 20
    		tx.Statement.SetColumn("Price", s.Price+30)
    	}
    	return nil
    }
    
    func TestSetColumn(t *testing.T) {
    	DB.Migrator().DropTable(&Product3{})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 18 01:20:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

                    } else if (!oldNullability && newNullability) {
                        warnings << "Parameter $idx nullability changed from non-nullable to nullable".toString()
                    }
                }
            }
    
            if (member instanceof JApiField) {
    
                JApiField field = (JApiField) member
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 10:04:28 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

     * Contains a reverse dependency view, so we can determine which classes in this set are affected by a change to a class inside or outside this set.
     * Contains information about the accessible, inlineable constants in each class, since these require full recompilation of dependents if changed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            def e = thrown(IllegalStateException)
            e.message == 'The value for <display> is final and cannot be changed any further.'
    
            when:
            collection.setFrom()
    
            then:
            def e2 = thrown(IllegalStateException)
            e2.message == 'The value for <display> is final and cannot be changed any further.'
    
            when:
            collection.setFrom(['some', 'more'])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/testdata/stackcheck/main.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func main() { asmMain() }
    
    func asmMain()
    
    func startSelf()
    
    func startChain()
    func chain0()
    func chain1()
    func chain2()
    func chainEnd()
    
    func startRec()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:26 UTC 2022
    - 345 bytes
    - Viewed (0)
  7. pkg/registry/core/persistentvolumeclaim/strategy_test.go

    				StatusStrategy.PrepareForUpdate(ctx, newPvc, oldPvc)
    
    				// old pvc should never be changed
    				if !reflect.DeepEqual(oldPvc, oldPvcInfo.pvc()) {
    					t.Errorf("old pvc changed: %v", cmp.Diff(oldPvc, oldPvcInfo.pvc()))
    				}
    
    				switch {
    				case oldPvcHasConditins || newPvcHasConditions:
    					// new pvc should not be changed if the feature is enabled, or if the old pvc had Conditions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. pkg/kube/krt/collection.go

    // Handler is called when a dependency changes. We will take as inputs the item that changed.
    // Then we find all of our own values (I) that changed and onPrimaryInputEvent() them
    func (h *manyCollection[I, O]) onSecondaryDependencyEvent(sourceCollection collectionUID, events []Event[any]) {
    	h.recomputeMu.Lock()
    	defer h.recomputeMu.Unlock()
    	// A secondary dependency changed...
    	// Got an event. Now we need to find out who depends on it..
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/AbstractArtifactRepositoryChangingNameAfterContainerInclusion.groovy

            def repo = new TestRepo(name: "name")
    
            given:
            project.repositories.add(repo)
    
            when:
            repo.name = "changed"
    
            then:
            IllegalStateException e = thrown()
            e.message == 'The name of an ArtifactRepository cannot be changed after it has been added to a repository container. You should set the name when creating the repository.'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KaResolver.kt

    @OptIn(KaAnalysisApiInternals::class)
    public typealias KtCallResolver = KaResolver
    
    @OptIn(KaAnalysisApiInternals::class)
    public interface KaResolverMixIn : KaSessionMixIn {
        @Deprecated(
            message = "The API will be changed soon. Use 'resolveCallOld()' in a transit period",
            replaceWith = ReplaceWith("resolveCallOld()"),
        )
        public fun KtElement.resolveCall(): KaCallInfo? = resolveCallOld()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top