Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 78 for reregistering (0.26 sec)

  1. pkg/kubelet/cm/dra/plugin/noderesources.go

    			if !ok {
    				return
    			}
    			logger.V(5).Info("ResourceSlice delete", "slice", klog.KObj(slice))
    			c.queue.Add(slice.DriverName)
    		},
    	})
    	if err != nil {
    		logger.Error(err, "Registering event handler on the ResourceSlice informer failed, disabling resource monitoring")
    		return
    	}
    
    	// Start informer and wait for our cache to be populated.
    	c.wg.Add(1)
    	go func() {
    		defer c.wg.Done()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

        return mlir::failure();
      }
      return mlir::success();
    }
    
    // Util that registers 'extra_tf_opdefs' to the TF global registry.
    // Return OK on success, failure if registering failed.
    absl::Status RegisterExtraTfOpDefs(
        absl::Span<const std::string> extra_tf_opdefs) {
      for (const auto& tf_opdefs_string : extra_tf_opdefs) {
        OpDef opdef;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. tensorflow/c/ops.h

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // Routines for registering new ops and for implementing op shape inference
    // functions.
    //
    // This API is alpha software and is subject to change.
    //
    // REGISTRATION
    // ------------
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

                        return true; // No further processing of this annotation type
                    }
                }
            """
            // META-INF/services file for registering the annotation processor
            file("processor/src/main/resources/META-INF/services/javax.annotation.processing.Processor") << "com.example.DummyProcessor"
    
            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/net/http/pattern.go

    	// For example, the path "a/{$}" is represented as a literal segment "a" followed
    	// by a literal segment "/".
    	segments []segment
    	loc      string // source location of registering call, for helpful messages
    }
    
    func (p *pattern) String() string { return p.str }
    
    func (p *pattern) lastSegment() segment {
    	return p.segments[len(p.segments)-1]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    Tasks perform some basic piece of work, such as compiling classes, or running unit tests, or zipping up a WAR file.
    
    While tasks are typically defined in plugins, you may need to register or configure tasks in build scripts.
    
    *Registering* a task adds the task to your project.
    
    You can register tasks in a project using the link:{javadocPath}/org/gradle/api/tasks/TaskContainer.html[`TaskContainer.register(java.lang.String)`] method:
    
    [source]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/converter_gen.cc

              "      return failure();\n  }\n  }\n",
              &verify_ctx, tgfmt(pred.getCondition(), &verify_ctx), desc);
        }
        os << "    if (!emit_error_on_verify_fail) {\n";
        os << "// Ignore transient errors by registering an no-op handler.\n"
              "// Applying legalization patterns will emit unwanted, transient \n"
              "// errors when the replaced TFLite ops do not meet the sanity \n"
              "// checks. \n"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

      Status Finalize(OutputList* outputs, AbstractFunction** f) override;
    
      Status RegisterFunction(AbstractFunction* func) override {
        return Unimplemented(
            "Registering graph functions has not been implemented yet.");
      }
    
      Status RemoveFunction(const string& func) override {
        return Unimplemented(
            "MlirFunctionContext::RemoveFunction has not been implemented yet.");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

     *  running suites and tests, retrieving the number of tests/suites run,
     *  and managing callbacks during the run process.<br /><br />
     *
     *  The callback mechanism works as follows.  The CUnit runtime system
     *  supports the registering and calling of functions at the start and end
     *  of each test, when all tests are complete, and when a suite
     *  initialization function returns an error.  This allows clients to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  10. pilot/pkg/xds/ads.go

    	if err := s.authorize(con, identities); err != nil {
    		return err
    	}
    
    	// Register the connection. this allows pushes to be triggered for the proxy. Note: the timing of
    	// this and initializeProxy important. While registering for pushes *after* initialization is complete seems like
    	// a better choice, it introduces a race condition; If we complete initialization of a new push
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top