Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 962 for Handles (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/process/internal/WorkerProcessIntegrationTest.groovy

            stdout.stdErr.contains("--broken")
        }
    
        def "handles output after worker messaging services are stopped"() {
            when:
            execute(worker(new OutputOnShutdownHookProcess()))
    
            then:
            noExceptionThrown()
            stdout.stdOut.contains("Goodbye, world!")
            stdout.stdErr == ""
        }
    
        def "handles output during worker shutdown"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    	"k8s.io/apimachinery/pkg/runtime/serializer/recognizer"
    	"k8s.io/apimachinery/pkg/util/framer"
    	utilyaml "k8s.io/apimachinery/pkg/util/yaml"
    	"k8s.io/klog/v2"
    )
    
    // NewSerializer creates a JSON serializer that handles encoding versioned objects into the proper JSON form. If typer
    // is not nil, the object has the group, version, and kind fields set.
    // Deprecated: use NewSerializerWithOptions instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server.go

    // filteringContainer delegates all Handle(...) calls to Container.HandleWithFilter(...),
    // so we can ensure restful.FilterFunctions are used for all handlers
    type filteringContainer struct {
    	*restful.Container
    
    	registeredHandlePaths []string
    }
    
    func (a *filteringContainer) Handle(path string, handler http.Handler) {
    	a.HandleWithFilter(path, handler)
    	a.registeredHandlePaths = append(a.registeredHandlePaths, path)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

            daemonConnection.onStdin(handler)
            received.await()
            daemonConnection.stop()
    
            then:
            1 * handler.onInput(input1)
            1 * handler.onInput(input2)
            1 * handler.onEndOfInput() >> { received.countDown() }
            0 * handler._
        }
    
        def "does not notify stdin handler once it is removed"() {
            StdinHandler handler = Mock()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api.h

    // "Context" under which operations/functions are executed. It encapsulates
    // things like the available devices, resource manager etc.
    // TFE_Context must outlive all tensor handles created using it. In other
    // words, TFE_DeleteContext() must be called after all tensor handles have
    // been deleted (with TFE_DeleteTensorHandle).
    //
    // TODO(ashankar): Merge with TF_Session?
    typedef struct TFE_Context TFE_Context;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 22.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/1472")
        def "handles '+' suffix in module name"() {
            declaredDependencies 'org:foo+', 'org:bar'
            declaredReplacements 'org:foo+->org:bar'
            expect:
            resolvedModules 'org:bar'
        }
    
        @Issue("gradle/gradle#11569")
        def "handles replacement in parallel of de-select / re-select events"() {
            declaredDependencies 'a', 'm'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  7. pkg/kubelet/prober/prober_manager.go

    	// pod created.
    	AddPod(pod *v1.Pod)
    
    	// StopLivenessAndStartup handles stopping liveness and startup probes during termination.
    	StopLivenessAndStartup(pod *v1.Pod)
    
    	// RemovePod handles cleaning up the removed pod state, including terminating probe workers and
    	// deleting cached results.
    	RemovePod(pod *v1.Pod)
    
    	// CleanupPods handles cleaning up pods which should no longer be running.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. pkg/volume/util/subpath/subpath_windows_test.go

    			continue
    		}
    		assert.Nil(t, err, "Expect no error during LockAndCheckSubPath(%s, %s)", test.volumePath, test.subPath)
    	}
    
    	// remove dir will happen after closing all file handles
    	assert.Nil(t, os.RemoveAll(testingVolumePath), "Expect no error during remove dir %s", testingVolumePath)
    }
    
    func TestLockAndCheckSubPathWithoutSymlink(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 13.8K bytes
    - Viewed (0)
  9. src/cmd/go/main.go

    	})
    
    	return ctx
    }
    
    // handleChdirFlag handles the -C flag before doing anything else.
    // The -C flag must be the first flag on the command line, to make it easy to find
    // even with commands that have custom flag parsing.
    // handleChdirFlag handles the flag by chdir'ing to the directory
    // and then removing that flag from the command line entirely.
    //
    // We have to handle the -C flag this way for two reasons:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    		defer span.AddEvent("Writing http response done")
    		transformResponseObject(ctx, scope, req, w, http.StatusOK, outputMediaType, result)
    	}
    }
    
    // GetResource returns a function that handles retrieving a single resource from a rest.Storage object.
    func GetResource(r rest.Getter, scope *RequestScope) http.HandlerFunc {
    	return getResourceHandler(scope,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top