Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for EntryPoints (0.16 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/transforms/Minify.kt

                        jarOutputStream.addJarEntry(JarFile.MANIFEST_NAME, manifestFile)
                    }
                    val visited = linkedSetOf<ClassDetails>()
                    for (classDetails in classGraph.entryPoints) {
                        visitTree(classDetails, classesDir, jarOutputStream, visited)
                    }
                }
            } catch (exception: Exception) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. pkg/scheduler/scheduler_test.go

    	tests := []struct {
    		name string
    		// the plugin registration ordering must not matter, being map traversal random
    		entrypoints map[string]frameworkruntime.PluginFactory
    		wantErr     string
    	}{
    		{
    			name: "register indexer, no conflicts",
    			entrypoints: map[string]frameworkruntime.PluginFactory{
    				"AddIndexer": func(ctx context.Context, obj runtime.Object, handle framework.Handle) (framework.Plugin, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // There are some entry points that start with HLO->MHLO like
      // jax_to_tfl_flatbuffer.cc which can likely be updated to emit StableHLO
      // to be consistent with other entrypoints.
      pass_manager.addPass(mlir::mhlo::createHloLegalizeToStablehloPass());
    
      // Decompose CHLO into StableHLO ops
      // TODO(b/331843141): There are some CHLO's like TopK which we could instead
      // lower to TFL ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// local endpoints).
    	ServiceInternalTrafficPolicyLocal ServiceInternalTrafficPolicy = "Local"
    )
    
    // ServiceExternalTrafficPolicy describes the endpoint-selection policy for
    // traffic to external service entrypoints (NodePorts, ExternalIPs, and
    // LoadBalancer IPs).
    type ServiceExternalTrafficPolicy string
    
    const (
    	// ServiceExternalTrafficPolicyCluster routes traffic to all endpoints.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. RELEASE.md

        accepts a `return_attention_scores` argument. When set to True, the layer
        returns the attention scores as an additional output argument.
    *   Adds `tf.metrics.log_cosh` and `tf.metrics.logcosh` API entrypoints with the
        same implementation as their `tf.losses` equivalent.
    *   For Keras model, the individual call of `Model.evaluate` uses no cached data
        for evaluation, while `Model.fit` uses cached data when `validation_data`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top