Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for afterend (0.38 sec)

  1. callbacks/query.go

    		db.Statement.Clauses["FROM"] = fromClause
    	}
    	if db.Error == nil && db.Statement.Schema != nil && !db.Statement.SkipHooks && db.Statement.Schema.AfterFind && db.RowsAffected > 0 {
    		callMethod(db, func(value interface{}, tx *gorm.DB) bool {
    			if i, ok := value.(AfterFindInterface); ok {
    				db.AddError(i.AfterFind(tx))
    				return true
    			}
    			return false
    		})
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:51:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. schema/schema.go

    	callbackTypeAfterSave    callbackType = "AfterSave"
    	callbackTypeBeforeDelete callbackType = "BeforeDelete"
    	callbackTypeAfterDelete  callbackType = "AfterDelete"
    	callbackTypeAfterFind    callbackType = "AfterFind"
    )
    
    // ErrUnsupportedDataType unsupported data type
    var ErrUnsupportedDataType = errors.New("unsupported data type")
    
    type Schema struct {
    	Name                      string
    	ModelType                 reflect.Type
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. tensorflow/c/while_loop_test.cc

            TF_NewWhile(graph_, &inputs_[0], inputs_.size(), s_));
        ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
        ASSERT_EQ(original_graph_description_, GraphDebugString())
            << "TF_NewWhile() altered graph";
    
        params_->name = "test_loop";
    
        // Initialize outputs_ so we can easily detect errors/bugs
        outputs_.resize(ninputs, {nullptr, -1});
      }
    
      void ExpectOK() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

         *
         * <p>The last element of the supplied path is used as the project name. The supplied path is converted to a project
         * directory relative to the root project directory. The project directory can be altered by changing the 'projectDir'
         * property after the project has been included (see {@link ProjectDescriptor#setProjectDir(File)})</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    			last = scan.token
    			end = scan.end
    		}
    		// Scan key-type sequences. A key is of length 2 and may be followed
    		// by 0 or more "type" subtags from 3 to the maximum of 8 letters.
    		var last, key []byte
    		for attrEnd := end; len(scan.token) == 2; last = key {
    			key = scan.token
    			end = scan.end
    			for scan.scan(); end < scan.end && len(scan.token) > 2; scan.scan() {
    				end = scan.end
    			}
    			// TODO: check key value validity
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. cmd/bucket-object-lock.go

    // returns an error. For objects in "Governance" mode, overwrite is allowed if the retention date has expired.
    // For objects in "Compliance" mode, retention date cannot be shortened, and mode cannot be altered.
    // For objects with legal hold header set, the s3:PutObjectLegalHold permission is expected to be set
    // Both legal hold and retention can be applied independently on an object
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    // an upgrade on the server. Any response will be handled by the intercepting
    // proxy.
    type UpgradeRequestRoundTripper interface {
    	http.RoundTripper
    	// WrapRequest takes a valid HTTP request and returns a suitably altered version
    	// of request with any HTTP level values required to complete the request half of
    	// an upgrade on the server. It does not get a chance to see the response and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. tests/integration/README.md

    command-line:
    
    ```console
    $ go test ./... -p 1 --istio.test.kube.config ~/.kube/config
    ```
    
    If not specified, `~/.kube/config` will be used by default.
    
    **Be aware that any existing content will be altered and/or removed from the cluster**.
    
    Note that the HUB and TAG environment variables **must** be set when running tests in the Kubernetes environment.
    
    ## Diagnosing Failures
    
    ### Working Directory
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/map.go

    // dst so far won't need changing as we see more source bytes.
    type mapFunc func(*context) bool
    
    // A spanFunc takes a context set to the current rune and returns whether this
    // rune would be altered when written to the output. It may advance the context
    // to the next rune. It returns whether a checkpoint is possible.
    type spanFunc func(*context) bool
    
    // maxIgnorable defines the maximum number of ignorables to consider for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"ordinals":                     ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top