Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,411 for hiding (0.11 sec)

  1. src/net/textproto/writer.go

    	w.W.Write(crnl)
    	return w.W.Flush()
    }
    
    // DotWriter returns a writer that can be used to write a dot-encoding to w.
    // It takes care of inserting leading dots when necessary,
    // translating line-ending \n into \r\n, and adding the final .\r\n line
    // when the DotWriter is closed. The caller should close the
    // DotWriter before the next call to a method on w.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/types.go

    	// Reserve is a list of plugins invoked when reserving/unreserving resources
    	// after a node is assigned to run the pod.
    	Reserve PluginSet
    
    	// Permit is a list of plugins that control binding of a Pod. These plugins can prevent or delay binding of a Pod.
    	Permit PluginSet
    
    	// PreBind is a list of plugins that should be invoked before a pod is bound.
    	PreBind PluginSet
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

      template <typename... Args>
      Renderer BlockOpen(absl::string_view text, const Args &...args) {
        return BlockOpen(absl::Substitute(text, args...));
      }
    
      // Append a line of code ending a block: unindenting and adding '}'.
      // Note: optional trailing text is often a comment, e.g. '// namespace xyz'.
      Renderer &BlockClose(const string &text = "");
      template <typename... Args>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. maven-core/src/main/mdo/extension.mdo

                <multiplicity>*</multiplicity>
              </association>
              <description><![CDATA[Restricts the classes/resources from the current artifact's CoreExtension class realm that are exposed. Values ending with ".*" expose all classes/resources which are directly contained in the given package in binary form. 
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    				logger.V(4).Info("Synchronizing unbound PersistentVolumeClaim, volume already bound, finishing the binding", "PVC", klog.KObj(claim))
    
    				// Finish the volume binding by adding claim UID.
    				if err = ctrl.bind(ctx, volume, claim); err != nil {
    					return err
    				}
    				// OBSERVATION: pvc is "Bound", pv is "Bound"
    				return nil
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

                throw new GradleException("Using a Groovy compiler configuration script requires Groovy 2.1+ but found Groovy " + version + "");
            }
            Binding binding = new Binding();
            binding.setVariable("configuration", configuration);
    
            CompilerConfiguration configuratorConfig = new CompilerConfiguration();
            ImportCustomizer customizer = new ImportCustomizer();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

    In the first instance, all of the required dependencies are present as builds in the `modules` directory. In a real-world example, these could well be clones of different Git repositories.
    
    In order to avoid hard-coding the included builds to load, the `settings.gradle` file in `multirepo-app` loads each of these builds dynamically:
    
    ====
    include::sample[dir="kotlin",files="settings.gradle.kts[tags=include_builds]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/interface.go

    	// - when a Bind plugin chooses to skip binding.
    	// - when a PreFilter plugin returns Skip so that coupled Filter plugin/PreFilterExtensions() will be skipped.
    	// - when a PreScore plugin returns Skip so that coupled Score plugin will be skipped.
    	Skip
    	// Pending means that the scheduling process is finished successfully,
    	// but the plugin wants to stop the scheduling cycle/binding cycle here.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  9. testing/performance/src/templates/project-with-source/gradle.properties

    <% if (binding.hasVariable("daemonMemory")) { %>org.gradle.jvmargs=-Xms${binding.getVariable("daemonMemory")} -Xmx${binding.getVariable("daemonMemory")}<% } %>
    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    <% if (binding.hasVariable("maxWorkers")) { %>org.gradle.workers.max=${binding.getVariable("maxWorkers")}<% } %>
    compilerMemory=<% if (binding.hasVariable("compilerMemory")) { %>${binding.getVariable("compilerMemory")}<% } else { %>1g<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 742 bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one.go

    }
    
    // assume signals to the cache that a pod is already in the cache, so that binding can be asynchronous.
    // assume modifies `assumed`.
    func (sched *Scheduler) assume(logger klog.Logger, assumed *v1.Pod, host string) error {
    	// Optimistically assume that the binding will succeed and send it to apiserver
    	// in the background.
    	// If the binding fails, scheduler will release resources allocated to assumed pod
    	// immediately.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top