Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 406 for onStop (0.46 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    	spdyServer := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		ctx, err := createSPDYServerStreams(w, req, Options{
    			Stdin:  true,
    			Stdout: true,
    		})
    		if err != nil {
    			t.Errorf("error on createHTTPStreams: %v", err)
    			return
    		}
    		defer ctx.conn.Close()
    		// Loopback STDIN data onto STDOUT stream.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/cache/GeneralCompileCaches.java

    import org.gradle.cache.Cache;
    import org.gradle.internal.hash.HashCode;
    
    /**
     * The build scoped compile caches.
     *
     * NOTE: This class cannot be renamed because it used to leak onto the public API
     * and some community plugins still depend on it in their byte code.
     */
    public interface GeneralCompileCaches {
        Cache<HashCode, ClassSetAnalysisData> getClassSetAnalysisCache();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/platform/base/LibraryBinaryDependencySpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    
    /**
     * A dependency onto a specific binary of a library published by a project.
     */
    @Incubating
    public interface LibraryBinaryDependencySpec extends DependencySpec {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ModuleDependencySpec.java

     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    
    import javax.annotation.Nullable;
    
    /**
     * A dependency onto a module.
     */
    @Incubating
    public interface ModuleDependencySpec extends DependencySpec {
    
        /**
         * The group of the module this dependency specification refers to.
         *
         * @return the module group name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    }
    
    //===----------------------------------------------------------------------===//
    // ConstOp
    //===----------------------------------------------------------------------===//
    
    void ConstOp::getAsmResultNames(
        function_ref<void(Value, StringRef)> setNameFn) {
      setNameFn(getResult(), "cst");
    }
    
    OpFoldResult ConstOp::fold(FoldAdaptor adaptor) {
      assert(adaptor.getOperands().empty() && "constant has no operands");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. proguard/base.pro

    -keep class sun.misc.JavaLangAccess {
      *** getStackTraceElement(...);
      *** getStackTraceDepth(...);
    }
    
    # FinalizableReferenceQueue calls this reflectively
    # Proguard is intelligent enough to spot the use of reflection onto this, so we
    # only need to keep the names, and allow it to be stripped out if
    # FinalizableReferenceQueue is unused.
    -keepnames class com.google.common.base.internal.Finalizer {
      *** startFinalizer(...);
    }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskLocalStateInternal.java

    import org.gradle.api.tasks.TaskLocalState;
    import org.gradle.internal.properties.PropertyVisitor;
    
    
    // Note: this is currently not visible on {@link org.gradle.api.internal.TaskInternal} to avoid it leaking onto AbstractTask and so on to the public API.
    public interface TaskLocalStateInternal extends TaskLocalState {
    
        void visitRegisteredProperties(PropertyVisitor visitor);
    
        FileCollection getRegisteredFiles();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:55 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskDestroyablesInternal.java

    import org.gradle.api.tasks.TaskDestroyables;
    import org.gradle.internal.properties.PropertyVisitor;
    
    
    /**
     * Note: this is currently not visible on {@link org.gradle.api.internal.TaskInternal} to avoid it leaking onto {@link org.gradle.api.internal.AbstractTask} and so on to the public API.
     */
    public interface TaskDestroyablesInternal extends TaskDestroyables {
    
        void visitRegisteredProperties(PropertyVisitor visitor);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:55 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    			runPreFilter: true,
    		},
    		{
    			name: "Pod with no Affinity will schedule onto a node",
    			pod:  &v1.Pod{},
    			labels: map[string]string{
    				"foo": "bar",
    			},
    			wantPreFilterStatus: framework.NewStatus(framework.Skip),
    			runPreFilter:        true,
    		},
    		{
    			name: "Pod with Affinity but nil NodeSelector will schedule onto a node",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					Affinity: &v1.Affinity{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ProjectDependencySpec.java

     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    
    import javax.annotation.Nullable;
    
    /**
     * A dependency onto a library published by a project.
     */
    @Incubating
    public interface ProjectDependencySpec extends DependencySpec {
    
        /**
         * Returns the project path of the project this dependency refers to.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top