Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for afterend (0.17 sec)

  1. cmd/xl-storage-free-version_test.go

    		}
    		if got := fi.TierFreeVersion(); got != ft.expectedFree {
    			t.Fatalf("Expected free-version=%v but got free-version=%v", ft.expectedFree, got)
    		}
    		if ft.afterFn != nil {
    			_, err = ft.afterFn(fi)
    			if err != nil {
    				t.Fatalf("ft.afterFn failed with err %v", err)
    			}
    		}
    	}
    
    	// Simulate scanner removing free-version
    	freefi := newtierfi
    	for _, fvID := range fvIDs {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 02 05:11:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. schema/callbacks_test.go

    			t.Errorf("%v should be true", str)
    		}
    	}
    
    	for _, str := range []string{"BeforeCreate", "BeforeUpdate", "AfterUpdate", "AfterSave", "BeforeDelete", "AfterDelete", "AfterFind"} {
    		if reflect.Indirect(reflect.ValueOf(user)).FieldByName(str).Interface().(bool) {
    			t.Errorf("%v should be false", str)
    		}
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 939 bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/tests/device_compiler_test_helper.cc

          entry.mutable_hlo_module()->set_name(
              absl::StrCat(entry.hlo_module().name(), "_altered"));
          TF_RETURN_IF_ERROR(WriteBinaryProto(env, file_path, entry));
          altered = true;
        }
      }
    
      if (!altered) {
        return errors::NotFound(
            "Did not find any persistent XLA compilation cache entries to alter.");
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. callbacks/interfaces.go

    }
    
    type BeforeDeleteInterface interface {
    	BeforeDelete(*gorm.DB) error
    }
    
    type AfterDeleteInterface interface {
    	AfterDelete(*gorm.DB) error
    }
    
    type AfterFindInterface interface {
    	AfterFind(*gorm.DB) error
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Aug 27 07:03:57 UTC 2020
    - 667 bytes
    - Viewed (0)
  5. src/go/build/read_test.go

    	for i, tt := range tests {
    		beforeP, afterP, _ := strings.Cut(tt.in, "ℙ")
    		in := beforeP + afterP
    		testOut := beforeP
    
    		if beforeD, afterD, ok := strings.Cut(beforeP, "𝔻"); ok {
    			in = beforeD + afterD + afterP
    			testOut = afterD
    		}
    
    		r := strings.NewReader(in)
    		buf, err := read(r)
    		if err != nil {
    			if tt.err == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/tests/device_compiler_serialize_options_test.cc

      TF_ASSERT_OK(AlterPersistentCacheEntryHloModuleNames(
          tensorflow::testing::TmpDir(), "my_test_prefix"));
    
      // Run again and these should all hit in the persistent cache despite having
      // altered the persistent cache entries' HLO modules (disabled strict
      // signature checks).
      listener()->ClearListenerHistory();
      for (int b = 1; b < 4; ++b) {
        TF_ASSERT_OK(ExecuteWithBatch(graph, b));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/TransportProvider.java

     * probably roll its own.
     * <p>
     * This implementation is backed by Maven Resolver API, supported protocols and transport selection depends on it. If
     * resolver preference regarding transport is altered, it will affect this service as well.
     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface TransportProvider extends Service {
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top