Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for afterend (0.33 sec)

  1. tensorflow/compiler/jit/tests/device_compiler_serialize_test.cc

      TF_ASSERT_OK(
          AlterPersistentCacheEntryHloModuleNames(tensorflow::testing::TmpDir()));
    
      // Run again but these should all fail, because the persistent cache entries'
      // HLO modules have been altered.
      for (int b = 1; b < 4; ++b) {
        auto status = ExecuteWithBatch(graph, b);
        EXPECT_FALSE(status.ok());
        EXPECT_TRUE(
            absl::StrContains(status.message(), "Serialized HLO does not match."));
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. 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)
  3. src/internal/fuzz/minimize.go

    	tmp := make([]byte, len(v))
    	// If minimization was successful at any point during minimizeBytes,
    	// then the vals slice in (*workerServer).minimizeInput will point to
    	// tmp. Since tmp is altered while making new candidates, we need to
    	// make sure that it is equal to the correct value, v, before exiting
    	// this function.
    	defer copy(tmp, v)
    
    	// First, try to cut the tail.
    	for n := 1024; n != 0; n /= 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 07 21:15:51 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go

    	original := object
    
    	// deep copy the original object
    	object = object.DeepCopyObject()
    	name := reflect.TypeOf(object).Elem().Name()
    	if !apiequality.Semantic.DeepEqual(original, object) {
    		t.Errorf("%v: DeepCopy altered the object, diff: %v", name, cmp.Diff(original, object))
    		t.Errorf("%s", dump.Pretty(original))
    		t.Errorf("%s", dump.Pretty(object))
    		return
    	}
    
    	// encode (serialize) the deep copy using the provided codec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  5. 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)
  6. pkg/scheduler/framework/cycle_state.go

    }
    
    // StateKey is the type of keys stored in CycleState.
    type StateKey string
    
    // CycleState provides a mechanism for plugins to store and retrieve arbitrary data.
    // StateData stored by one plugin can be read, altered, or deleted by another plugin.
    // CycleState does not provide any data protection, as all plugins are assumed to be
    // trusted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 06:48:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbol.kt

                        else -> Modality.FINAL
                    }
            }
    
        override val visibility: Visibility
            get() = withValidityAssertion {
                // TODO: We should use resolvedStatus, because it can be altered by status-transforming compiler plugins. See KT-58572
                when (val possiblyRawVisibility = firSymbol.fir.visibility) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    	data := originalData
    	if s.options.Yaml {
    		altered, err := yaml.YAMLToJSON(data)
    		if err != nil {
    			return nil, nil, err
    		}
    		data = altered
    	}
    
    	actual, err := s.meta.Interpret(data)
    	if err != nil {
    		return nil, nil, err
    	}
    
    	if gvk != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/project/path/DefaultPathTranslator.java

         * behavior, this method accepts both the forward slash and the backward slash as separator.
         *
         * @param path The filesystem path, may be <code>null</code>.
         * @return The altered filesystem path or <code>null</code> if the input path was <code>null</code>.
         */
        private String chopLeadingFileSeparator(String path) {
            if (path != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. RELEASE_BRANCHES.md

        * Risk should be assessed in the PR.
            * Have installs and upgrades affected by this feature?
            * Is the feature still being worked on?
            * Is the default behavior altered?
            * Is this turned on by default?
            * How many users are affected by this change?
    
    ## Feature implementation
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 12 23:27:43 UTC 2021
    - 3.9K bytes
    - Viewed (0)
Back to top