Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for addKind (0.26 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    }
    
    class CanFuseConvOrDepthwiseConv<string is_depthwise> : Constraint<
      CPred<"TFL::CanFuseConvOrDepthwiseConv($0, $1, " # is_depthwise # ")">>;
    
    // If we see a binary op (add, sub) op adding a constant value to a convolution
    // op with constant bias, we can fuse the binary op into the convolution op by
    // constant folding the bias and the binary op's constant operand. The following
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

        # unfortunate amount of time to ensure that things have quiesced, then we
        # wait until we're sure the route is really gone before re-adding it again.
        Log-Output "Waiting 45 seconds for host network state to quiesce"
        Start-Sleep 45
        WaitFor_GceMetadataServerRouteToBeRemoved
        Log-Output "Re-adding the GCE metadata server route"
        Add_GceMetadataServerRoute
      }
      Verify_GceMetadataServerRouteIsPresent
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    			// Something is deeply wrong. resolveMissingImports gave us a non-empty
    			// set of modules to add to the graph, but adding those modules had no
    			// effect — either they were already in the graph, or updateRoots did not
    			// add them as requested.
    			panic(fmt.Sprintf("internal error: adding %v to module graph had no effect on root requirements (%v)", toAdd, rs.rootModules))
    		}
    		ld.requirements = rs
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

     *
     * <li>Calling {@link #addProvider(ServiceRegistrationProvider)} to register a service provider bean. A provider bean may have factory, decorator and configuration methods as described below.</li>
     *
     * <li>Adding a factory method. A factory method should be annotated with {@literal @}{@link Provides}, have a name that starts with 'create', and have a non-void return type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    		UpdateFunc: func(oldObj, newObj interface{}) {
    			jm.updateJob(logger, oldObj, newObj)
    		},
    		DeleteFunc: func(obj interface{}) {
    			jm.deleteJob(logger, obj)
    		},
    	}); err != nil {
    		return nil, fmt.Errorf("adding Job event handler: %w", err)
    	}
    	jm.jobLister = jobInformer.Lister()
    	jm.jobStoreSynced = jobInformer.Informer().HasSynced
    
    	if _, err := podInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * @return The container.
         */
        <T> NamedDomainObjectContainer<T> container(Class<T> type, Closure factoryClosure);
    
        /**
         * Allows adding DSL extensions to the project. Useful for plugin authors.
         *
         * @return Returned instance allows adding DSL extensions to the project
         */
        @Override
        ExtensionContainer getExtensions();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. src/runtime/mprof.go

    // it transfers the local buffer into the profile. As part of that step, it also
    // transfers any "additional contention" time to the profile. Any lock
    // contention that it experiences while adding samples to the profile will be
    // recorded later as "additional contention" and not include a call stack, to
    // avoid an echo.
    type lockTimer struct {
    	lock      *mutex
    	timeRate  int64
    	timeStart int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Default node tolerations to be applied to all deployments so that all pods can be
      // scheduled to nodes with matching taints. Each component can overwrite
      // these default values by adding its tolerations block in the relevant section below
      // and setting the desired values.
      // Configure this field in case that all pods of Istio control plane are expected to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. src/time/time.go

    // ago that all the times we care about will be positive, and then round
    // to zero and round down coincide. These presentation routines already
    // have to add the zone offset, so adding the translation to the
    // alternate epoch is cheap. For example, having a non-negative time t
    // means that we can write
    //
    //	sec = t % 60
    //
    // instead of
    //
    //	sec = t % 60
    //	if sec < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. configure.py

        question: optional string for how to ask for user input.
        yes_reply: optional string for reply when feature is enabled.
        no_reply: optional string for reply when feature is disabled.
        bazel_config_name: adding config to .bazelrc instead of action_env.
      """
      var = int(
          get_var(environ_cp, var_name, query_item, enabled_by_default, question,
                  yes_reply, no_reply))
    
      if not bazel_config_name:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
Back to top