Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 528 for logic (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

        }
    
        //===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
    
        private static OptionalEntity<CharMappingItem> getEntity(final CreateForm form) {
            switch (form.crudMode) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // meaning that the death test child process will re-execute the test binary
    // from the start, running only a single death test, or "fast",
    // meaning that the child process will execute the test logic immediately
    // after forking.
    GTEST_DECLARE_string_(death_test_style);
    
    #if GTEST_HAS_DEATH_TEST
    
    namespace internal {
    
    // Returns a Boolean value indicating whether the caller is currently
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

        GTEST_DISALLOW_COPY_AND_ASSIGN_(ReturnSentinel);
      } GTEST_ATTRIBUTE_UNUSED_;
    
      // An enumeration of possible roles that may be taken when a death
      // test is encountered.  EXECUTE means that the death test logic should
      // be executed immediately.  OVERSEE means that the program should prepare
      // the appropriate environment for a child process to execute the death
      // test, then wait for it to complete.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. pilot/pkg/xds/xds_test.go

    	found := false
    	for _, f := range xdstest.ExtractListener("virtualOutbound", listeners).FilterChains {
    		// We want to check the match all filter chain, as this is testing the fallback logic
    		if f.FilterChainMatch != nil {
    			continue
    		}
    		tcp := xdstest.ExtractTCPProxy(t, f)
    		if tcp.GetCluster() != expectedEgressCluster {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

          }
        ```
      }];
    
      let options = [
        Option<"legacy_graph_export_", "legacy-graph-export", "bool",
               /*default=*/"true",
               "Determines whether or not this pass should execute logic that is "
               "reserved for the legacy graph export pipeline to maintain expected "
               "invariants. In the case of this pass, that means manually propagating "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/plist.go

    			if s.ABI() != ABI0 {
    				continue
    			}
    			// runtime.addmoduledata is a host ABI function, so it doesn't
    			// need FUNCDATA anyway. Moreover, cmd/link has special logic
    			// for linking it in eccentric build modes, which breaks if it
    			// has FUNCDATA references (e.g., cmd/cgo/internal/testplugin).
    			//
    			// TODO(cherryyz): Fix cmd/link's handling of plugins (see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/configcontroller.go

    		// Supporting only Ingress/v1beta1 means we lose support of Kubernetes 1.22
    		// Since supporting both in a monolith controller is painful due to lack of usable conversion logic between
    		// the two versions.
    		// As a compromise, we instead just fork the controller. Once 1.18 support is no longer needed, we can drop the old controller
    		s.ConfigStores = append(s.ConfigStores,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    - `include("app")` defines that the build consists of one subproject called `app` that contains its own source code and build logic.
    
    More subprojects can be added by additional `include()` statements.
    
    Our build contains one subproject called `app` representing the Java application we are building.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

      if (!skip_checks) {
        std::vector<std::string> optional_accepted_dialects;
        if (allow_tf) {
          // For the normal case, this should be always FALSE.
          // This `allow_tf` logic should be removed after the backend supports tf.
          optional_accepted_dialects.push_back("tf");
        }
        pm.addPass(
            mlir::odml::createCheckAcceptedOpsPass(optional_accepted_dialects));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

    void MultiDeviceProcessInlinedCallBlocks(
        Operation *call, iterator_range<Region::iterator> inlinedBlocks) {
      using DeviceNameUtils = tensorflow::DeviceNameUtils;
    
      // Duplicate of the logic in MultiDeviceFunctionBodyPlacer::BodyNodeDevice
      // LINT.IfChange
      auto device_id = StringAttr::get(call->getContext(), "device");
      auto caller_device = call->getAttrOfType<StringAttr>(device_id);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top